/* =====================================================
   SKYLOT CIVILS — COMPLETE STYLESHEET
   Brand: Navy #1B2A4A | Gold #F0B323 | White #FFFFFF
   ===================================================== */

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

:root {
  --navy: #1B2A4A;
  --navy-dark: #111D33;
  --navy-mid: #243660;
  --gold: #F0B323;
  --gold-dark: #C8941A;
  --white: #FFFFFF;
  --off-white: #F7F7F5;
  --gray-light: #F0EFED;
  --gray: #9CA3AF;
  --text: #1F2937;
  --text-muted: #6B7280;
  --border: #E5E7EB;
  --radius: 6px;
  --radius-lg: 10px;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.1);
}

html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: var(--text); background: var(--white); font-size: 16px; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* =====================================================
   UTILITY
   ===================================================== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-alt { background: var(--off-white); }
.section-gold { background: var(--gold); }
.eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.section-dark .eyebrow { color: var(--gold); }
.section-gold .eyebrow { color: var(--navy); }
h1, h2, h3, h4 { line-height: 1.15; }
.section h2 { font-size: clamp(26px, 4vw, 34px); font-weight: 800; letter-spacing: -.02em; margin-bottom: 12px; }
.section-intro { font-size: 16px; color: var(--text-muted); max-width: 540px; margin-bottom: 40px; }
.section-dark .section-intro { color: rgba(255,255,255,.6); }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.text-center .section-intro { margin-left: auto; margin-right: auto; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: var(--radius); font-size: 15px; font-weight: 600; cursor: pointer; transition: all .15s; border: none; white-space: nowrap; }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-dark); }
.btn-secondary { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.3); }
.btn-secondary:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.05); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* =====================================================
   TOP BAR
   ===================================================== */
.top-bar { background: var(--gold); padding: 9px 0; }
.top-bar .container { display: flex; align-items: center; justify-content: space-between; }
.top-bar-left { font-size: 12px; font-weight: 500; color: var(--navy); display: flex; align-items: center; gap: 6px; }
.top-bar-left svg { width: 13px; height: 13px; flex-shrink: 0; }
.top-bar-phone { font-size: 15px; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 6px; }
.top-bar-phone svg { width: 15px; height: 15px; flex-shrink: 0; }

/* =====================================================
   NAVIGATION
   ===================================================== */
.site-nav { background: var(--navy); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 8px rgba(0,0,0,.2); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark { display: flex; flex-direction: column; line-height: 1; }
.logo-skylot { font-size: 24px; font-weight: 900; color: var(--white); letter-spacing: -.02em; }
.logo-civils-wrap { display: flex; align-items: center; gap: 5px; }
.logo-bar { height: 2px; width: 16px; background: var(--gold); }
.logo-civils { font-size: 10px; font-weight: 700; color: var(--gold); letter-spacing: .12em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 4px; padding: 8px 14px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,.8); border-radius: var(--radius); transition: all .15s; cursor: pointer; white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,.08); }
.nav-link svg { width: 14px; height: 14px; transition: transform .2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }
.nav-cta { background: var(--gold); color: var(--navy) !important; border-radius: var(--radius); font-weight: 700 !important; }
.nav-cta:hover { background: var(--gold-dark) !important; }

/* MEGA MENU */
.mega-menu { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%); background: var(--white); border-radius: var(--radius-lg); box-shadow: 0 8px 32px rgba(0,0,0,.15); border: 1px solid var(--border); min-width: 640px; opacity: 0; visibility: hidden; transition: all .2s; pointer-events: none; }
.nav-item:hover .mega-menu { opacity: 1; visibility: visible; pointer-events: all; }
.mega-inner { display: grid; grid-template-columns: repeat(3, 1fr); }
.mega-col { padding: 20px; border-right: 1px solid var(--border); }
.mega-col:last-child { border-right: none; }
.mega-col-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--navy); padding-bottom: 10px; border-bottom: 2px solid var(--gold); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.mega-col-title svg { width: 14px; height: 14px; color: var(--gold); }
.mega-link { display: block; padding: 6px 8px; font-size: 13px; color: var(--text-muted); border-radius: 4px; transition: all .12s; }
.mega-link:hover { background: var(--off-white); color: var(--navy); padding-left: 12px; }
.mega-link.area-main { color: var(--navy); font-weight: 600; }
.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--white); margin: 4px 0; transition: all .2s; }

