*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --navy: #0b1d3a;
    --navy-light: #132d5e;
    --navy-dark: #06111f;
    --blue: #1e6dd4;
    --blue-light: #3a8ef5;
    --gold: #c9a84c;
    --gold-light: #e0c36a;
    --white: #ffffff;
    --off-white: #f4f6f9;
    --gray: #8a95a5;
    --gray-light: #c5cdd8;
    --text: #1a1a2e;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; }

/* ===== LOADER ===== */
.loader { position: fixed; inset: 0; background: var(--navy-dark); display: flex; align-items: center; justify-content: center; z-index: 9999; transition: opacity 0.5s; }
.loader.hidden { opacity: 0; pointer-events: none; }
.loader-spinner { width: 40px; height: 40px; border: 3px solid rgba(201,168,76,0.2); border-top-color: var(--gold); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1rem 2rem; transition: all 0.3s; background: transparent; }
.navbar.scrolled { background: rgba(11,29,58,0.95); backdrop-filter: blur(20px); padding: 0.7rem 2rem; box-shadow: 0 4px 30px rgba(0,0,0,0.2); }
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; flex-direction: column; gap: 0; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--white); letter-spacing: 0.5px; }
.logo-text span { color: var(--gold); }
.logo-tagline { color: var(--gold); font-size: 0.55rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; margin-top: -2px; }
.nav-links { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.5px; transition: color 0.3s; text-transform: uppercase; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; padding: 0.6rem 1.5rem; border-radius: 4px; font-weight: 600 !important; transition: all 0.3s !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; z-index: 1001; }
.hamburger span { width: 25px; height: 2px; background: var(--white); transition: all 0.3s; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(6,17,31,0.92) 0%, rgba(11,29,58,0.85) 50%, rgba(19,45,94,0.78) 100%); }
.hero-content { position: relative; max-width: 1200px; margin: 0 auto; padding: 8rem 2rem 6rem; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: center; }
.hero-text { animation: fadeInUp 1s ease; }
.hero-badge { display: inline-block; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3); color: var(--gold); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 1.5rem; }
.hero h1 .highlight { color: var(--gold); }
.hero-desc { color: rgba(255,255,255,0.75); font-size: 1.1rem; line-height: 1.8; margin-bottom: 2.5rem; max-width: 550px; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary { background: var(--gold); color: var(--navy); padding: 0.9rem 2rem; border: none; border-radius: 4px; font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: all 0.3s; display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.3); }
.btn-outline { background: transparent; color: var(--white); padding: 0.9rem 2rem; border: 2px solid rgba(255,255,255,0.3); border-radius: 4px; font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: all 0.3s; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.hero-stats { display: flex; gap: 3rem; margin-top: 3rem; }
.stat-number { font-size: 2rem; font-weight: 800; color: var(--gold); }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }
.hero-emails { display: flex; flex-direction: column; gap: 0.8rem; animation: fadeInUp 1s ease 0.5s both; }
.hero-email-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(10px); padding: 1.2rem 1.5rem; border-radius: 12px; transition: all 0.3s; }
.hero-email-card:hover { background: rgba(255,255,255,0.12); border-color: var(--gold); }
.hero-email-card .label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 0.3rem; }
.hero-email-card a { color: var(--white); font-size: 1.1rem; font-weight: 500; }
.hero-wave { position: absolute; bottom: -2px; left: 0; width: 100%; overflow: hidden; line-height: 0; }
.hero-wave svg { position: relative; display: block; width: calc(100% + 1.3px); height: 80px; }
.hero-wave .shape-fill { fill: var(--white); }

