/* ============================================
   MHT Trading Company — Premium Dark Theme
   ============================================ */

:root {
    --bg-dark: #0a0e17;
    --bg-card: #111827;
    --bg-card-hover: #1a2332;
    --bg-accent: #0f1729;
    --gold: #c9a84c;
    --gold-light: #e5c76b;
    --gold-dark: #a88a3a;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border: #1e293b;
    --border-light: #334155;
    --gradient-gold: linear-gradient(135deg, #c9a84c, #e5c76b);
    --gradient-dark: linear-gradient(180deg, #0a0e17 0%, #111827 100%);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 4px 24px rgba(201, 168, 76, 0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; overflow-x: clip; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: clip;
    max-width: 100vw;
}

.comparison-table-wrapper,
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* Preloader */
#preloader {
    position: fixed; inset: 0; z-index: 10000;
    background: var(--bg-dark);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.loader {
    position: relative; width: 80px; height: 80px;
    display: flex; align-items: center; justify-content: center;
}
.loader-inner {
    position: absolute; inset: 0;
    border: 3px solid var(--border);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.loader span { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--gold); }
@keyframes spin { to { transform: rotate(360deg); } }

/* Navigation */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0;
    background: transparent;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}
.nav-container {
    max-width: 1400px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
    width: 44px; height: 44px;
    background: var(--gradient-gold);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 700; color: var(--bg-dark);
}
.logo-main { display: block; font-size: 18px; font-weight: 700; color: var(--text-primary); }
.logo-sub { display: block; font-size: 11px; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }
.nav-links {
    display: flex; gap: 28px; list-style: none;
}
.nav-links a {
    color: var(--text-secondary); text-decoration: none;
    font-size: 14px; font-weight: 500;
    transition: var(--transition);
    position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--gold);
    transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.btn-whatsapp {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 18px; border-radius: 8px;
    background: #25D366; color: #fff;
    text-decoration: none; font-size: 14px; font-weight: 600;
    transition: var(--transition);
}
.btn-whatsapp:hover { background: #128C7E; transform: translateY(-1px); }
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 24px; border-radius: 8px;
    background: var(--gradient-gold); color: var(--bg-dark);
    text-decoration: none; font-size: 14px; font-weight: 700;
    border: none; cursor: pointer;
    transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 24px; border-radius: 8px;
    background: transparent; color: var(--text-primary);
    text-decoration: none; font-size: 14px; font-weight: 600;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--text-primary); transition: var(--transition); }