/* =====================================================
   HERO
   ===================================================== */
.hero { position: relative; overflow: hidden; min-height: 580px; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; background: var(--navy-dark); }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .45; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,29,51,.92) 40%, rgba(17,29,51,.4) 100%); }
.hero-content { position: relative; z-index: 2; padding: 80px 0; max-width: 620px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 6px; background: rgba(240,179,35,.15); border: 1px solid rgba(240,179,35,.35); color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: 3px; margin-bottom: 20px; }
.hero h1 { font-size: clamp(36px, 6vw, 58px); font-weight: 900; color: var(--white); letter-spacing: -.03em; line-height: 1.02; margin-bottom: 18px; }
.hero h1 span { color: var(--gold); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,.7); margin-bottom: 32px; line-height: 1.6; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-actions .btn { white-space: nowrap; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,.6); }
.trust-item svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

/* =====================================================
   STAT STRIP
   ===================================================== */
.stat-strip { background: var(--gold); }
.stat-strip .container { display: flex; flex-wrap: wrap; }
.stat-item { flex: 1; padding: 22px 20px; border-right: 1px solid rgba(0,0,0,.12); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 22px; font-weight: 900; color: var(--navy); letter-spacing: -.02em; }
.stat-label { font-size: 11px; font-weight: 600; color: rgba(27,42,74,.65); text-transform: uppercase; letter-spacing: .06em; margin-top: 2px; }