/* ===== SECTIONS ===== */
section { padding: 6rem 2rem; }
.section-container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag { display: inline-block; background: rgba(30,109,212,0.1); color: var(--blue); padding: 0.3rem 1rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1rem; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.section-header p { color: var(--gray); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ===== ABOUT ===== */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; background: linear-gradient(transparent, rgba(11,29,58,0.9)); }
.about-image-overlay p { color: var(--white); font-weight: 600; font-size: 1.1rem; }
.about-image-overlay span { color: var(--gold); font-size: 0.85rem; }
.about-content h3 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--navy); margin-bottom: 1rem; }
.about-content p { color: #555; line-height: 1.8; margin-bottom: 1.5rem; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.value-item { display: flex; align-items: center; gap: 0.7rem; }
.value-check { width: 24px; height: 24px; background: rgba(30,109,212,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.value-check svg { width: 14px; height: 14px; stroke: var(--blue); fill: none; stroke-width: 3; }
.value-item span { font-size: 0.9rem; font-weight: 500; color: var(--navy); }

/* ===== SERVICES ===== */
.services { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.service-card { background: var(--white); border-radius: 12px; overflow: hidden; transition: all 0.4s; border: 1px solid rgba(0,0,0,0.05); position: relative; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--blue), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(11,29,58,0.12); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.service-card-body { padding: 2rem; }
.service-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 0.8rem; }
.service-card p { color: var(--gray); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }
.service-card ul { list-style: none; }
.service-card ul li { padding: 0.3rem 0; color: #555; font-size: 0.88rem; display: flex; align-items: center; gap: 0.5rem; }
.service-card ul li::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ===== PARTNERS ===== */
.partners { background: var(--white); padding: 5rem 2rem; }
.partners-track { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 3rem; margin-top: 1rem; }
.partner-logo { height: 60px; width: auto; max-width: 150px; object-fit: contain; filter: grayscale(100%); opacity: 0.6; transition: all 0.3s; }
.partner-logo:hover { filter: grayscale(0%); opacity: 1; }

/* ===== GALLERY ===== */
.gallery { background: var(--off-white); }
.gallery-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.5rem; }
.gallery-item { position: relative; overflow: hidden; border-radius: 8px; aspect-ratio: 1; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .overlay { position: absolute; inset: 0; background: rgba(11,29,58,0.6); opacity: 0; transition: opacity 0.3s; display: flex; align-items: center; justify-content: center; }
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay svg { width: 32px; height: 32px; stroke: var(--white); fill: none; stroke-width: 1.5; }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 2000; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 8px; }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; width: 44px; height: 44px; background: rgba(255,255,255,0.1); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lightbox-close svg { width: 24px; height: 24px; stroke: white; fill: none; stroke-width: 2; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; background: rgba(255,255,255,0.1); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lightbox-nav svg { width: 24px; height: 24px; stroke: white; fill: none; stroke-width: 2; }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-caption { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* ===== WHY US ===== */
.why-us { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); color: var(--white); }
.why-us .section-tag { background: rgba(201,168,76,0.15); color: var(--gold); }
.why-us .section-header h2 { color: var(--white); }
.why-us .section-header p { color: rgba(255,255,255,0.6); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.why-card { text-align: center; padding: 2rem 1.5rem; border-radius: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); transition: all 0.3s; }
.why-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.why-icon { width: 70px; height: 70px; margin: 0 auto 1.5rem; background: rgba(201,168,76,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.why-icon svg { width: 32px; height: 32px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.why-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.7rem; }
.why-card p { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.6; }

/* ===== CONTACT ===== */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--navy); margin-bottom: 1rem; }
.contact-info > p { color: var(--gray); margin-bottom: 2rem; line-height: 1.7; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon { width: 48px; height: 48px; background: var(--off-white); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 1.5; }
.contact-detail h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.2rem; }
.contact-detail p, .contact-detail a { color: var(--gray); font-size: 0.9rem; transition: color 0.3s; }
.contact-detail a:hover { color: var(--blue); }
.contact-form { background: var(--off-white); padding: 2.5rem; border-radius: 12px; }
.contact-form h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--gray-light); border-radius: 6px; font-family: 'Inter', sans-serif; font-size: 0.9rem; background: var(--white); transition: border-color 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,109,212,0.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit { width: 100%; background: var(--navy); color: var(--white); padding: 0.9rem; border: none; border-radius: 6px; font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: all 0.3s; margin-top: 0.5rem; }
.btn-submit:hover { background: var(--navy-light); }
.form-success { display: none; text-align: center; padding: 2rem; color: #27ae60; font-weight: 600; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.6); padding: 4rem 2rem 2rem; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo-text { font-size: 1.3rem; margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.8rem; }
.social-links a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.social-links a:hover { background: var(--gold); border-color: var(--gold); }
.social-links a svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.7); }
.social-links a:hover svg { fill: var(--navy); }
.footer h4 { color: var(--white); font-size: 0.95rem; font-weight: 700; margin-bottom: 1.2rem; text-transform: uppercase; letter-spacing: 1px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.6rem; }
.footer ul a { color: rgba(255,255,255,0.5); font-size: 0.88rem; transition: color 0.3s; }
.footer ul a:hover { color: var(--gold); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; }

/* ===== TRACK RECORD ===== */
.track-record { background: var(--off-white); }
.track-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.track-card { text-align: center; padding: 2rem 1.5rem; background: var(--white); border-radius: 12px; border: 1px solid rgba(0,0,0,0.05); transition: all 0.3s; }
.track-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(11,29,58,0.08); }
.track-number { font-size: 2.5rem; font-weight: 800; color: var(--navy); line-height: 1.2; }
.track-label { font-size: 0.9rem; font-weight: 700; color: var(--blue); margin: 0.3rem 0; }
.track-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.5; }

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--white); }
.hiw-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.hiw-step { text-align: center; padding: 2rem 1.5rem; position: relative; }
.hiw-step::after { content: ''; position: absolute; top: 32px; right: -10%; width: 20%; height: 2px; background: var(--gold); }
.hiw-step:last-child::after { display: none; }
.hiw-num { width: 56px; height: 56px; background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 800; color: var(--gold); margin: 0 auto 1.2rem; position: relative; z-index: 1; }
.hiw-step h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }
.hiw-step p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* ===== COMMODITIES ===== */
.commodities { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); color: var(--white); }
.commodities .section-tag { background: rgba(201,168,76,0.15); color: var(--gold); }
.commodities .section-header h2 { color: var(--white); }
.commodities .section-header p { color: rgba(255,255,255,0.6); }
.commodity-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.commodity-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden; transition: all 0.3s; display: flex; flex-direction: column; }
.commodity-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.commodity-img { width: 100%; height: 180px; overflow: hidden; }
.commodity-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.commodity-card:hover .commodity-img img { transform: scale(1.08); }
.commodity-body { padding: 1.5rem 2rem 2rem; }
.commodity-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--gold); margin-bottom: 0.6rem; }
.commodity-card p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ===== TRADE ROUTES ===== */
.trade-routes { background: var(--off-white); }
.routes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.route-card { background: var(--white); border-radius: 12px; padding: 1.8rem; border: 1px solid rgba(0,0,0,0.05); border-left: 4px solid var(--gold); transition: all 0.3s; display: flex; gap: 1.2rem; align-items: flex-start; }
.route-card:hover { box-shadow: 0 8px 30px rgba(11,29,58,0.08); transform: translateY(-2px); }
.route-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.route-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.route-content { flex: 1; }
.route-name { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.route-ports { font-size: 0.88rem; color: var(--gray); margin-bottom: 0.4rem; }
.route-ports strong { color: var(--text); }
.route-cargo { font-size: 0.82rem; color: var(--blue); font-weight: 600; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card { background: var(--off-white); border-radius: 12px; padding: 2rem; position: relative; border: 1px solid rgba(0,0,0,0.04); }
.testimonial-card::before { content: '\201C'; position: absolute; top: 0.5rem; left: 1.2rem; font-size: 4rem; color: var(--gold); opacity: 0.3; font-family: Georgia, serif; line-height: 1; }
.testimonial-quote { font-size: 0.92rem; color: #555; line-height: 1.7; margin-bottom: 1.5rem; padding-top: 1rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; color: var(--gold); font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.testimonial-name { font-size: 0.88rem; font-weight: 700; color: var(--navy); }
.testimonial-role { font-size: 0.78rem; color: var(--gray); }
.testimonial-verified { font-size: 0.7rem; color: var(--blue); font-weight: 600; margin-top: 0.2rem; }

/* ===== VIDEO ===== */
.video-section { background: var(--white); }
.video-wrapper { max-width: 900px; margin: 0 auto; position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(11,29,58,0.15); aspect-ratio: 16/9; }
.video-wrapper iframe { width: 100%; height: 100%; position: absolute; inset: 0; }
.video-thumb { position: relative; cursor: pointer; width: 100%; height: 100%; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.video-thumb:hover img { transform: scale(1.03); }
.video-thumb::after { content: ''; position: absolute; inset: 0; background: rgba(11,29,58,0.35); transition: background 0.3s; }
.video-thumb:hover::after { background: rgba(11,29,58,0.2); }
.video-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1; transition: transform 0.3s; }
.video-thumb:hover .video-play-btn { transform: translate(-50%, -50%) scale(1.1); }
.video-play-btn svg { width: 68px; height: 48px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4)); }
.video-caption { text-align: center; color: var(--gray); font-size: 0.88rem; margin-top: 1.2rem; font-style: italic; }

/* ===== COMPLIANCE ===== */
.compliance-section { background: var(--white); }
.compliance-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1rem; }
.compliance-item { display: flex; gap: 1rem; padding: 1.2rem; border: 1px solid rgba(0,0,0,0.06); border-radius: 10px; background: var(--off-white); }
.compliance-icon { width: 44px; height: 44px; background: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.compliance-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.compliance-label { font-size: 0.9rem; font-weight: 700; color: var(--navy); }
.compliance-detail { font-size: 0.82rem; color: var(--gray); margin-top: 0.1rem; }

/* ===== FAQ ===== */
.faq-section { background: var(--off-white); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: 10px; margin-bottom: 0.8rem; overflow: hidden; }
.faq-q { padding: 1.2rem 1.5rem; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 0.95rem; transition: background 0.2s; }
.faq-q:hover { background: var(--off-white); }
.faq-q svg { width: 20px; height: 20px; stroke: var(--gray); fill: none; stroke-width: 2; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner { padding: 0 1.5rem 1.2rem; font-size: 0.9rem; color: #555; line-height: 1.7; }

/* ===== OFFICES ===== */
.offices-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1.5rem; }
.office-card { background: var(--off-white); border-radius: 10px; padding: 1.2rem; border: 1px solid rgba(0,0,0,0.06); }
.office-city { font-weight: 700; color: var(--navy); font-size: 0.95rem; margin-bottom: 0.3rem; }
.office-country { font-size: 0.78rem; color: var(--blue); font-weight: 600; margin-bottom: 0.4rem; }
.office-address { font-size: 0.82rem; color: var(--gray); line-height: 1.5; }

/* ===== QUOTE SECTION ===== */
.quote-section { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); color: var(--white); }
.quote-section .section-tag { background: rgba(201,168,76,0.15); color: var(--gold); }
.quote-section .section-header h2 { color: var(--white); }
.quote-section .section-header p { color: rgba(255,255,255,0.6); }
.quote-form-wrap { max-width: 800px; margin: 0 auto; }
.quote-form { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 2.5rem; backdrop-filter: blur(10px); }
.quote-form .form-group label { color: rgba(255,255,255,0.85); }
.quote-form .form-group input, .quote-form .form-group select, .quote-form .form-group textarea { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: var(--white); }
.quote-form .form-group input::placeholder, .quote-form .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.quote-form .form-group input:focus, .quote-form .form-group select:focus, .quote-form .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.15); }
.quote-form .form-group select option { background: var(--navy); color: var(--white); }

