/* ============================================
   LYNTRA LIMITED - MASTER STYLESHEET
   Navy & Gold Theme | Fully Responsive
   Use this file for ALL pages (Home, About, etc.)
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #FEFCF7;
    color: #0A1929;
    overflow-x: hidden;
    line-height: 1.55;
}

:root {
    --navy-deep: #0A1929;
    --navy-rich: #0F2B3D;
    --navy-card: #0C1F32;
    --navy-soft: #112B42;
    --gold-main: #D4AF37;
    --gold-bright: #E6C44D;
    --gold-dark: #B8932E;
    --cream-light: #FFF9F0;
    --gray-bg: #F5F7FA;
    --white: #FFFFFF;
    --shadow-sm: 0 10px 30px -12px rgba(0,0,0,0.08);
    --shadow-md: 0 20px 40px -12px rgba(0,0,0,0.12);
    --shadow-lg: 0 30px 50px -15px rgba(0,0,0,0.15);
}

        /* Additional page-specific overrides if needed (minimal) */
        .about-hero {
            padding-top: 140px;
        }
        .team-section {
            background: var(--gray-bg);
        }
        .portfolio-section {
            background: white;
        }
        .mv-item {
            transition: 0.2s;
        }
        .mv-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-sm);
        }

                /* Page-specific minimal adjustments */
        .contact-header {
            background: linear-gradient(135deg, #FFF9EF 0%, #FFFFFF 100%);
            padding-top: 140px;
            padding-bottom: 60px;
        }
        .contact-header h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        .breadcrumb {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 20px;
            color: var(--navy-deep);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--gold-main);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .office-hours {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(212,175,55,0.2);
        }
        .office-hours h4 {
            color: var(--gold-main);
            margin-bottom: 15px;
        }
        .office-hours p {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        @media (max-width: 950px) {
            .contact-header h1 {
                font-size: 2.5rem;
            }
        }
        /* ============================================
   CORE VALUES SECTION - PREMIUM DESIGN
   Navy & Gold Theme | Fully Polished
   ============================================ */

.core-values-section {
    background: var(--gray-bg);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.core-values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-main), var(--navy-deep), var(--gold-main));
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-badge {
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: #4a5b6e;
}

/* Core Values Grid */
.core-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 20px;
}

/* Premium Value Card */
.value-card {
    background: var(--white);
    border-radius: 32px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-main), var(--gold-bright));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-12px);
    border-color: var(--gold-main);
    box-shadow: var(--shadow-lg);
}

/* Value Icon Container */
.value-icon-wrapper {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.value-card:hover .value-icon-wrapper {
    background: linear-gradient(135deg, var(--gold-main), var(--gold-bright));
    transform: scale(1.05) rotate(5deg);
}

.value-icon-wrapper i {
    font-size: 2.3rem;
    color: var(--gold-main);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon-wrapper i {
    color: var(--navy-deep);
}

/* Value Card Typography */
.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--navy-deep);
    font-weight: 700;
}

.value-card p {
    color: #4a5b6e;
    line-height: 1.65;
    margin-bottom: 0;
}

/* Value Card Hover Accent */
.value-stats {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    justify-content: center;
    gap: 15px;
}

.value-stats span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-main);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   MANDATE SECTION - COMPLETELY REWRITTEN
   White Text on Navy Blue | Proper Bullet Alignment
   ============================================ */

.mandate-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

