/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0B497E;
    --primary-dark: #083658;
    --secondary: #2c3e50;
    --accent: #E9983C;
    --slate: #869AA3;
    --text-dark: #2c3e50;
    --text-light: #5a6c7d;
    --text-lighter: #7f8c9a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-dark: #1a252f;
    --border: #e1e8ed;
    --shadow: 0 2px 8px rgba(11, 73, 126, 0.08);
    --shadow-lg: 0 8px 24px rgba(11, 73, 126, 0.12);
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    padding: 1.25rem 0;
    background: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--accent);
    box-shadow: 0 2px 4px rgba(11, 73, 126, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.logo span {
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Buttons */
.cta-button {
    padding: 0.75rem 1.75rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 2px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #d98830;
    transform: translateY(-1px);
}

.cta-button-large {
    padding: 1.125rem 2.5rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 2px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button-large:hover {
    background: #d98830;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding-bottom: 4rem;
    border-bottom: 4px solid var(--accent);
}

.hero-content {
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.gradient-text {
    color: var(--accent);
    background: linear-gradient(135deg, var(--accent) 0%, #f4b563 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: Georgia, serif;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* About Section */
.about {
    padding: 6rem 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 0;
    border-left: 4px solid var(--accent);
    box-shadow: var(--shadow);
    transition: border-color 0.3s, box-shadow 0.3s;
    text-align: center;
}

.about-card:hover {
    border-left-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Features Section */
.features {
    background: var(--bg-light);
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 0;
    border-top: 3px solid var(--slate);
    text-align: center;
    transition: border-color 0.3s;
}

.feature-item:hover {
    border-top-color: var(--accent);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Social Section */
.social-section {
    padding: 6rem 2rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.social-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 0;
    border: 2px solid var(--border);
    box-shadow: none;
    text-decoration: none;
    color: var(--text-dark);
    transition: border-color 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.social-card::before {
    display: none;
}

.social-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.social-card svg {
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.social-card:hover svg {
    transform: scale(1.1);
}

.social-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.social-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.social-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--accent);
    color: white;
    border-radius: 0;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Social Card Colors */
.social-card.facebook svg { color: #1877f2; }
.social-card.twitter svg { color: #000000; }
.social-card.linkedin svg { color: #0a66c2; }
.social-card.instagram svg { color: #e4405f; }

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 4rem 3rem;
    border-radius: 0;
    border-left: 6px solid var(--accent);
    text-align: center;
    color: white;
    margin-top: 3rem;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: #cbd5e0;
    padding: 4rem 0 2rem;
    border-top: 4px solid var(--accent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 1rem;
}

.tagline-footer {
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.footer-brand p {
    color: #a0aec0;
    line-height: 1.7;
    max-width: 400px;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    text-align: center;
    color: #718096;
}

.footer-bottom p {
    margin: 0.25rem 0;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-grid,
    .features-grid,
    .social-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        gap: 2rem;
    }

    .cta-section {
        padding: 3rem 2rem;
    }

    .cta-section h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-content {
        padding: 3rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .about,
    .social-section {
        padding: 4rem 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-card,
.feature-item,
.social-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