/* =====================================================
   SERVICE CARDS
   ===================================================== */
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow .2s, transform .2s; }
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-card-img { height: 200px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card-body { padding: 24px; }
.service-card-body h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card-body p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.55; }
.service-card-link { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 600; color: var(--navy); }
.service-card-link svg { width: 13px; height: 13px; transition: transform .15s; }
.service-card:hover .service-card-link svg { transform: translateX(3px); }
.service-card-areas { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.area-pill { font-size: 11px; color: var(--navy); background: var(--off-white); border: 1px solid var(--border); border-radius: 3px; padding: 3px 9px; transition: all .12s; }
.area-pill:hover { background: var(--navy); color: var(--white); }

/* =====================================================
   WHY CHOOSE
   ===================================================== */
.why-item { display: flex; gap: 16px; align-items: flex-start; padding: 24px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.why-icon { width: 42px; height: 42px; background: rgba(240,179,35,.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-icon svg { width: 20px; height: 20px; color: var(--gold-dark); }
.why-item h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.why-item p { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* =====================================================
   PHOTO GRID
   ===================================================== */
.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 200px 200px; gap: 6px; }
.photo-grid-item { overflow: hidden; border-radius: 4px; }
.photo-grid-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.photo-grid-item:hover img { transform: scale(1.06); }
.photo-grid-item.span-2 { grid-column: span 2; }
.photo-grid-item.span-row { grid-row: span 2; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testi-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 28px; }
.testi-quote-mark { font-size: 48px; color: var(--gold); line-height: .7; margin-bottom: 12px; font-family: Georgia, serif; }
.testi-text { font-size: 15px; color: rgba(255,255,255,.82); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.testi-author { font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: .06em; text-transform: uppercase; }

/* =====================================================
   COVERAGE TAGS
   ===================================================== */
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.area-tag { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 7px 16px; font-size: 13px; color: var(--text); transition: all .15s; }
.area-tag:hover { border-color: var(--navy); color: var(--navy); }
.area-tag.primary { background: var(--navy); color: var(--white); border-color: var(--navy); font-weight: 600; }

/* =====================================================
   FAQ
   ===================================================== */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 6px; background: var(--white); }
.faq-question { padding: 17px 20px; font-size: 15px; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; user-select: none; }
.faq-question svg { width: 18px; height: 18px; color: var(--gray); transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-item.open .faq-question { color: var(--navy); border-bottom: 1px solid var(--border); }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faq-item.open .faq-answer { max-height: 200px; padding: 16px 20px; }
.faq-answer p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* =====================================================
   CTA BAND
   ===================================================== */
.cta-band { background: var(--navy-dark); padding: 64px 0; text-align: left !important; }
.cta-band .container { text-align: left !important; }
.cta-band h2 { font-size: clamp(26px, 4vw, 36px); font-weight: 900; color: var(--white); letter-spacing: -.02em; margin-bottom: 10px; text-align: left !important; }
.cta-band h2 span { color: var(--gold); }
.cta-band p { font-size: 16px; color: rgba(255,255,255,.55); margin-bottom: 20px; text-align: left !important; }
.cta-phone-big { font-size: clamp(32px, 5vw, 48px); font-weight: 900; color: var(--gold); letter-spacing: -.02em; display: block; margin-bottom: 24px; text-align: left !important; }
.cta-actions { display: flex; align-items: center; justify-content: flex-start !important; gap: 14px; flex-wrap: wrap; }
.cta-address { font-size: 12px; color: rgba(255,255,255,.25); margin-top: 20px; text-align: left !important; }

/* =====================================================
   CONTACT FORM
   ===================================================== */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 15px; color: var(--text); background: var(--white); transition: border-color .15s; font-family: inherit; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success { display: none; background: #ECFDF5; border: 1px solid #6EE7B7; border-radius: var(--radius); padding: 16px 20px; color: #065F46; font-size: 14px; font-weight: 500; }

/* =====================================================
   CONTACT INFO
   ===================================================== */
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.contact-info-icon { width: 40px; height: 40px; background: rgba(240,179,35,.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 18px; height: 18px; color: var(--gold-dark); }
.contact-info-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 3px; }
.contact-info-value { font-size: 15px; font-weight: 600; color: var(--navy); }
.contact-info-value a { color: var(--navy); }
.contact-info-value a:hover { color: var(--gold-dark); }

/* =====================================================
   PAGE HERO (service/area pages)
   ===================================================== */
.page-hero { background: var(--navy); padding: 56px 0 52px; position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .25; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,29,51,.95) 50%, rgba(17,29,51,.7)); }
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,.45); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,.45); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb svg { width: 12px; height: 12px; }
.page-hero h1 { font-size: clamp(28px, 5vw, 46px); font-weight: 900; color: var(--white); letter-spacing: -.02em; margin-bottom: 14px; line-height: 1.05; }
.page-hero h1 span { color: var(--gold); }
.page-hero-sub { font-size: 16px; color: rgba(255,255,255,.65); max-width: 500px; margin-bottom: 28px; }
.page-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.page-hero-actions .btn { white-space: nowrap; }
.page-hero-trust { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px; }

/* =====================================================
   SERVICE PAGE CONTENT
   ===================================================== */
.content-with-sidebar { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.content-body h2 { font-size: 24px; font-weight: 700; color: var(--navy); margin: 32px 0 12px; letter-spacing: -.01em; }
.content-body h2:first-child { margin-top: 0; }
.content-body h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin: 24px 0 8px; }
.content-body p { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 14px; }
.content-body ul { margin: 12px 0 16px 0; padding: 0; list-style: none; }
.content-body ul li { font-size: 15px; color: var(--text); padding: 6px 0 6px 22px; position: relative; border-bottom: 1px solid var(--border); }
.content-body ul li:last-child { border-bottom: none; }
.content-body ul li::before { content: '→'; position: absolute; left: 0; color: var(--gold-dark); font-size: 12px; top: 8px; }
.sidebar { position: sticky; top: 88px; }
.sidebar-card { background: var(--navy); border-radius: var(--radius-lg); padding: 28px; color: var(--white); margin-bottom: 16px; text-align: center; }
.sidebar-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.sidebar-card p { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.sidebar-card .btn { justify-content: center; }
.sidebar-phone { font-size: 22px; font-weight: 900; color: var(--gold); display: flex; align-items: center; gap: 8px; margin-bottom: 14px; white-space: nowrap; }
.sidebar-phone svg { width: 18px; height: 18px; flex-shrink: 0; }
.sidebar-card .btn { width: 100%; justify-content: center; margin-top: 8px; }
.sidebar-areas { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; }
.sidebar-areas h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--navy); margin-bottom: 12px; }
.sidebar-area-link { display: block; padding: 7px 10px; font-size: 13px; color: var(--text-muted); border-radius: 4px; transition: all .12s; }
.sidebar-area-link:hover { background: var(--white); color: var(--navy); padding-left: 14px; }
.sidebar-area-link.current { color: var(--navy); font-weight: 600; background: var(--white); }

/* =====================================================
   FOOTER
   ===================================================== */
.footer { background: var(--navy-dark); color: var(--white); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; margin-top: 14px; max-width: 260px; }
.footer-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gold); margin-bottom: 16px; }
.footer-link { display: block; font-size: 13px; color: rgba(255,255,255,.5); padding: 4px 0; transition: color .15s; }
.footer-link:hover { color: var(--white); }
.footer-contact-item { font-size: 13px; color: rgba(255,255,255,.5); padding: 4px 0; }
.footer-contact-item a { color: rgba(255,255,255,.5); }
.footer-contact-item a:hover { color: var(--white); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 34px; height: 34px; background: rgba(255,255,255,.08); border-radius: 6px; display: flex; align-items: center; justify-content: center; transition: background .15s; }
.footer-social a:hover { background: var(--gold); }
.footer-social svg { width: 16px; height: 16px; color: rgba(255,255,255,.6); }
.footer-social a:hover svg { color: var(--navy); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,.3); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.6); }