/* Main Mandate Card Container - Solid Navy Blue Background */
.mandate-premium-card {
    background: var(--navy-deep);
    border-radius: 48px;
    padding: 55px 50px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

/* Decorative Gold Accent Elements */
.mandate-premium-card::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mandate-premium-card::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Mandate Content Layout */
.mandate-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.mandate-text {
    flex: 1.3;
}

/* Badge inside Mandate */
.mandate-text .section-badge {
    background: var(--gold-main);
    color: var(--navy-deep);
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Mandate Heading - WHITE TEXT */
.mandate-text h2 {
    color: #FFFFFF;
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

/* Description Text - LIGHT GRAY/WHITE */
.mandate-text > p {
    color: #D1D9E8;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Mandate List Items - PROPER BULLET ALIGNMENT with WHITE TEXT */
.mandate-list-premium {
    list-style: none;
    margin-top: 10px;
    padding: 0;
}

.mandate-list-premium li {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 14px 22px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    transition: all 0.35s ease;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.mandate-list-premium li:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateX(8px);
}

/* Gold Bullet Icons */
.mandate-list-premium li i {
    font-size: 1.3rem;
    color: var(--gold-main);
    margin-top: 2px;
    min-width: 28px;
    flex-shrink: 0;
}

/* List Item Text - WHITE */
.mandate-list-premium li span {
    color: #FFFFFF;
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Mandate Visual Side */
.mandate-visual {
    flex: 0.9;
    text-align: center;
}

/* Animated Icon Ring */
.mandate-icon-ring {
    width: 180px;
    height: 180px;
    background: rgba(212, 175, 55, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 2px dashed rgba(212, 175, 55, 0.5);
    animation: rotateSlow 25s linear infinite;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.mandate-icon-ring i {
    font-size: 4rem;
    color: var(--gold-main);
    animation: counterRotate 25s linear infinite;
}

@keyframes counterRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

/* Mandate Stats - White Text */
.mandate-stats {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.mandate-stat-item {
    text-align: center;
    background: rgba(212, 175, 55, 0.12);
    padding: 12px 20px;
    border-radius: 60px;
    min-width: 100px;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.mandate-stat-item:hover {
    background: rgba(212, 175, 55, 0.25);
    transform: translateY(-3px);
}

.mandate-stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold-main);
    display: block;
    line-height: 1.2;
}

.mandate-stat-label {
    font-size: 0.75rem;
    color: #D1D9E8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Mandate Pillars / Tags */
.mandate-pillars {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 35px;
}

.pillar-tag {
    background: rgba(212, 175, 55, 0.15);
    padding: 10px 24px;
    border-radius: 50px;
    color: var(--gold-main);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.pillar-tag:hover {
    background: var(--gold-main);
    color: var(--navy-deep);
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(212, 175, 55, 0.3);
}

/* Responsive Adjustments for Both Sections */
@media (max-width: 950px) {
    .core-values-section {
        padding: 70px 0;
    }
    
    .core-values-grid {
        gap: 25px;
    }
    
    .value-card {
        padding: 32px 22px;
    }
    
    .mandate-section {
        padding: 70px 0;
    }
    
    .mandate-premium-card {
        padding: 40px 28px;
    }
    
    .mandate-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .mandate-text h2 {
        font-size: 2rem;
        color: #FFFFFF;
    }
    
    .mandate-icon-ring {
        width: 150px;
        height: 150px;
    }
    
    .mandate-icon-ring i {
        font-size: 3.2rem;
    }
    
    .mandate-stats {
        gap: 20px;
    }
    
    .mandate-stat-item {
        padding: 8px 16px;
        min-width: 80px;
    }
    
    .mandate-stat-number {
        font-size: 1.3rem;
    }
    
    .mandate-list-premium li span {
        color: #FFFFFF;
    }
}

@media (max-width: 600px) {
    .core-values-section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .value-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .value-icon-wrapper i {
        font-size: 1.8rem;
    }
    
    .value-card h3 {
        font-size: 1.3rem;
    }
    
    .mandate-premium-card {
        padding: 30px 20px;
    }
    
    .mandate-text h2 {
        font-size: 1.8rem;
        color: #FFFFFF;
    }
    
    .mandate-list-premium li {
        padding: 12px 16px;
        gap: 12px;
    }
    
    .mandate-list-premium li i {
        font-size: 1.1rem;
        min-width: 24px;
    }
    
    .mandate-list-premium li span {
        font-size: 0.85rem;
        color: #FFFFFF;
    }
    
    .mandate-icon-ring {
        width: 120px;
        height: 120px;
    }
    
    .mandate-icon-ring i {
        font-size: 2.5rem;
    }
    
    .mandate-stat-item {
        padding: 6px 12px;
    }
    
    .mandate-stat-number {
        font-size: 1.1rem;
    }
    
    .mandate-stat-label {
        font-size: 0.65rem;
    }
    
    .pillar-tag {
        padding: 6px 16px;
        font-size: 0.75rem;
    }
}

/* Animation Classes for AOS Integration */
.value-card,
.mandate-premium-card,
.mandate-stat-item,
.pillar-tag {
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

[data-aos="fade-up"] {
    transition-timing-function: cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* Page-specific styles for Services */
        .services-hero {
            background: linear-gradient(135deg, #FFF9EF 0%, #FFFFFF 100%);
            padding-top: 140px;
            padding-bottom: 60px;
            text-align: center;
        }
        .services-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--navy-deep);
        }
        .breadcrumb {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 20px;
            color: var(--navy-deep);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--gold-main);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        /* Service Detail Cards (Expanded) */
        .service-detail-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }
        .service-detail-card {
            background: var(--white);
            border-radius: 32px;
            padding: 40px 30px;
            transition: all 0.4s ease;
            border: 1px solid rgba(212, 175, 55, 0.15);
            box-shadow: var(--shadow-sm);
            height: 100%;
        }
        .service-detail-card:hover {
            transform: translateY(-10px);
            border-color: var(--gold-main);
            box-shadow: var(--shadow-md);
        }
        .service-detail-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.05));
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        .service-detail-icon i {
            font-size: 2.5rem;
            color: var(--gold-main);
        }
        .service-detail-card h3 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: var(--navy-deep);
        }
        .service-features {
            list-style: none;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(212, 175, 55, 0.15);
        }
        .service-features li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .service-features li i {
            color: var(--gold-main);
            font-size: 0.9rem;
        }
        .service-features li span {
            color: #4a5b6e;
            font-size: 0.95rem;
        }
        
        /* Process Timeline */
        .process-section {
            background: var(--gray-bg);
        }
        .timeline {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
        }
        .timeline-step {
            flex: 1;
            min-width: 200px;
            text-align: center;
            position: relative;
            background: var(--white);
            border-radius: 28px;
            padding: 30px 20px;
            transition: all 0.3s ease;
            border: 1px solid rgba(212, 175, 55, 0.15);
        }
        .timeline-step:hover {
            transform: translateY(-5px);
            border-color: var(--gold-main);
        }
        .step-number {
            width: 50px;
            height: 50px;
            background: var(--gold-main);
            color: var(--navy-deep);
            font-size: 1.5rem;
            font-weight: 800;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        .timeline-step h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--navy-deep);
        }
        .timeline-step p {
            color: #4a5b6e;
            font-size: 0.9rem;
        }
        
        /* CTA Section */
        .services-cta {
            background: linear-gradient(135deg, var(--navy-deep), #0A1C32);
            border-radius: 48px;
            padding: 60px 50px;
            text-align: center;
            color: white;
        }
        
        @media (max-width: 950px) {
            .services-hero h1 {
                font-size: 2.5rem;
            }
            .service-detail-grid {
                grid-template-columns: 1fr;
            }
            .timeline {
                flex-direction: column;
                align-items: center;
            }
            .timeline-step {
                width: 100%;
                max-width: 350px;
            }
            .services-cta {
                padding: 40px 25px;
            }
        }

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 100px 0;
}

h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--navy-deep) 0%, #1E3A5F 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Premium Badges */
.section-badge {
    background: linear-gradient(135deg, var(--gold-main) 0%, var(--gold-bright) 100%);
    color: var(--navy-deep);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
}

.gold-text {
    color: var(--gold-main);
}

/* Navbar Premium */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: var(--navy-deep);
    transition: 0.2s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--gold-main);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 40px;
    left: 0;
    background: white;
    min-width: 220px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
    z-index: 100;
    border: 1px solid rgba(212,175,55,0.15);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 30px;
}

.dropdown-menu a {
    display: block;
    padding: 10px 24px;
    color: var(--navy-deep);
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: var(--cream-light);
    color: var(--gold-main);
}

.contact-btn {
    background: var(--gold-main);
    padding: 10px 28px !important;
    border-radius: 40px;
    color: var(--navy-deep) !important;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.25s;
}

.contact-btn:hover {
    background: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(212,175,55,0.3);
}

.menu-icon {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--navy-deep);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #FFF9EF 0%, #FFFFFF 100%);
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1.2;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 28px;
    color: var(--navy-deep);
}

.hero-highlight {
    color: var(--gold-main);
    border-bottom: 3px solid var(--gold-main);
}

.hero-desc {
    font-size: 1.1rem;
    color: #4A5B6E;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-image-card {
    flex: 0.9;
    background: var(--navy-deep);
    border-radius: 40px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

/* Buttons */
.btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--gold-main);
    color: var(--navy-deep);
    box-shadow: 0 8px 20px rgba(212,175,55,0.3);
}

