/* ============================================
   GFN INTERNATIONAL TRADING - MAIN CSS
   Premium Corporate Website Styling
   ============================================ */

:root {
    --navy: #061b3a;
    --navy2: #092955;
    --gold: #c99a2e;
    --gold2: #e0b64b;
    --black: #080808;
    --white: #ffffff;
    --light: #f5f7fa;
    --gray: #6b7280;
    --gray-light: #e5e7eb;
    
    --transition: all 0.3s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================
   RESET & GENERAL STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--gray);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   SECTION PADDING & SPACING
   ============================================ */

.section-padding {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
}

.bg-light {
    background-color: var(--light);
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
}

/* ============================================
   NAVIGATION BAR
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background-color: rgba(2, 22, 53, 1);
    z-index: 1000;
    transition: var(--transition);
    backdrop-filter: blur(0px);
}

.navbar.scrolled {
    background-color: rgba(6, 27, 58, 0.90);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.navbar-logo:hover {
    color: var(--gold);
}

/* .logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
    color: var(--navy);
    font-weight: 700;
    border-radius: 8px;
    font-size: 0.9rem;
}

.logo-text {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
} */
.logo-img {
    height: 45px;   /* adjust as needed */
    width: auto;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding-bottom: 0.25rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold2) 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
    color: var(--navy);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(201, 154, 46, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 154, 46, 0.4);
}

.cta-button a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

/* Mobile Menu */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(6, 27, 58, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 0;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 1.2rem 0;
        display: block;
    }

    .nav-link::after {
        display: none;
    }

    .cta-button {
        margin-top: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(6, 27, 58, 0.7) 0%, 
        rgba(9, 41, 85, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 0 2rem;
    max-width: 900px;
    animation: slideInUp 0.8s ease;
}

.hero-text {
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-title {
    font-size: 4.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    line-height: 1;
}

.hero-subtitle {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--gold2);
    font-weight: 500;
    line-height: 1.2;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}


/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
    z-index: 0;
}

.btn:hover::before {
    left: 100%;
}

.btn span,
.btn i {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
    color: var(--navy);
    box-shadow: 0 4px 15px rgba(201, 154, 46, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 154, 46, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid var(--gold);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(201, 154, 46, 0.2);
    transform: translateY(-3px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
    color: var(--navy);
    box-shadow: 0 4px 15px rgba(201, 154, 46, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 154, 46, 0.4);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

/* ============================================
   ABOUT PREVIEW SECTION
   ============================================ */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    animation: fadeInLeft 0.6s ease;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--navy);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.body-text {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.9;
}

.about-visual {
    animation: fadeInRight 0.6s ease;
    perspective: 1000px;
}

.visual-card {
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--gray-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    transform: translateZ(50px);
}

.visual-card:hover {
    transform: translateY(-10px) translateZ(50px);
    box-shadow: 0 20px 60px rgba(201, 154, 46, 0.15);
}

.visual-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.visual-card h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.visual-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid var(--gray-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease backwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(201, 154, 46, 0.15);
    border-color: var(--gold);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.95rem;
    line-height: 1.7;
}

.service-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    align-self: flex-start;
}

.service-link:hover {
    gap: 1rem;
    color: var(--gold2);
}

/* ============================================
   COUNTERS SECTION
   ============================================ */

.counters-section {
    position: relative;
    color: var(--white);
    overflow: hidden;
}

.bg-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bg-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.counter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(6, 27, 58, 0.8) 0%, 
        rgba(9, 41, 85, 0.7) 100%);
    z-index: -1;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.counter-card {
    text-align: center;
    padding: 2rem;
    animation: fadeInUp 0.6s ease backwards;
}

.counter-card:nth-child(1) { animation-delay: 0.1s; }
.counter-card:nth-child(2) { animation-delay: 0.2s; }
.counter-card:nth-child(3) { animation-delay: 0.3s; }
.counter-card:nth-child(4) { animation-delay: 0.4s; }

.counter-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold2);
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
}

.counter-number::after {
    content: attr(data-suffix);
}

.counter-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

@media (max-width: 768px) {
    .counter-number {
        font-size: 2.5rem;
    }
    
    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   MARKETS SECTION
   ============================================ */

.markets-map {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.market-region {
    background: linear-gradient(135deg, var(--white) 0%, var(--light) 100%);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--gray-light);
    transition: var(--transition-smooth);
    animation: fadeInUp 0.6s ease backwards;
}

.market-region:nth-child(1) { animation-delay: 0.1s; }
.market-region:nth-child(2) { animation-delay: 0.2s; }
.market-region:nth-child(3) { animation-delay: 0.3s; }

.market-region:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(201, 154, 46, 0.15);
}