/* =====================================================
   MOBILE
   ===================================================== */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .mega-menu { min-width: 320px; left: 0; transform: none; }
  .mega-inner { grid-template-columns: 1fr; }
  .mega-col { border-right: none; border-bottom: 1px solid var(--border); }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .photo-grid-item.span-row { grid-row: auto; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-links.mobile-open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy); padding: 16px; gap: 4px; }
  .mega-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: rgba(255,255,255,.05); min-width: auto; border-radius: 0; display: none; }
  .nav-item.mobile-open .mega-menu { display: block; }
  .mega-col-title { color: var(--white); }
  .mega-link { color: rgba(255,255,255,.6); }
  .mega-link:hover { background: rgba(255,255,255,.08); color: var(--white); }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .stat-strip .container { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; width: 50%; border-right: none; border-bottom: 1px solid rgba(0,0,0,.1); padding: 20px 12px; }
  .hero { min-height: 480px; }
  .top-bar-left { display: none; }
  .cta-actions { flex-direction: column; align-items: flex-start; }
}

/* Prevent SVG icons inside buttons from growing */
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn-primary svg, .btn-secondary svg, .btn-navy svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ===================================================
   WHATSAPP FLOAT BUTTON
   =================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4), 0 2px 6px rgba(0,0,0,.15);
  transition: transform .2s, box-shadow .2s;
  color: #fff;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,.5), 0 3px 8px rgba(0,0,0,.2);
}
.whatsapp-float svg { flex-shrink: 0; }

/* ===================================================
   MEGA MENU — SCROLLABLE FOR 17 AREAS
   =================================================== */