.btn-primary:hover {
    background: var(--gold-bright);
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid var(--gold-main);
    color: var(--navy-deep);
    background: transparent;
}

.btn-outline:hover {
    background: var(--gold-main);
    transform: translateY(-3px);
}

/* About Minimal */
.about-minimal {
    background: white;
}

.about-preview {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
}

.about-text p {
    line-height: 1.75;
    margin-bottom: 28px;
}

/* About Hero (for About page) */
.about-hero {
    background: linear-gradient(135deg, #FFF9EF 0%, #FFFFFF 100%);
    padding-top: 140px;
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.about-content {
    flex: 1.2;
}

.about-stats {
    flex: 0.8;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.stat-card {
    background: var(--navy-card);
    border-radius: 28px;
    padding: 30px 20px;
    text-align: center;
    color: white;
    border: 1px solid rgba(212,175,55,0.3);
    transition: 0.3s;
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--gold-main);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold-main);
}

.mission-vision-mini {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.mv-item {
    flex: 1;
    background: rgba(10,25,41,0.03);
    border-radius: 24px;
    padding: 24px;
    border-left: 4px solid var(--gold-main);
}

/* Team Cards - Navy Base */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.team-card {
    background: var(--navy-card);
    border-radius: 28px;
    padding: 32px 24px;
    text-align: center;
    width: 280px;
    transition: all 0.35s ease;
    border: 1px solid rgba(212,175,55,0.25);
    box-shadow: var(--shadow-sm);
}

.team-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-main);
}