/* Mobile Menu */
.mobile-menu {
    display: none; position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(10, 14, 23, 0.98); backdrop-filter: blur(20px);
    padding: 24px; z-index: 999;
    border-bottom: 1px solid var(--border);
}
.mobile-menu.active { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu li { margin-bottom: 16px; }
.mobile-menu a { color: var(--text-secondary); text-decoration: none; font-size: 16px; font-weight: 500; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mob-dropdown-toggle { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu .mob-dropdown-toggle i { transition: transform 0.3s; margin-left: 8px; font-size: 0.7rem; }
.mobile-menu .mob-dropdown.open > .mob-dropdown-toggle i { transform: rotate(180deg); }
.mobile-menu .mob-dropdown-items { display: none; padding-left: 18px; margin-top: 10px; }
.mobile-menu .mob-dropdown.open > .mob-dropdown-items { display: block; }
.mobile-menu .mob-dropdown-items li { margin-bottom: 10px; }
.mobile-menu .mob-dropdown-items a { font-size: 14px; color: var(--gray, #8a9ab5); }
.mobile-menu .mob-dropdown-items a:hover { color: var(--gold); }

/* Hero Section */
.hero {
    position: relative; min-height: 100vh;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    text-align: center; padding: 120px 24px 0;
}
.hero-video-bg {
    position: absolute; inset: 0; z-index: 0;
    overflow: hidden;
}
.hero-video-bg video {
    width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,14,23,0.85) 0%, rgba(10,14,23,0.7) 50%, rgba(10,14,23,0.95) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-badge {
    display: inline-block;
    padding: 8px 20px; border-radius: 50px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold); font-size: 14px; font-weight: 600;
    margin-bottom: 24px;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700; line-height: 1.15;
    margin-bottom: 20px;
}
.highlight { color: var(--gold); }
.hero-subtitle {
    font-size: 18px; color: var(--text-secondary);
    max-width: 640px; margin: 0 auto 36px; line-height: 1.8;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px; justify-content: center;
    margin-top: 80px; padding: 32px 48px;
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.stat { text-align: center; }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 42px; font-weight: 700; color: var(--gold);
}
.stat-prefix, .stat-suffix { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--gold); }
.stat-label { display: block; font-size: 13px; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

/* Trust Bar */
.trust-bar {
    padding: 32px 0; border-bottom: 1px solid var(--border);
    background: var(--bg-accent);
}
.trust-label { text-align: center; font-size: 13px; color: var(--text-muted); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 2px; }
.trust-logos { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; align-items: center; }
.trust-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; color: var(--text-secondary); font-weight: 500;
}
.trust-item i { font-size: 18px; color: var(--gold); }
.flag-icon { width: 20px; height: 14px; }

/* Section Styles */
.section { padding: 100px 0; overflow-x: clip; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
    display: inline-block;
    padding: 6px 16px; border-radius: 50px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: var(--gold); font-size: 13px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 16px;
}
.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700; line-height: 1.2;
    margin-bottom: 16px;
}
.section-desc { font-size: 17px; color: var(--text-secondary); max-width: 640px; margin: 0 auto; }

/* About Grid */
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.about-card {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.about-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.about-icon {
    width: 56px; height: 56px; border-radius: 12px;
    background: rgba(201, 168, 76, 0.1);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.about-icon i { font-size: 24px; color: var(--gold); }
.about-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.about-card p { font-size: 15px; color: var(--text-secondary); }

/* Video Showcase */
.video-showcase {
    padding: 60px 0;
    background: var(--bg-accent);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.video-card { background: var(--bg-card); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: var(--transition); }
.video-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.video-thumb {
    position: relative; aspect-ratio: 16/9; overflow: hidden; cursor: pointer;
    background: var(--bg-accent);
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.video-thumb:hover img { transform: scale(1.05); }
.play-btn {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 64px; height: 64px; border-radius: 50%;
    background: rgba(201, 168, 76, 0.9);
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.play-btn i { font-size: 22px; color: var(--bg-dark); margin-left: 3px; }
.video-thumb:hover .play-btn { transform: translate(-50%, -50%) scale(1.1); background: var(--gold); }
.video-duration {
    position: absolute; bottom: 8px; right: 8px;
    padding: 2px 8px; background: rgba(0,0,0,0.7);
    border-radius: 4px; font-size: 12px; color: #fff;
}
.video-card h4 { padding: 16px 20px 0; font-size: 16px; font-weight: 700; }
.video-card p { padding: 8px 20px 20px; font-size: 14px; color: var(--text-secondary); }

/* Services */
.services { background: var(--bg-dark); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 24px; }
.service-card {
    padding: 36px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--radius);
    transition: var(--transition);
}
.service-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.service-icon {
    width: 56px; height: 56px; border-radius: 12px;
    background: rgba(201, 168, 76, 0.1);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.service-icon i { font-size: 24px; color: var(--gold); }
.service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.service-card > p { font-size: 15px; color: var(--text-secondary); margin-bottom: 20px; }
.service-features { list-style: none; }
.service-features li {
    display: flex; align-items: center; gap: 10px;
    padding: 6px 0; font-size: 14px; color: var(--text-secondary);
}
.service-features li i { color: var(--gold); font-size: 12px; }

/* Comparison Table */
.comparison {
    background: var(--bg-accent);
    border-top: 1px solid var(--border);
}
.section-header.light h2 { color: var(--text-primary); }
.comparison-table-wrapper { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.comparison-table {
    width: 100%; border-collapse: collapse;
    background: var(--bg-card);
    font-size: 14px;
}
.comparison-table th, .comparison-table td {
    padding: 16px 20px; text-align: left;
    border-bottom: 1px solid var(--border);
}
.comparison-table th {
    background: var(--bg-accent);
    font-weight: 700; font-size: 15px;
    color: var(--text-primary);
    white-space: nowrap;
}
.comparison-table td { color: var(--text-secondary); }
.comparison-table .highlight-col {
    background: rgba(201, 168, 76, 0.05);
    border-left: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    font-weight: 600; color: var(--text-primary);
}
.comparison-table th.highlight-col {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
}
.comparison-table tr:last-child td { border-bottom: none; }
.yes { color: #22c55e; margin-right: 6px; }
.no { color: #ef4444; margin-right: 6px; }
.maybe { color: #f59e0b; margin-right: 6px; }

/* Numbers */
.numbers-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.05), rgba(201, 168, 76, 0.02));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.numbers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; text-align: center; }
.number-value {
    font-family: 'Playfair Display', serif;
    font-size: 48px; font-weight: 700; color: var(--gold);
    margin-bottom: 8px;
}
.number-value span { display: inline; }
.number-label { font-size: 14px; color: var(--text-secondary); }

/* Process */
.process { background: var(--bg-dark); }
.process-timeline { max-width: 720px; margin: 0 auto; position: relative; }
.process-timeline::before {
    content: ''; position: absolute; left: 38px; top: 0; bottom: 0;
    width: 2px; background: var(--border);
}
.process-step {
    display: flex; gap: 32px; margin-bottom: 48px;
    position: relative;
    opacity: 0; transform: translateX(-20px);
    transition: opacity 0.6s, transform 0.6s;
}
.process-step.visible { opacity: 1; transform: translateX(0); }
.step-number {
    flex-shrink: 0; width: 76px; height: 76px;
    background: var(--bg-card); border: 2px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 700; color: var(--gold);
    z-index: 1;
    transition: var(--transition);
}
.process-step:hover .step-number { border-color: var(--gold); background: rgba(201, 168, 76, 0.1); }
.step-content h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.step-content p { font-size: 15px; color: var(--text-secondary); }
.step-time {
    display: inline-block; margin-top: 10px;
    padding: 4px 12px; border-radius: 50px;
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold); font-size: 13px; font-weight: 600;
}

/* Industries */
.industries {
    background: var(--bg-accent);
    border-top: 1px solid var(--border);
}
.industries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.industry-card {
    padding: 28px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}
.industry-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.industry-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.industry-icon i { font-size: 22px; color: var(--gold); }
.industry-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.industry-card p { font-size: 13px; color: var(--text-muted); }

/* Global Offices */
.global-offices { background: var(--bg-dark); }
.offices-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.office-card {
    padding: 36px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--radius);
    transition: var(--transition);
    position: relative; overflow: hidden;
}
.office-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px; background: var(--gradient-gold);
}
.office-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.office-flag { font-size: 36px; margin-bottom: 12px; }
.office-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.office-role { display: block; font-size: 13px; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.office-card > p { font-size: 14px; color: var(--text-secondary); margin-bottom: 20px; }
.office-details { border-top: 1px solid var(--border); padding-top: 16px; }
.office-details div {
    display: flex; align-items: center; gap: 10px;
    padding: 6px 0; font-size: 14px; color: var(--text-secondary);
}
.office-details i { color: var(--gold); width: 16px; }

/* Case Studies */
.case-studies {
    background: var(--bg-accent);
    border-top: 1px solid var(--border);
}
.cases-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 24px; }
.case-card {
    padding: 36px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--radius);
    transition: var(--transition);
}
.case-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.case-category {
    display: inline-block;
    padding: 4px 12px; border-radius: 50px;
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold); font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 16px;
}
.case-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.case-card > p { font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; }
.case-results { display: flex; gap: 24px; margin-bottom: 20px; padding: 20px; background: var(--bg-accent); border-radius: 8px; }
.case-metric { text-align: center; flex: 1; }
.metric-value { display: block; font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--gold); }
.metric-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.case-quote { font-style: italic; font-size: 14px; color: var(--text-secondary); border-left: 3px solid var(--gold); padding-left: 16px; }

/* Testimonials */
.testimonials { background: var(--bg-dark); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; }
.testimonial-card {
    padding: 36px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--radius);
    transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--gold); }