.region-icon {
    font-size: 3rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    color: var(--white);
    font-weight: 700;
}

.region-icon.africa {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

.region-icon.asia {
    background: linear-gradient(135deg, #4ecdc4, #44a3a3);
}

.region-icon.middle-east {
    background: var(--gold);
}

.market-region h3 {
    color: var(--navy);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.market-region p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--gray-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    animation: fadeInUp 0.6s ease backwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(201, 154, 46, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content {
    animation: fadeInUp 0.6s ease;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    position: relative;
    background: var(--navy);
    color: var(--white);
    padding: 3rem 0 1rem;
    overflow: hidden;
}

.footer-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 27, 58, 0.95);
    z-index: -1;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(201, 154, 46, 0.2);
}

.footer-section {
    animation: fadeInUp 0.6s ease backwards;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

.footer-title {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201, 154, 46, 0.2);
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-icon:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 154, 46, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ============================================
   PAGE SPECIFIC STYLES
   ============================================ */

/* About Page */
.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text {
    animation: fadeInLeft 0.6s ease;
}

.overview-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--navy);
    font-weight: 500;
}

.highlight-item i {
    color: var(--gold);
    font-size: 1.3rem;
}

.overview-visual {
    animation: fadeInRight 0.6s ease;
}

.visual-placeholder {
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--gray-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.visual-icon-large {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.visual-placeholder h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.visual-placeholder p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Mission & Vision */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mv-card {
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid var(--gray-light);
    animation: fadeInUp 0.6s ease backwards;
}

.mv-card:nth-child(1) { animation-delay: 0.1s; }
.mv-card:nth-child(2) { animation-delay: 0.2s; }

.mission-card {
    background: linear-gradient(135deg, rgba(201, 154, 46, 0.1) 0%, rgba(224, 182, 75, 0.05) 100%);
    border-color: rgba(201, 154, 46, 0.3);
}

.vision-card {
    background: linear-gradient(135deg, rgba(6, 27, 58, 0.05) 0%, rgba(9, 41, 85, 0.1) 100%);
    border-color: rgba(6, 27, 58, 0.2);
}

.mv-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.mv-icon {
    font-size: 2.5rem;
    color: var(--gold);
}

.mv-card h3 {
    color: var(--navy);
    font-size: 1.4rem;
    font-weight: 600;
}

.mv-text {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Governance Section */
.governance-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.governance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.governance-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--light) 100%);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--gray-light);
    transition: var(--transition-smooth);
    animation: fadeInUp 0.6s ease backwards;
}

.governance-card:nth-child(1) { animation-delay: 0.1s; }
.governance-card:nth-child(2) { animation-delay: 0.2s; }
.governance-card:nth-child(3) { animation-delay: 0.3s; }
.governance-card:nth-child(4) { animation-delay: 0.4s; }

.governance-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(201, 154, 46, 0.15);
}

.governance-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.governance-card h3 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.governance-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Core Values */
.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.value-item {
    position: relative;
    padding-left: 5rem;
    animation: fadeInUp 0.6s ease backwards;
}

.value-item:nth-child(1) { animation-delay: 0.1s; }
.value-item:nth-child(2) { animation-delay: 0.2s; }
.value-item:nth-child(3) { animation-delay: 0.3s; }
.value-item:nth-child(4) { animation-delay: 0.4s; }

.value-number {
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.3;
}

.value-item h3 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.value-item p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Services Full Page */
.services-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.service-full-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--light) 100%);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid var(--gray-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    animation: fadeInUp 0.6s ease backwards;
}

.service-full-card:nth-child(1) { animation-delay: 0.05s; }
.service-full-card:nth-child(2) { animation-delay: 0.1s; }
.service-full-card:nth-child(3) { animation-delay: 0.15s; }
.service-full-card:nth-child(4) { animation-delay: 0.2s; }
.service-full-card:nth-child(5) { animation-delay: 0.25s; }
.service-full-card:nth-child(6) { animation-delay: 0.3s; }

.service-full-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(201, 154, 46, 0.15);
    border-color: var(--gold);
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.4;
    min-width: 40px;
}

.service-icon-large {
    font-size: 2.5rem;
    color: var(--gold);
}

.service-full-card h3 {
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-full-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.service-features i {
    color: var(--gold);
    font-size: 1.1rem;
}

/* Service Process */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .process-timeline::before {
        display: none;
    }
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 1.5rem;
    animation: fadeInUp 0.6s ease backwards;
}