.mega-col { padding: 16px; border-right: 1px solid var(--border); max-height: 480px; overflow-y: auto; }
.mega-col:last-child { border-right: none; }
.mega-link { display: block; padding: 5px 8px; font-size: 13px; color: var(--text-muted); border-radius: 4px; transition: all .12s; }
.mega-link:hover { background: var(--off-white); color: var(--navy); padding-left: 12px; }
.mega-link.area-main { color: var(--navy); font-weight: 600; margin-bottom: 4px; }

/* ===================================================
   HERO TEXT — FORCE LEFT ALIGN
   =================================================== */
.hero-content,
.hero-content h1,
.hero-content p,
.hero-content .hero-eyebrow,
.hero-content .hero-actions,
.hero-content .hero-trust { text-align: left !important; justify-content: flex-start !important; }

/* ===================================================
   PAGE HERO — BRIGHTER BACKGROUND IMAGE
   =================================================== */
.page-hero-bg img { opacity: .35; }
.page-hero-overlay { background: linear-gradient(90deg, rgba(17,29,51,.92) 45%, rgba(17,29,51,.55) 100%); }

/* =====================================================
   MOBILE NAV — FULL REDESIGN
   Fix: hamburger visibility, left-align, 2-col areas
   ===================================================== */

/* Hamburger button — must be white on dark nav */
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #FFFFFF;
  line-height: 0;
}
.nav-mobile-toggle svg {
  width: 26px;
  height: 26px;
  color: #FFFFFF;
  stroke: #FFFFFF;
  display: block;
}

@media (max-width: 768px) {
  .nav-mobile-toggle { display: flex; align-items: center; justify-content: center; }

  /* Slide-down full-screen nav panel */
  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #111D33;
    overflow-y: auto;
    flex-direction: column;
    padding: 0;
    gap: 0;
    z-index: 997;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.mobile-open { display: flex; }

  /* Each nav row */
  .nav-item {
    position: static;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  /* Nav links — left aligned, big tap targets */
  .nav-link {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,.92) !important;
    text-align: left;
    border-radius: 0;
    background: transparent !important;
    width: 100%;
  }
  .nav-link svg { flex-shrink: 0; margin-left: 8px; }

  /* Call button in mobile nav */
  .nav-link.nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    margin: 16px 24px;
    border-radius: 6px;
    justify-content: center;
    width: calc(100% - 48px);
  }

  /* Services mega menu — full width below the Services row */
  .mega-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    min-width: 100% !important;
    width: 100% !important;
    display: none !important;
    background: rgba(0,0,0,.3) !important;
  }
  .nav-item.mobile-open .mega-menu { display: block !important; }

  /* Stack the 3 service columns vertically */
  .mega-inner { grid-template-columns: 1fr; }

  /* Each service section */
  .mega-col {
    padding: 16px 24px 20px;
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,.08);
    max-height: none !important;
    overflow: visible !important;
  }

  /* Service heading (GRAB HIRE etc) */
  .mega-col-title {
    color: var(--gold) !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(240,179,35,.4);
    display: block;
  }

  /* 2-column grid for area links — halves the scroll height */
  .mega-col { display: block; }
  .mega-col .mega-link {
    display: inline-block;
    width: 50%;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,.82) !important;
    vertical-align: top;
    box-sizing: border-box;
  }
  .mega-col .mega-link:hover { background: rgba(255,255,255,.06); color: #fff !important; }
  .mega-col .mega-link.area-main {
    display: block;
    width: 100%;
    color: var(--gold) !important;
    font-weight: 600;
    margin-bottom: 4px;
    padding: 6px 10px;
  }

  /* Hide the desktop-only nav elements */
  .nav-links > .nav-item:last-child { border-bottom: none; padding-bottom: 24px; }
}

/* =====================================================
   MOBILE NAV — DEFINITIVE OVERRIDE
   Fixes z-index conflict causing panel to hide behind hero
   ===================================================== */