.testimonial-stars { margin-bottom: 16px; }
.testimonial-stars i { color: var(--gold); font-size: 14px; }
.testimonial-card > p { font-size: 15px; color: var(--text-secondary); margin-bottom: 24px; line-height: 1.8; font-style: italic; }
.author-info strong { display: block; font-size: 15px; color: var(--text-primary); }
.author-info span { font-size: 13px; color: var(--text-muted); }

/* Pricing */
.pricing {
    background: var(--bg-accent);
    border-top: 1px solid var(--border);
}
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.pricing-card {
    padding: 40px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--radius);
    transition: var(--transition); position: relative;
}
.pricing-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.pricing-card.featured {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.08), var(--bg-card));
}
.pricing-badge {
    position: absolute; top: -12px; right: 24px;
    padding: 6px 16px; border-radius: 50px;
    background: var(--gradient-gold); color: var(--bg-dark);
    font-size: 12px; font-weight: 700; text-transform: uppercase;
}
.pricing-tier { font-size: 14px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; font-weight: 600; margin-bottom: 8px; }
.pricing-price {
    font-family: 'Playfair Display', serif;
    font-size: 48px; font-weight: 700; color: var(--gold);
    margin-bottom: 4px;
}
.pricing-basis { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.pricing-card > p { font-size: 15px; color: var(--text-secondary); margin-bottom: 24px; }
.pricing-card ul { list-style: none; margin-bottom: 32px; }
.pricing-card li {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0; font-size: 14px; color: var(--text-secondary);
}
.pricing-card li i { color: var(--gold); font-size: 12px; }

/* FAQ */
.faq { background: var(--bg-dark); }
.faq-grid { max-width: 800px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--border); border-radius: var(--radius);
    margin-bottom: 12px; overflow: hidden;
    background: var(--bg-card);
}
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; cursor: pointer;
    transition: var(--transition);
}
.faq-question:hover { background: var(--bg-card-hover); }
.faq-question h4 { font-size: 16px; font-weight: 600; }
.faq-question i { color: var(--gold); transition: var(--transition); font-size: 14px; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 24px 20px; font-size: 15px; color: var(--text-secondary); line-height: 1.8; }

/* Contact */
.contact {
    background: var(--bg-accent);
    border-top: 1px solid var(--border);
}
.contact-wrapper {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
    align-items: start;
}
.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px; font-weight: 700; margin-bottom: 16px;
}
.contact-info > p { font-size: 16px; color: var(--text-secondary); margin-bottom: 36px; }
.contact-channels { display: flex; flex-direction: column; gap: 20px; }
.channel { display: flex; align-items: center; gap: 16px; }
.channel i { font-size: 24px; color: var(--gold); width: 32px; }
.channel strong { display: block; font-size: 14px; color: var(--text-primary); }
.channel a, .channel span { font-size: 14px; color: var(--text-secondary); text-decoration: none; }
.channel a:hover { color: var(--gold); }
.contact-form {
    padding: 40px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--radius);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px;
    background: var(--bg-accent);
    border: 1px solid var(--border); border-radius: 8px;
    color: var(--text-primary); font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; }
.form-disclaimer { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 12px; }