.team-card h4 {
    color: var(--gold-main);
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.team-card p {
    color: #e2e8f0;
    line-height: 1.6;
}

.team-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid var(--gold-main);
    display: block;
    background: #2d3e5a;
}

/* Services Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 28px;
    padding: 36px 28px;
    transition: 0.3s;
    border: 1px solid rgba(212,175,55,0.2);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-main);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--gold-main);
    margin-bottom: 20px;
}

.service-card p {
    line-height: 1.65;
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.portfolio-item {
    border-radius: 24px;
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
}

.portfolio-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.portfolio-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.portfolio-info {
    padding: 20px;
}

.portfolio-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.portfolio-info p {
    line-height: 1.6;
    margin-bottom: 12px;
}

/* Portfolio Filters */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(212,175,55,0.4);
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
    color: var(--navy-deep);
    font-family: 'Inter', sans-serif;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gold-main);
    border-color: var(--gold-main);
    color: var(--navy-deep);
}

/* Newsletter with Navy Style */
.newsletter-premium {
    background: linear-gradient(135deg, var(--navy-rich), #071a2b);
    border-radius: 48px;
    padding: 55px 45px;
    text-align: center;
    color: white;
    border: 1px solid rgba(212,175,55,0.3);
}

.newsletter-premium p {
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.newsletter-form input {
    padding: 16px 28px;
    border-radius: 60px;
    border: none;
    width: 320px;
    font-size: 1rem;
}

/* Partners Section */
.partners-premium {
    background: var(--gray-bg);
    padding: 60px 0;
    border-top: 1px solid rgba(212,175,55,0.15);
    border-bottom: 1px solid rgba(212,175,55,0.15);
}

.partners-title {
    text-align: center;
    margin-bottom: 40px;
}

.partners-title h3 {
    color: var(--navy-deep);
    font-size: 1.8rem;
    display: inline-block;
    border-bottom: 2px solid var(--gold-main);
    padding-bottom: 10px;
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-track {
    display: inline-flex;
    gap: 70px;
    animation: scroll 25s linear infinite;
    align-items: center;
}

.marquee-track img {
    height: 55px;
    width: auto;
    filter: grayscale(20%);
    transition: 0.2s;
    opacity: 0.8;
}

.marquee-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Contact Section - Navy & Gold Blend */
.contact-premium {
    background: linear-gradient(145deg, #F8F6F0 0%, #FFFFFF 100%);
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info-card {
    flex: 1;
    background: var(--navy-deep);
    border-radius: 48px;
    padding: 48px 40px;
    color: white;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212,175,55,0.4);
}

.contact-info-card h3 {
    color: var(--gold-main);
    font-size: 1.8rem;
    margin-bottom: 32px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 32px;
}

.contact-detail-item i {
    width: 48px;
    height: 48px;
    background: rgba(212,175,55,0.12);
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold-main);
    transition: 0.2s;
}

.contact-detail-item:hover i {
    background: var(--gold-main);
    color: var(--navy-deep);
}

.contact-detail-item p {
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.5;
}

.social-icons-contact {
    display: flex;
    gap: 18px;
    margin-top: 40px;
}

.social-icons-contact a {
    width: 44px;
    height: 44px;
    background: rgba(212,175,55,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-main);
    font-size: 1.2rem;
    transition: 0.25s;
}

.social-icons-contact a:hover {
    background: var(--gold-main);
    color: var(--navy-deep);
    transform: translateY(-4px);
}

.contact-form-card {
    flex: 1.2;
    background: white;
    border-radius: 48px;
    padding: 48px 42px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212,175,55,0.2);
}

.contact-form-card h3 {
    color: var(--navy-deep);
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 24px;
    border-radius: 60px;
    border: 1px solid #e2e8f0;
    font-family: 'Inter', sans-serif;
    transition: 0.2s;
    background: #FEFCF7;
}

.form-group textarea {
    border-radius: 32px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-main);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.2);
}