.process-step:nth-child(1) { animation-delay: 0.05s; }
.process-step:nth-child(2) { animation-delay: 0.1s; }
.process-step:nth-child(3) { animation-delay: 0.15s; }
.process-step:nth-child(4) { animation-delay: 0.2s; }
.process-step:nth-child(5) { animation-delay: 0.25s; }
.process-step:nth-child(6) { animation-delay: 0.3s; }

.process-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
    color: var(--navy);
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(201, 154, 46, 0.3);
}

.process-step h3 {
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.process-step p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Industries Section */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.industry-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--light) 100%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--gray-light);
    transition: var(--transition-smooth);
    animation: fadeInUp 0.6s ease backwards;
}

.industry-card:nth-child(1) { animation-delay: 0.05s; }
.industry-card:nth-child(2) { animation-delay: 0.1s; }
.industry-card:nth-child(3) { animation-delay: 0.15s; }
.industry-card:nth-child(4) { animation-delay: 0.2s; }
.industry-card:nth-child(5) { animation-delay: 0.25s; }
.industry-card:nth-child(6) { animation-delay: 0.3s; }

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(201, 154, 46, 0.15);
}

.industry-card i {
    font-size: 2.5rem;
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
}

.industry-card h3 {
    color: var(--navy);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Markets Page */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.region-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--gray-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    animation: fadeInUp 0.6s ease backwards;
}

.region-card:nth-child(1) { animation-delay: 0.1s; }
.region-card:nth-child(2) { animation-delay: 0.2s; }
.region-card:nth-child(3) { animation-delay: 0.3s; }

.region-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.region-header {
    padding: 2rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-height: 120px;
}

.africa-header {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
}

.asia-header {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a3a3 100%);
}

/* .me-header {
    background: linear-gradient(135deg, #f7b731 0%, #f9ca24 100%);
} */

.me-header{
    background: var(--navy2);
}

.region-header .region-icon {
    background: rgba(255, 255, 255, 0.3);
    color: inherit;
    margin: 0;
    width: 60px;
    height: 60px;
}

.region-header h3 {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 600;
}

.region-body {
    padding: 2rem;
}

.region-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.region-list li {
    color: var(--navy);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.flag {
    font-size: 1.3rem;
}

.region-description {
    padding-top: 1rem;
    border-top: 1px solid var(--gray-light);
}

.region-description p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* Trade Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.category-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--gray-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    animation: fadeInUp 0.6s ease backwards;
}

.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(201, 154, 46, 0.15);
}

.category-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--white);
    font-weight: 700;
}
.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-placeholder.consumer-goods {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
}

.image-placeholder.industrial {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a3a3 100%);
}

/* .image-placeholder.infrastructure {
    background: linear-gradient(135deg, #f7b731 0%, #f9ca24 100%);
} */

.image-placeholder.infrastructure {
    background: var(--navy2);
}

/* .image-placeholder.infrastructure {
    background: linear-gradient(135deg, #061b3a 0%, #0d3566 100%);
} */

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-overlay p {
    color: var(--white);
    font-weight: 600;
    text-align: center;
}

.category-content {
    padding: 2rem;
}

.category-content h3 {
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.category-content p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.category-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-items li {
    color: var(--navy);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.category-items li::before {
    content: '•';
    color: var(--gold);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

/* Supply Corridors */
.corridors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.corridor-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--light) 100%);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid var(--gray-light);
    position: relative;
    transition: var(--transition-smooth);
    animation: fadeInUp 0.6s ease backwards;
}

.corridor-card:nth-child(1) { animation-delay: 0.1s; }
.corridor-card:nth-child(2) { animation-delay: 0.2s; }
.corridor-card:nth-child(3) { animation-delay: 0.3s; }
.corridor-card:nth-child(4) { animation-delay: 0.4s; }

.corridor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(201, 154, 46, 0.15);
}

.corridor-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
    color: var(--navy);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.corridor-card h3 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.corridor-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.corridor-icon {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.3;
}

/* Market Advantages */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid var(--gray-light);
    position: relative;
    transition: var(--transition-smooth);
    animation: fadeInUp 0.6s ease backwards;
}

.advantage-card:nth-child(1) { animation-delay: 0.05s; }
.advantage-card:nth-child(2) { animation-delay: 0.1s; }
.advantage-card:nth-child(3) { animation-delay: 0.15s; }
.advantage-card:nth-child(4) { animation-delay: 0.2s; }
.advantage-card:nth-child(5) { animation-delay: 0.25s; }
.advantage-card:nth-child(6) { animation-delay: 0.3s; }

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(201, 154, 46, 0.15);
}

.advantage-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
    opacity: 0.4;
}