/* Footer */
.footer {
    padding: 80px 0 32px;
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand > p { font-size: 14px; color: var(--text-muted); margin-top: 16px; }
.footer-links h4, .footer-contact h4 { font-size: 15px; font-weight: 700; margin-bottom: 16px; color: var(--text-primary); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-contact-item i { color: var(--gold); font-size: 16px; }
.footer-contact-item a, .footer-contact-item span { color: var(--text-muted); font-size: 14px; text-decoration: none; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 32px; border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 8px;
    background: var(--bg-card); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 16px;
    text-decoration: none; transition: var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    width: 60px; height: 60px; border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 28px; text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
    transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-tooltip {
    position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
    background: var(--bg-card); color: var(--text-primary);
    padding: 8px 16px; border-radius: 8px;
    font-size: 13px; white-space: nowrap;
    opacity: 0; pointer-events: none;
    transition: var(--transition);
    border: 1px solid var(--border);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* Video Modal */
.video-modal {
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(0, 0, 0, 0.9);
    display: none; align-items: center; justify-content: center;
}
.video-modal.active { display: flex; }
.video-modal-content {
    position: relative; width: 90%; max-width: 900px;
    aspect-ratio: 16/9; border-radius: var(--radius);
    overflow: hidden;
}
.video-modal-close {
    position: absolute; top: -40px; right: 0;
    background: none; border: none;
    color: #fff; font-size: 32px; cursor: pointer;
}
.video-modal-body { width: 100%; height: 100%; background: #000; }

/* ============================================
   IMAGE & VISUAL OVERHAUL ADDITIONS
   ============================================ */

/* Hero background image */
.hero-bg-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    z-index: 0;
}

/* About Split Layout */
.about-split {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
    align-items: center; margin-bottom: 0;
}
.about-split-images { position: relative; }
.about-img-primary {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    border: 2px solid var(--border);
    aspect-ratio: 4/3;
}
.about-img-primary img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.about-img-primary:hover img { transform: scale(1.03); }
.about-img-badge {
    position: absolute; bottom: 20px; left: 20px;
    background: var(--gradient-gold);
    padding: 12px 20px; border-radius: var(--radius);
    text-align: center;
}
.about-img-badge .badge-num {
    display: block; font-family: 'Playfair Display', serif;
    font-size: 28px; font-weight: 700; color: var(--bg-dark);
}
.about-img-badge .badge-txt {
    display: block; font-size: 12px; font-weight: 700;
    color: var(--bg-dark); text-transform: uppercase; letter-spacing: 1px;
}
.about-img-secondary {
    position: absolute; bottom: -24px; right: 0;
    width: 200px; height: 160px;
    border-radius: var(--radius); overflow: hidden;
    border: 3px solid var(--bg-dark);
    box-shadow: var(--shadow);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-split-content { padding-left: 16px; }
.about-features { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.about-feat {
    display: flex; align-items: center; gap: 10px;
    font-size: 15px; color: var(--text-secondary);
}
.about-feat i { color: var(--gold); }

/* About card images */
.about-card-img {
    width: 100%; height: 160px; overflow: hidden;
    border-radius: 8px; margin-bottom: 20px;
}
.about-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.about-card:hover .about-card-img img { transform: scale(1.05); }

/* Service card images */
.service-card-img {
    width: 100%; height: 200px; overflow: hidden;
    border-radius: 8px; margin-bottom: 20px;
    position: relative;
}
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.service-card:hover .service-card-img img { transform: scale(1.05); }

/* Video card — play overlay fix */
.video-play-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.25);
    transition: var(--transition);
}
.video-thumb:hover .video-play-overlay { background: rgba(0,0,0,0.15); }

/* Industry card images */
.industry-img {
    width: 100%; height: 130px; overflow: hidden;
    border-radius: 8px; margin-bottom: 16px;
}
.industry-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.industry-card:hover .industry-img img { transform: scale(1.05); }

/* Process hero image */
.process-hero-img {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    max-width: 900px; margin: 0 auto 64px;
    border: 2px solid var(--border);
    aspect-ratio: 21/9;
}
.process-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.process-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(transparent 40%, rgba(10,14,23,0.85));
    display: flex; align-items: flex-end; justify-content: center;
    padding: 28px;
}
.process-hero-overlay span {
    font-family: 'Playfair Display', serif;
    font-size: 18px; color: var(--gold); font-weight: 600;
    text-align: center;
}

/* Process step images */
.step-img {
    width: 100%; height: 160px; overflow: hidden;
    border-radius: 8px; margin-bottom: 14px;
    border: 1px solid var(--border);
}
.step-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.process-step:hover .step-img img { transform: scale(1.04); }

/* Global map banner */
.global-map-banner {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    max-width: 100%; margin-bottom: 48px;
    border: 1px solid var(--border);
    aspect-ratio: 21/8;
}
.global-map-banner img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5) saturate(0.7); }
.global-map-overlay {
    position: absolute; inset: 0;
}
.map-pin {
    position: absolute; text-align: center;
    transform: translate(-50%, -100%);
    cursor: pointer;
}
.map-pin i { font-size: 24px; color: var(--gold); filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); }
.map-pin span {
    display: block; font-size: 11px; font-weight: 700;
    color: #fff; background: rgba(201,168,76,0.9);
    padding: 2px 8px; border-radius: 20px; margin-top: 2px;
    white-space: nowrap;
}

/* Office card city images */
.office-city-img {
    width: 100%; height: 160px; overflow: hidden;
    border-radius: 8px; margin-bottom: 20px;
    position: relative;
}
.office-city-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.office-card:hover .office-city-img img { transform: scale(1.05); }

/* Case study images */
.case-img {
    width: 100%; height: 200px; overflow: hidden;
    border-radius: 8px; margin-bottom: 20px;
}
.case-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.case-card:hover .case-img img { transform: scale(1.05); }