.map-wrapper {
    margin-top: 40px;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.3);
}

/* Footer Premium */
.footer-premium {
    background: linear-gradient(145deg, #07152A 0%, #0A1C32 100%);
    padding: 70px 0 30px;
    color: #C4D0E3;
    border-top: 1px solid rgba(212,175,55,0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 50px;
    margin-bottom: 55px;
}

.footer-col h4 {
    color: var(--gold-main);
    margin-bottom: 24px;
    font-size: 1.2rem;
}

.footer-col p {
    line-height: 1.7;
}

.footer-col a {
    display: block;
    color: #C4D0E3;
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.2s;
}

.footer-col a:hover {
    color: var(--gold-main);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 18px;
    margin-top: 20px;
}

.footer-social a {
    background: rgba(212,175,55,0.12);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s;
    color: #C4D0E3;
}

.footer-social a:hover {
    background: var(--gold-main);
    color: var(--navy-deep);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 950px) {
    .container {
        padding: 0 24px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        position: fixed;
        top: 74px;
        left: -100%;
        background: white;
        width: 80%;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
        transition: 0.3s;
        box-shadow: 5px 0 30px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .menu-icon {
        display: block;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        padding-left: 20px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .hero-grid {
        flex-direction: column;
    }

    section {
        padding: 70px 0;
    }

    h2 {
        font-size: 2rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 32px 24px;
    }

    .partners-title h3 {
        font-size: 1.4rem;
    }

    .about-grid {
        flex-direction: column;
    }

    .about-stats {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .about-stats {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .portfolio-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .newsletter-form input {
        width: 100%;
    }
}