.advantage-card h3 {
    color: var(--navy);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.advantage-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Contact Page */
.contact-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
    color: var(--white);
    text-align: center;
    margin-top: 70px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: slideInUp 0.6s ease;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
}

.contact-info {
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--gray-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    animation: fadeInUp 0.6s ease backwards;
}

.contact-card:nth-child(1) { animation-delay: 0.1s; }
.contact-card:nth-child(2) { animation-delay: 0.2s; }
.contact-card:nth-child(3) { animation-delay: 0.3s; }
.contact-card:nth-child(4) { animation-delay: 0.4s; }

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(201, 154, 46, 0.15);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-details {
    text-align: center;
}

.company-name {
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.location-highlight {
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.contact-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    display: inline-block;
}

.contact-link:hover {
    color: var(--gold2);
}

.contact-hint {
    color: var(--gray);
    font-size: 0.85rem;
    margin-top: 0.75rem !important;
}

/* Contact Form */
.contact-form-section {
    background: var(--white);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.6s ease;
}

.form-header h2 {
    color: var(--navy);
    font-size: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.form-header p {
    color: var(--gray);
    font-size: 1rem;
}

.contact-form {
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1.5px solid var(--gray-light);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--navy);
    transition: var(--transition);
    background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 154, 46, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group textarea::placeholder {
    color: var(--gray);
}

.form-group input::placeholder {
    color: var(--gray);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-checkbox input {
    width: auto;
    cursor: pointer;
    accent-color: var(--gold);
}

.form-checkbox label {
    margin: 0;
    cursor: pointer;
    font-weight: 400;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    display: block;
    background-color: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.form-message.error {
    display: block;
    background-color: rgba(244, 67, 54, 0.1);
    color: #c62828;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

/* Service Inquiry */
.inquiry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.inquiry-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--gray-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    animation: fadeInUp 0.6s ease backwards;
}

.inquiry-card:nth-child(1) { animation-delay: 0.05s; }
.inquiry-card:nth-child(2) { animation-delay: 0.1s; }
.inquiry-card:nth-child(3) { animation-delay: 0.15s; }
.inquiry-card:nth-child(4) { animation-delay: 0.2s; }
.inquiry-card:nth-child(5) { animation-delay: 0.25s; }
.inquiry-card:nth-child(6) { animation-delay: 0.3s; }

.inquiry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(201, 154, 46, 0.15);
}

.inquiry-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.inquiry-card h3 {
    color: var(--navy);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.inquiry-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Map Section */
/* .contact-map {
    background: var(--light);
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
}

.map-placeholder {
    background: linear-gradient(135deg, var(--white) 0%, var(--light) 100%);
    padding: 4rem;
    border-radius: 10px;
    border: 1px solid var(--gray-light);
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.6s ease;
}

.map-placeholder i {
    font-size: 3.5rem;
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    color: var(--navy);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.map-placeholder p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
} */

/* Contact Map Section */
.contact-map {
    position: relative;
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-padding {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Map Wrapper - Two Column Layout */
.map-wrapper {
    display: flex;
    /* gap: 30px; */
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* LEFT CONTENT - Info Card */
.map-info {
    flex: 1;
    padding: 50px 40px;
    background: var(--navy);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-info i {
    font-size: 48px;
    color: #d4af37;
    margin-bottom: 20px;
}

.map-info h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.map-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* Gold Button */
.btn-gold {
    display: inline-block;
    padding: 12px 30px;
    background-color: #d4af37;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid #d4af37;
}

.btn-gold:hover {
    background-color: transparent;
    color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.map-btn {
    align-self: flex-start;
}

/* RIGHT MAP */
.map-box {
    flex: 1;
    height: 450px;
    background-color: #e9ecef;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-map {
        padding: 60px 0;
    }
    
    .map-wrapper {
        flex-direction: column;
    }
    
    .map-info {
        padding: 40px 30px;
    }
    
    .map-info h3 {
        font-size: 24px;
    }
    
    .map-box {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .map-info {
        padding: 30px 25px;
    }
    
    .map-info i {
        font-size: 36px;
    }
    
    .map-info h3 {
        font-size: 22px;
    }
    
    .map-info p {
        font-size: 14px;
    }
    
    .btn-gold {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .map-box {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .contact-map {
        padding: 40px 0;
    }
    
    .map-info {
        padding: 25px 20px;
    }
    
    .map-info h3 {
        font-size: 20px;
    }
    
    .map-box {
        height: 300px;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Optional: Add animation on scroll */
.map-info {
    animation: fadeInLeft 0.8s ease;
}

.map-box {
    animation: fadeInRight 0.8s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.reveal {
    opacity: 0;
}

.reveal.active {
    animation: fadeInUp 0.6s ease forwards;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}