/* Testimonial avatar */
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.author-avatar {
    width: 52px; height: 52px; border-radius: 50%;
    overflow: hidden; flex-shrink: 0;
    border: 2px solid var(--gold);
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* Contact visual */
.contact-visual {
    width: 100%; height: 200px; border-radius: var(--radius); overflow: hidden;
    margin-bottom: 28px;
    border: 1px solid var(--border);
}
.contact-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   WORK GALLERY SECTION
   ============================================ */
.work-gallery { background: var(--bg-dark); }

.gallery-filters {
    display: flex; gap: 10px; flex-wrap: wrap;
    justify-content: center; margin-bottom: 40px;
}
.gallery-filter {
    padding: 8px 20px; border-radius: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary); font-size: 14px; font-weight: 600;
    cursor: pointer; transition: var(--transition);
    font-family: 'Inter', sans-serif;
}
.gallery-filter:hover, .gallery-filter.active {
    background: var(--gradient-gold);
    color: var(--bg-dark); border-color: var(--gold);
}

/* Masonry-style CSS Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 12px;
}
.gallery-item {
    position: relative; overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}
.gallery-item:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(transparent 40%, rgba(10,14,23,0.85));
    display: flex; flex-direction: column;
    align-items: center; justify-content: flex-end;
    padding: 16px;
    opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 28px; color: var(--gold); margin-bottom: 8px; }
.gallery-overlay span { font-size: 13px; font-weight: 600; color: #fff; text-align: center; }
.gallery-cat-tag {
    position: absolute; top: 12px; left: 12px;
    padding: 4px 10px; border-radius: 20px;
    background: rgba(201,168,76,0.9);
    color: var(--bg-dark); font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.gallery-item.hidden { display: none; }

/* Lightbox */
.lightbox {
    display: none; position: fixed; inset: 0; z-index: 20000;
    background: rgba(0, 0, 0, 0.95);
    align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-inner {
    position: relative; max-width: 90vw; max-height: 85vh;
    text-align: center;
}
.lightbox-inner img {
    max-width: 100%; max-height: 82vh;
    border-radius: var(--radius); border: 2px solid var(--border);
    object-fit: contain;
}
#lightboxCaption {
    margin-top: 12px; color: var(--gold);
    font-size: 14px; font-weight: 600;
}
.lightbox-close {
    position: fixed; top: 20px; right: 28px;
    background: rgba(201,168,76,0.15);
    border: 1px solid var(--gold); border-radius: 50%;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 18px; cursor: pointer;
    transition: var(--transition); z-index: 20001;
}
.lightbox-close:hover { background: var(--gold); color: var(--bg-dark); }
.lightbox-prev, .lightbox-next {
    position: fixed; top: 50%; transform: translateY(-50%);
    background: rgba(201,168,76,0.15);
    border: 1px solid var(--gold); border-radius: 50%;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 18px; cursor: pointer;
    transition: var(--transition); z-index: 20001;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); color: var(--bg-dark); }

/* Responsive gallery */
@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .about-split { grid-template-columns: 1fr; gap: 40px; }
    .about-img-secondary { width: 150px; height: 120px; right: -8px; }
}
@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .gallery-item.wide { grid-column: span 2; }
    .gallery-item.tall { grid-row: span 1; }
    .process-hero-img { aspect-ratio: 16/7; }
    .global-map-banner { aspect-ratio: 16/7; }
    .map-pin { display: none; }
    .contact-visual { height: 150px; }
    .about-img-secondary { display: none; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .gallery-item.wide { grid-column: span 1; }
    .gallery-filters { gap: 6px; }
    .gallery-filter { padding: 6px 14px; font-size: 12px; }
}

/* Animations */
.fade-in {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 24px; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
    .hero-subtitle { font-size: 16px; }
    .hero-stats { gap: 16px; padding: 20px 16px; }
    .stat-number { font-size: 32px; }
    .section { padding: 64px 0; }
    .section-header { margin-bottom: 40px; }
    .services-grid { grid-template-columns: 1fr; }
    .cases-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .offices-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .comparison-table { font-size: 12px; }
    .comparison-table th, .comparison-table td { padding: 10px 12px; }
    .number-value { font-size: 36px; }
}
@media (max-width: 480px) {
    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-stats { grid-template-columns: 1fr; gap: 12px; }
    .trust-logos { flex-direction: column; gap: 12px; }
    .case-results { flex-direction: column; gap: 12px; }
}

/* Trust Badges */
.trust-badges {
    display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
    margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(201,168,76,0.2);
}
.badge-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: #c9a84c; font-weight: 600;
    background: rgba(201,168,76,0.08); padding: 6px 14px;
    border-radius: 20px; border: 1px solid rgba(201,168,76,0.2);
}
.badge-item i { font-size: 14px; }

/* Inline Section Videos */
.section-video-embed {
    max-width: 800px; margin: 0 auto 40px; text-align: center;
}
.video-inline {
    position: relative; border-radius: 12px; overflow: hidden;
    cursor: pointer; aspect-ratio: 16/9;
    border: 2px solid rgba(201,168,76,0.3);
    transition: border-color 0.3s;
}
.video-inline:hover { border-color: #c9a84c; }
.video-inline video {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
}
.play-btn-lg {
    width: 80px; height: 80px; font-size: 28px;
}
.video-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(10,14,23,0.9));
    color: #c9a84c; font-size: 15px; font-weight: 600;
    padding: 30px 20px 14px; text-align: center;
}