/* ===== NEWSLETTER ===== */
.newsletter { background: var(--off-white); padding: 4rem 2rem; }
.newsletter-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.newsletter-inner h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--navy); margin-bottom: 0.5rem; }
.newsletter-inner > p { color: var(--gray); margin-bottom: 1.5rem; }
.newsletter-form { display: flex; gap: 0.8rem; max-width: 500px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 0.8rem 1rem; border: 1px solid var(--gray-light); border-radius: 6px; font-family: inherit; font-size: 0.9rem; }
.newsletter-form input:focus { outline: none; border-color: var(--blue); }
.newsletter-form .btn-primary { white-space: nowrap; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.anim { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.anim.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-emails { display: none; }
    .hero-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .track-grid { grid-template-columns: repeat(2, 1fr); }
    .hiw-grid { grid-template-columns: repeat(2, 1fr); }
    .hiw-step::after { display: none; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .offices-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy-dark); flex-direction: column; justify-content: center; align-items: center; gap: 2rem; z-index: 999; }
    .nav-links.active { display: flex; }
    .hamburger { display: flex; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .hero h1 { font-size: 2.3rem; }
    .hero-stats { gap: 1.5rem; }
    .stat-number { font-size: 1.5rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .track-grid { grid-template-columns: 1fr 1fr; }
    .hiw-grid { grid-template-columns: 1fr; }
    .commodity-grid { grid-template-columns: 1fr; }
    .commodity-img { height: 160px; }
    .routes-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .offices-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
    .values-grid { grid-template-columns: 1fr; }
}

/* ===== ROUTE MAP ===== */
.route-map-wrap { margin-bottom: 3rem; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.route-map-wrap svg { display: block; width: 100%; height: auto; }
