/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #041b5d;
    background-color: #eaeaea;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(203, 160, 4, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    color: inherit;
}

.logo:visited {
    color: inherit;
}

.logo:hover {
    color: inherit;
    text-decoration: none;
}

.logo:active {
    color: inherit;
}

.nav-logo {
    height: 40px;
    width: auto;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #CBA04;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.logo:hover .brand-name {
    color: #CBA04;
}

.logo:visited .brand-name {
    color: #CBA04;
}

.logo:active .brand-name {
    color: #CBA04;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #041b5d;
    transition: color 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.nav-links a:hover {
    color: #CBA04;
}

.whatsapp-nav-btn {
    background: #1E3A8A;
    color: #FFFFFF;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(30, 58, 138, 0.2);
    border: 2px solid transparent;
}

.whatsapp-nav-btn:hover {
    background: #1E40AF;
    transform: translateY(-1px);
    color: #FFFFFF;
    box-shadow: 0 4px 8px rgba(30, 58, 138, 0.3);
    border-color: #3B82F6;
}

.whatsapp-nav-icon {
    width: 16px;
    height: 16px;
    fill: #FFFFFF;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.1));
}

/* Main Content */
.main-content {
    margin-top: 0; /* Remove margin since hero is 100vh */
}

/* Hero Section */
.hero-section {
    background: #eaeaea;
    color: #041b5d;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
}

.hero-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #041b5d;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #041b5d;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.cta-button {
    display: inline-block;
    background: #1E3A8A;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.whatsapp-btn {
    background: #1E3A8A;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.instagram-btn {
    background: #1E3A8A;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.instagram-icon {
    width: 20px;
    height: 20px;
    fill: #E5E7EB;
}

.instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.whatsapp-btn.large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Sections */
.about-section, .features-section, .cta-section {
    padding: 80px 0;
}

.about-section {
    background: #eaeaea;
}

.mission-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    text-align: center;
    padding: 1.5rem;
}

.highlight-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #CBA04;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(203, 160, 4, 0.1);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #CBA04;
    box-shadow: 0 10px 30px rgba(203, 160, 4, 0.2);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #041b5d;
    font-size: 1.2rem;
}

.cta-section {
    background: linear-gradient(135deg, #CBA04 0%, #6B7280 100%);
    text-align: center;
}

.cta-section h2 {
    color: #041b5d;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #041b5d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #041b5d;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #FFFFFF;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        gap: 1rem;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .navbar .container {
        position: relative;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-logo {
        max-width: 150px;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .brand-name {
        font-size: 1.1rem;
    }
    
    .whatsapp-nav-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    
    .whatsapp-nav-icon {
        width: 14px;
        height: 14px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-highlights {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .whatsapp-btn.large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-logo {
        max-width: 120px;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .brand-name {
        font-size: 1rem;
    }
    
    .nav-logo {
        height: 35px;
    }
    
    .whatsapp-nav-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .whatsapp-btn.large {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