/* Video Modal */
.video-modal {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.9); z-index: 10000;
    align-items: center; justify-content: center;
}
.video-modal.active { display: flex; }
.video-modal-content {
    position: relative; max-width: 900px; width: 90%;
}
.video-modal-close {
    position: absolute; top: -40px; right: 0;
    background: none; border: none; color: #fff;
    font-size: 32px; cursor: pointer; z-index: 10001;
}

@media (max-width: 768px) {
    .trust-badges { gap: 10px; }
    .badge-item { font-size: 11px; padding: 4px 10px; }
}

/* ============ Dropdown Navigation ============ */
.has-dropdown { position: relative; }
.has-dropdown > a { display: flex; align-items: center; gap: 4px; }
.dropdown {
    display: none; position: absolute; top: 100%; left: 0;
    background: #0d2240; border: 1px solid rgba(201,168,76,0.2);
    border-radius: 8px; padding: 8px 0; min-width: 220px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5); z-index: 1000;
    list-style: none;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
    display: block; padding: 10px 20px; color: rgba(255,255,255,0.8);
    font-size: 0.9rem; transition: all 0.2s; text-decoration: none;
}
.dropdown li a:hover { background: rgba(201,168,76,0.1); color: #c9a84c; }

/* Page hero for sub-pages */
.page-hero {
    padding: 160px 0 80px; text-align: center;
    background: linear-gradient(135deg, #0a1628 0%, #0d2240 50%, #1a2d4a 100%);
    position: relative;
}
.page-hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 1px; background: linear-gradient(90deg, transparent, #c9a84c, transparent);
}
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: 3rem; color: white; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.2rem; max-width: 600px; margin: 0 auto; }
.page-hero .section-tag { display: inline-block; color: #c9a84c; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 16px; }

/* Breadcrumb */
.breadcrumb { padding: 16px 0; background: rgba(10,22,40,0.8); }
.breadcrumb a { color: #c9a84c; text-decoration: none; font-size: 0.85rem; }
.breadcrumb span { color: rgba(255,255,255,0.5); font-size: 0.85rem; }

/* Back to Top */
.back-to-top {
    position: fixed; bottom: 90px; right: 24px; z-index: 999;
    width: 44px; height: 44px;
    background: rgba(201,168,76,0.9); color: #0a0e17;
    border: none; border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; opacity: 0; visibility: hidden;
    transition: all 0.3s; box-shadow: 0 4px 12px rgba(201,168,76,0.3);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: #c9a84c; transform: translateY(-3px); }

/* Cookie Consent */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
    background: #111827; border-top: 1px solid #1e293b;
    padding: 16px 24px; display: flex; align-items: center;
    justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.cookie-banner p { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin: 0; flex: 1; min-width: 200px; }
.cookie-banner a { color: #c9a84c; text-decoration: none; }
.cookie-banner-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept { background: #c9a84c; color: #0a0e17; border: none; padding: 8px 20px; border-radius: 6px; font-size: 0.875rem; font-weight: 600; cursor: pointer; }
.cookie-decline { background: transparent; color: rgba(255,255,255,0.5); border: 1px solid #334155; padding: 8px 20px; border-radius: 6px; font-size: 0.875rem; cursor: pointer; }
@media (max-width: 600px) { .cookie-banner { flex-direction: column; } .cookie-banner-buttons { width: 100%; } .cookie-accept, .cookie-decline { flex: 1; } }

/* ============================================
   PHASE 3-5 ENHANCEMENT STYLES
   MHT Trading — 2026 Overhaul
   ============================================ */

/* ── Phase 3: Touch-Friendly Buttons (min 44px) ── */
.btn-primary, .btn-outline, .btn-whatsapp {
    min-height: 44px;
}
.btn-lg {
    min-height: 52px;
}
@media (max-width: 768px) {
    .btn-primary, .btn-outline, .btn-whatsapp {
        min-height: 48px;
        padding: 12px 20px;
        font-size: 15px;
    }
    .hero-ctas {
        gap: 12px;
    }
    .hero-ctas .btn-lg {
        width: 100%;
        justify-content: center;
    }
    /* Prevent horizontal overflow */
    body { overflow-x: hidden; }
    img { max-width: 100%; height: auto; }
    .nav-cta { display: none; }
}

/* ── Phase 3: Preload critical resources ── */
/* Images: ensure hero bg is prioritized */
.hero-bg-img {
    content-visibility: auto;
}

/* ── Phase 4: Sticky CTA bar (mobile) ── */
.sticky-cta-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 998;
    background: #0a0e17;
    border-top: 1px solid rgba(201,168,76,0.3);
    padding: 10px 16px;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
@media (max-width: 768px) {
    .sticky-cta-bar { display: flex; }
    .whatsapp-float { bottom: 80px; }
    .back-to-top { bottom: 160px; }
}
.sticky-cta-bar .scta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    min-height: 46px;
}
.sticky-cta-bar .scta-quote {
    background: linear-gradient(135deg, #c9a84c, #e5c76b);
    color: #0a0e17;
}
.sticky-cta-bar .scta-wa {
    background: #25D366;
    color: #fff;
}

/* ── Phase 4: Above-fold CTA ribbon ── */
.cta-ribbon {
    background: linear-gradient(135deg, #0f2240, #0d1f3c);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    padding: 10px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    position: relative;
    z-index: 999;
}
.cta-ribbon strong { color: #c9a84c; }
.cta-ribbon a { color: #c9a84c; text-decoration: none; font-weight: 600; }
.cta-ribbon a:hover { text-decoration: underline; }

/* ── Phase 4: "Get Free Quote" floating banner ── */
.quote-nudge {
    display: none;
    position: fixed;
    top: 90px;
    right: 16px;
    z-index: 900;
    background: linear-gradient(135deg, #c9a84c, #e5c76b);
    color: #0a0e17;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(201,168,76,0.4);
    animation: slideInRight 0.5s ease;
    align-items: center;
    gap: 8px;
}
.quote-nudge.active { display: flex; }
@keyframes slideInRight {
    from { transform: translateX(30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
.quote-nudge-close {
    background: none;
    border: none;
    color: #0a0e17;
    font-size: 16px;
    cursor: pointer;
    padding: 0 0 0 8px;
    line-height: 1;
}

/* ── Phase 4: Enhanced Contact Form CTA section ── */
.contact-cta-bar {
    background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.03));
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 14px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin: 40px 0;
}
.contact-cta-bar h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 6px;
}
.contact-cta-bar p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}
.contact-cta-bar .cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* ── Phase 5: Newsletter section ── */
.newsletter-section {
    background: linear-gradient(135deg, #0d1f3c 0%, #0a1628 100%);
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding: 60px 0;
}
.newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.newsletter-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: #fff;
    margin-bottom: 12px;
}
.newsletter-inner h2 span { color: #c9a84c; }
.newsletter-inner p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.7;
}
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.newsletter-form input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}
.newsletter-form input:focus { border-color: #c9a84c; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form button {
    background: linear-gradient(135deg, #c9a84c, #e5c76b);
    color: #0a0e17;
    border: none;
    border-radius: 10px;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    min-height: 48px;
    transition: all 0.2s;
}
.newsletter-form button:hover { opacity: 0.9; transform: translateY(-1px); }
.newsletter-note {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    text-align: center;
    margin-top: 4px;
}
@media (max-width: 768px) {
    .newsletter-inner { grid-template-columns: 1fr; gap: 28px; }
    .contact-cta-bar { flex-direction: column; text-align: center; }
    .contact-cta-bar .cta-actions { justify-content: center; }
}

/* ── Phase 5: Internal linking section ── */
.related-pages {
    padding: 40px 0;
    border-top: 1px solid rgba(30,41,59,0.8);
}
.related-pages h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c9a84c;
    margin-bottom: 20px;
}
.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.related-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(30,41,59,1);
    border-radius: 20px;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
}
.related-link:hover {
    border-color: #c9a84c;
    color: #c9a84c;
    background: rgba(201,168,76,0.06);
}
.related-link i { font-size: 11px; }

/* ── Phase 5: Stats section (standalone) ── */
.stats-highlight {
    background: linear-gradient(135deg, #0f2240, #0a1628);
    padding: 60px 0;
    border-top: 1px solid rgba(201,168,76,0.1);
    border-bottom: 1px solid rgba(201,168,76,0.1);
}
.stats-highlight .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.stats-highlight .stat-box {
    padding: 24px 16px;
}
.stats-highlight .stat-val {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #c9a84c;
    line-height: 1;
    margin-bottom: 8px;
}
.stats-highlight .stat-lbl {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
@media (max-width: 768px) {
    .stats-highlight .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ── Additional mobile overflow fixes ── */
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr !important; gap: 28px; }
    .offices-grid { grid-template-columns: 1fr !important; }
    .form-row { grid-template-columns: 1fr !important; }
    .newsletter-inner { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr !important; }
    .section { padding: 50px 0; }
    .container { padding: 0 16px; }
}

/* ── Phase 4: Page-specific above-fold CTA ── */
.page-hero-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}
.page-hero-ctas .btn-primary,
.page-hero-ctas .btn-outline {
    min-height: 48px;
    padding: 13px 28px;
    font-size: 15px;
}

/* ── Exit-Intent Popup ── */
.exit-popup-overlay {
    display: none;
    position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 9999;
    align-items: center; justify-content: center;
}
.exit-popup-overlay.active { display: flex; }
.exit-popup {
    background: #0a0e17; border: 1px solid #1e293b; border-radius: 20px;
    max-width: 560px; width: calc(100% - 40px); padding: 44px 40px 36px;
    position: relative; animation: popIn .3s ease;
}
@keyframes popIn { from { transform: scale(.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.exit-popup-close {
    position: absolute; top: 16px; right: 20px; background: none; border: none;
    color: rgba(255,255,255,.4); font-size: 24px; cursor: pointer; line-height:1;
}
.exit-popup-close:hover { color: #fff; }
.exit-popup-tag {
    display: inline-block; background: rgba(201,168,76,.15); color: #c9a84c;
    border: 1px solid rgba(201,168,76,.3); border-radius: 20px;
    font-size: .78rem; font-weight: 600; padding: 5px 14px; margin-bottom: 16px;
    text-transform: uppercase; letter-spacing: .06em;
}
.exit-popup h2 { color: #fff; font-size: clamp(1.4rem,3vw,2rem); margin-bottom: 12px; }
.exit-popup p { color: rgba(255,255,255,.65); margin-bottom: 24px; line-height: 1.6; }
.exit-popup-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.exit-popup-ctas .btn-gold {
    background: linear-gradient(135deg,#c9a84c,#e5c76b); color: #0a0e17;
    font-weight: 700; padding: 14px 24px; border-radius: 8px; text-decoration: none;
    font-size: .95rem; flex: 1; text-align: center; min-width: 160px;
}
.exit-popup-ctas .btn-ghost {
    background: transparent; color: rgba(255,255,255,.5); padding: 14px 20px;
    border-radius: 8px; text-align: center; cursor: pointer; border: none;
    font-size: .9rem; flex: 1; min-width: 120px;
}
.exit-popup-ctas .btn-ghost:hover { color: #fff; }

/* ── Live Chat Widget ── */
.live-chat-widget {
    position: fixed; bottom: 100px; right: 24px; z-index: 999;
    font-family: inherit;
}
.live-chat-bubble {
    width: 56px; height: 56px; background: #0ea5e9; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: 0 4px 20px rgba(14,165,233,.4);
    transition: transform .2s; position: relative;
}
.live-chat-bubble:hover { transform: scale(1.08); }
.live-chat-bubble i { color: #fff; font-size: 22px; }
.live-chat-badge {
    position: absolute; top: -4px; right: -4px; background: #22c55e;
    color: #fff; font-size: .65rem; font-weight: 700; border-radius: 10px;
    padding: 2px 6px; border: 2px solid #0a0e17;
}
.live-chat-panel {
    display: none; position: absolute; bottom: 68px; right: 0;
    width: 300px; background: #0f172a; border: 1px solid #1e293b;
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.live-chat-panel.open { display: block; animation: popIn .2s ease; }
.live-chat-header {
    background: linear-gradient(135deg,#0ea5e9,#0284c7); padding: 16px 18px; display: flex;
    align-items: center; gap: 10px;
}
.live-chat-avatar {
    width: 36px; height: 36px; background: rgba(255,255,255,.2); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.live-chat-avatar i { color: #fff; font-size: 16px; }
.live-chat-info { flex: 1; }
.live-chat-info strong { color: #fff; font-size: .9rem; display: block; }
.live-chat-status { color: rgba(255,255,255,.8); font-size: .75rem; }
.live-chat-status::before { content: ''; display: inline-block; width: 7px; height: 7px; background: #4ade80; border-radius: 50%; margin-right: 5px; }
.live-chat-body { padding: 18px; }
.live-chat-msg {
    background: #1e293b; border-radius: 12px 12px 12px 0;
    padding: 12px 14px; color: rgba(255,255,255,.85); font-size: .88rem;
    line-height: 1.5; margin-bottom: 14px;
}
.live-chat-options { display: flex; flex-direction: column; gap: 8px; }
.live-chat-opt {
    background: rgba(14,165,233,.1); border: 1px solid rgba(14,165,233,.3);
    color: #0ea5e9; border-radius: 8px; padding: 10px 14px; font-size: .85rem;
    cursor: pointer; text-align: left; text-decoration: none; display: block;
    transition: background .2s;
}
.live-chat-opt:hover { background: rgba(14,165,233,.2); }

/* ── Consultation Booking Section ── */
.consultation-section {
    background: linear-gradient(135deg, #0a0e17 0%, #0d1f3c 100%);
    padding: 80px 0; border-top: 1px solid #1e293b; border-bottom: 1px solid #1e293b;
}
.consultation-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    max-width: 1000px; margin: 0 auto;
}
.consultation-bullets { list-style: none; padding: 0; margin: 0 0 32px; }
.consultation-bullets li {
    color: rgba(255,255,255,.75); font-size: .95rem; padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.06); display: flex; align-items: center; gap: 12px;
}
.consultation-bullets li i { color: #c9a84c; flex-shrink: 0; }
.consult-card {
    background: #111827; border: 1px solid #1e293b; border-radius: 20px; padding: 36px;
    text-align: center;
}
.consult-card .consult-time {
    display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,.1);
    border: 1px solid rgba(201,168,76,.25); border-radius: 20px;
    color: #c9a84c; font-size: .85rem; font-weight: 600; padding: 6px 16px; margin-bottom: 20px;
}
.consult-card h3 { color: #fff; font-size: 1.4rem; margin-bottom: 10px; }
.consult-card p { color: rgba(255,255,255,.55); font-size: .9rem; margin-bottom: 24px; line-height: 1.6; }
.consult-btn {
    display: block; background: linear-gradient(135deg,#25d366,#128c7e);
    color: #fff; font-weight: 700; padding: 16px 24px; border-radius: 10px;
    text-decoration: none; font-size: 1rem; margin-bottom: 12px;
    transition: transform .2s, box-shadow .2s;
}
.consult-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.3); }
.consult-btn i { margin-right: 8px; }
.consult-note { color: rgba(255,255,255,.3); font-size: .8rem; }
@media (max-width: 768px) {
    .consultation-inner { grid-template-columns: 1fr; gap: 32px; }
    .exit-popup { padding: 32px 24px 28px; }
    .live-chat-widget { bottom: 80px; right: 16px; }
    .live-chat-panel { width: 280px; right: -8px; }
}