@media (max-width: 768px) {

  /* Panel: forced fixed, full screen, on top of everything */
  .nav-links.mobile-open {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 68px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: calc(100vh - 68px) !important;
    background: #111D33 !important;
    overflow-y: auto !important;
    z-index: 9999 !important;
    padding: 0 !important;
    gap: 0 !important;
    -webkit-overflow-scrolling: touch;
  }

  /* Make sure nav items are visible and left-aligned */
  .nav-links.mobile-open .nav-item {
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
    position: static !important;
    width: 100% !important;
  }

  .nav-links.mobile-open .nav-link {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 18px 24px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: rgba(255,255,255,.92) !important;
    text-align: left !important;
    border-radius: 0 !important;
    background: transparent !important;
    width: 100% !important;
  }

  /* Gold call button */
  .nav-links.mobile-open .nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    margin: 16px 24px !important;
    border-radius: 6px !important;
    justify-content: center !important;
    width: calc(100% - 48px) !important;
    font-weight: 700 !important;
  }

  /* Services mega panel */
  .nav-links.mobile-open .mega-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    min-width: 100% !important;
    width: 100% !important;
    display: none !important;
    background: rgba(0,0,0,.3) !important;
    z-index: auto !important;
  }

  .nav-links.mobile-open .nav-item.mobile-open .mega-menu {
    display: block !important;
  }

  /* Service sections stacked */
  .nav-links.mobile-open .mega-inner {
    display: block !important;
    grid-template-columns: unset !important;
  }

  .nav-links.mobile-open .mega-col {
    padding: 16px 24px 20px !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
    max-height: none !important;
    overflow: visible !important;
    column-count: unset !important;
    display: block !important;
  }

  /* Service title (GRAB HIRE, TIPPER HIRE etc) */
  .nav-links.mobile-open .mega-col-title {
    display: block !important;
    color: var(--gold) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .1em !important;
    text-transform: uppercase !important;
    margin-bottom: 12px !important;
    padding-bottom: 8px !important;
    border-bottom: 1px solid rgba(240,179,35,.3) !important;
  }

  /* 2-column area links grid */
  .nav-links.mobile-open .mega-col-links {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
  }

  .nav-links.mobile-open .mega-link {
    display: block !important;
    padding: 9px 10px !important;
    font-size: 14px !important;
    color: rgba(255,255,255,.82) !important;
    border-radius: 4px !important;
  }

  .nav-links.mobile-open .mega-link.area-main {
    grid-column: 1 / -1 !important;
    color: var(--gold) !important;
    font-weight: 600 !important;
    margin-bottom: 6px !important;
    padding: 6px 10px !important;
  }
}

/* =====================================================
   HAMBURGER ICON CSS SWAP — no JS innerHTML needed
   ===================================================== */
.nav-mobile-toggle .icon-menu  { display: block; }
.nav-mobile-toggle .icon-close { display: none;  }
.nav-mobile-toggle.is-open .icon-menu  { display: none;  }
.nav-mobile-toggle.is-open .icon-close { display: block; }
.nav-mobile-toggle svg { pointer-events: none; }

/* =====================================================
   MOBILE NAV GAP FIX
   Switch from position:fixed (gap with top bar) to
   position:absolute;top:100% inside sticky nav
   Panel snaps flush to nav bar bottom always
   ===================================================== */
@media (max-width: 768px) {

  /* Sticky nav must be relative for absolute child */
  .site-nav { overflow: visible !important; }

  .nav-links.mobile-open {
    position: absolute !important;
    top: 100% !important;        /* flush below nav bar — no gap */
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    height: 100vh !important;    /* fill screen from nav bottom */
    min-height: unset !important;
    max-height: unset !important;
    z-index: 9999 !important;
    background: #111D33 !important;
    overflow-y: auto !important;
  }
}

/* Service card areas — all 17 pills wrap cleanly */
.service-card-areas { gap: 5px; margin-top: 12px; padding-top: 12px; }
.area-pill { font-size: 11px; padding: 3px 8px; }

/* Why-choose cards — stack icon above text on mobile */
@media (max-width: 768px) {
  .why-item {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
  .why-icon { flex-shrink: 0; }
}
