@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600&display=swap');

/* ═══ DESIGN: Lively, energetic, orange-fire + deep blue ═══════════════════
   Primary:  #FF6B35  (fire orange — energy, urgency, action)
   Dark:     #1B2A4A  (deep navy — trust, professionalism)
   Accent:   #FFD23F  (golden yellow — warmth, highlight)
   Light:    #F8F9FC  (off-white surface)
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  --fire:   #FF6B35;
  --fire-d: #E55A25;
  --fire-l: #FFF0EB;
  --navy:   #1B2A4A;
  --navy-m: #243555;
  --navy-l: #2E4270;
  --gold:   #FFD23F;
  --white:  #ffffff;
  --light:  #F8F9FC;
  --muted:  #64748B;
  --text:   #1A202C;
  --border: #E2E8F0;
  --wa:     #25D366;
  --radius: 6px;
  --shadow: 0 4px 20px rgba(27,42,74,0.1);
  --shadow-lg: 0 12px 40px rgba(27,42,74,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: var(--text); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; font-size: 16px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; object-fit: cover; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 88px 0; }
.section--light { background: var(--light); }
.section--navy { background: var(--navy); }
.section--fire { background: var(--fire); }

/* ── TYPE ── */
h1,h2,h3,h4 { font-family: 'Montserrat', sans-serif; line-height: 1.2; color: var(--navy); font-weight: 800; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.15rem; }
p { color: var(--muted); line-height: 1.8; }
.eyebrow { display: inline-block; font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fire); margin-bottom: 10px; background: var(--fire-l); padding: 4px 12px; border-radius: 20px; }
.eyebrow--white { background: rgba(255,255,255,0.15); color: #fff; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 9px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.03em; cursor: pointer; transition: all 0.2s; border: none; text-transform: uppercase; white-space: nowrap; border-radius: var(--radius); }
.btn svg { width: 17px; height: 17px; fill: currentColor; flex-shrink: 0; }
.btn--fire  { background: var(--fire); color: #fff; padding: 14px 30px; }
.btn--fire:hover  { background: var(--fire-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,53,0.35); }
.btn--navy  { background: var(--navy); color: #fff; padding: 14px 30px; }
.btn--navy:hover  { background: var(--navy-m); transform: translateY(-2px); }
.btn--wa    { background: var(--wa); color: #fff; padding: 14px 26px; }
.btn--wa:hover    { background: #1DB954; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: #fff; padding: 13px 28px; border: 2px solid rgba(255,255,255,0.5); }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn--outline-fire { background: transparent; color: var(--fire); padding: 12px 26px; border: 2px solid var(--fire); }
.btn--outline-fire:hover { background: var(--fire); color: #fff; }
.btn--lg { padding: 17px 36px; font-size: 0.9rem; }

/* ── TOPBAR ── */
.topbar { background: var(--navy); padding: 9px 0; font-size: 0.79rem; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar a, .topbar span { color: #94A3B8; font-family: 'Open Sans', sans-serif; }
.topbar a:hover { color: #fff; }
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-right { display: flex; align-items: center; gap: 14px; }
.live-pill { display: flex; align-items: center; gap: 7px; color: #4ADE80; font-weight: 700; font-size: 0.76rem; font-family: 'Montserrat', sans-serif; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ADE80; animation: blink 1.8s infinite; flex-shrink: 0; }
@keyframes blink { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.4; transform:scale(1.5); } }

/* ── NAV WITH DROPDOWNS ── */
.site-nav { background: #fff; position: sticky; top: 0; z-index: 500; box-shadow: 0 2px 20px rgba(0,0,0,0.08); border-bottom: 3px solid var(--fire); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 32px; max-width: 1200px; margin: 0 auto; height: 72px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 46px; height: 46px; background: linear-gradient(135deg, var(--fire), var(--fire-d)); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 12px rgba(255,107,53,0.3); }
.logo-icon svg { width: 26px; height: 26px; fill: #fff; }
.logo-name { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.25rem; color: var(--navy); line-height: 1.1; letter-spacing: -0.01em; }
.logo-tag { font-family: 'Open Sans', sans-serif; font-size: 0.62rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }
.nav-menu { display: flex; gap: 0; list-style: none; align-items: center; }
.nav-item { position: relative; }
.nav-item > a { font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 600; color: var(--text); padding: 8px 14px; display: flex; align-items: center; gap: 4px; transition: color 0.18s; height: 72px; letter-spacing: 0.02em; }
.nav-item > a:hover, .nav-item:hover > a { color: var(--fire); }
.nav-item > a .chevron { width: 12px; height: 12px; fill: currentColor; transition: transform 0.2s; }
.nav-item:hover > a .chevron { transform: rotate(180deg); }

/* DROPDOWN */
.dropdown { position: absolute; top: 100%; left: 0; background: #fff; min-width: 240px; box-shadow: 0 8px 32px rgba(0,0,0,0.12); border-top: 3px solid var(--fire); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all 0.22s; z-index: 100; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 11px 20px; font-family: 'Open Sans', sans-serif; font-size: 0.84rem; color: var(--text); border-bottom: 1px solid var(--border); transition: all 0.15s; font-weight: 500; }
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--fire-l); color: var(--fire); padding-left: 26px; }
.dropdown a::before { content: '→'; color: var(--fire); margin-right: 8px; font-size: 0.75rem; opacity: 0; transition: opacity 0.15s; }
.dropdown a:hover::before { opacity: 1; }
.nav-cta  { background: var(--fire) !important; color: #fff !important; padding: 9px 18px !important; border-radius: var(--radius) !important; margin-left: 8px; height: auto !important; font-weight: 700 !important; }
.nav-cta:hover  { background: var(--fire-d) !important; }
.nav-wa   { background: var(--wa) !important; color: #fff !important; padding: 9px 14px !important; border-radius: var(--radius) !important; margin-left: 4px; height: auto !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: all 0.2s; }

/* ── EMERGENCY BAR ── */
.embar { background: linear-gradient(90deg, var(--navy), var(--navy-m)); padding: 12px 0; }
.embar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.embar p { color: #CBD5E1; font-size: 0.84rem; font-family: 'Open Sans', sans-serif; }
.embar a { color: var(--gold); font-weight: 700; }
.embar-cta { background: var(--fire); color: #fff; font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 700; padding: 8px 18px; border-radius: var(--radius); white-space: nowrap; letter-spacing: 0.04em; text-transform: uppercase; transition: background 0.18s; }
.embar-cta:hover { background: var(--fire-d); }

/* ── HERO ── */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; background: var(--navy); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(27,42,74,0.97) 55%, rgba(255,107,53,0.15) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,107,53,0.15); border: 1px solid rgba(255,107,53,0.4); color: #FFA07A; font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 7px 16px; border-radius: 20px; margin-bottom: 24px; }
.hero-badge::before { content: ''; width: 8px; height: 8px; background: var(--fire); border-radius: 50%; animation: blink 1.8s infinite; }
.hero h1 { color: #fff; margin-bottom: 14px; line-height: 1.1; }
.hero h1 .highlight { color: var(--fire); display: inline; }
.hero h1 .accent { color: var(--gold); }
.hero-sub { font-size: 1.1rem; color: #94A3B8; margin-bottom: 36px; font-weight: 300; line-height: 1.75; max-width: 580px; }
.hero-sub strong { color: #fff; font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 52px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); }
.htrust { display: flex; align-items: center; gap: 10px; }
.htrust-icon { width: 36px; height: 36px; background: rgba(255,107,53,0.15); border: 1px solid rgba(255,107,53,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.htrust-icon svg { width: 16px; height: 16px; fill: var(--fire); }
.htrust-text { font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 700; color: #CBD5E1; line-height: 1.3; }

/* ── TRUST STRIP ── */
.trust-strip { background: linear-gradient(90deg, var(--fire), var(--fire-d)); padding: 18px 0; }
.trust-strip .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.trust-chip { display: flex; align-items: center; gap: 9px; color: #fff; font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.02em; }
.trust-chip svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.8); flex-shrink: 0; }

/* ── STATS ── */
.stats-bar { background: var(--navy); padding: 0; }
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-cell { text-align: center; padding: 36px 16px; border-right: 1px solid rgba(255,255,255,0.07); transition: background 0.2s; }
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: rgba(255,107,53,0.08); }
.stat-n { font-family: 'Montserrat', sans-serif; font-size: 3rem; font-weight: 900; color: #fff; line-height: 1; }
.stat-n span { color: var(--fire); }
.stat-l { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700; color: #475569; text-transform: uppercase; letter-spacing: 0.12em; margin-top: 7px; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-imgwrap { position: relative; }
.about-main-img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--radius); display: block; }
.about-inset { position: absolute; bottom: -28px; right: -28px; width: 200px; height: 160px; object-fit: cover; border-radius: var(--radius); border: 5px solid #fff; box-shadow: var(--shadow-lg); }
.about-ribbon { position: absolute; top: 20px; left: -8px; background: var(--fire); color: #fff; font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 700; padding: 8px 18px 8px 20px; letter-spacing: 0.05em; text-transform: uppercase; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 8px 50%); }
.about-text h2 { margin-bottom: 16px; }
.about-text > p { font-size: 0.95rem; margin-bottom: 14px; }
.check-list { list-style: none; margin: 20px 0 30px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--border); font-family: 'Open Sans', sans-serif; font-size: 0.9rem; color: var(--muted); }
.check-list li span { flex-shrink: 0; width: 20px; height: 20px; background: var(--fire); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.check-list li span svg { width: 12px; height: 12px; fill: #fff; }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── SERVICE CARDS ── */
.services-intro { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.services-intro h2 { margin-top: 10px; margin-bottom: 14px; }
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.svc-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all 0.25s; border: 1px solid var(--border); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--fire); }
.svc-card-img { height: 200px; overflow: hidden; position: relative; }
.svc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; display: block; }
.svc-card:hover .svc-card-img img { transform: scale(1.07); }
.svc-card-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--navy), var(--navy-m)); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; }
.svc-card-img-placeholder svg { width: 48px; height: 48px; fill: rgba(255,107,53,0.4); }
.svc-badge { position: absolute; top: 12px; left: 12px; background: var(--fire); color: #fff; font-family: 'Montserrat', sans-serif; font-size: 0.65rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.05em; }
.svc-body { padding: 22px; }
.svc-body h3 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; font-weight: 700; }
.svc-body p { font-size: 0.84rem; line-height: 1.65; margin-bottom: 16px; }
.svc-cta { display: inline-flex; align-items: center; gap: 6px; font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 700; color: var(--fire); text-transform: uppercase; letter-spacing: 0.06em; transition: gap 0.18s; }
.svc-cta::after { content: '→'; }
.svc-cta:hover { gap: 10px; }
.svc-card-emerg { background: linear-gradient(135deg, var(--fire), var(--fire-d)); border-color: var(--fire-d); }
.svc-card-emerg .svc-body h3 { color: #fff; }
.svc-card-emerg .svc-body p { color: rgba(255,255,255,0.85); }
.svc-card-emerg .svc-cta { color: rgba(255,255,255,0.9); }
.svc-card-emerg:hover { transform: translateY(-6px); border-color: var(--fire-d); }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-l) 100%); padding: 64px 0; position: relative; overflow: hidden; }
.cta-banner::before { content:''; position:absolute; right:-100px; top:-100px; width:400px; height:400px; border-radius:50%; background:rgba(255,107,53,0.07); pointer-events:none; }
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; font-size: clamp(1.6rem,3vw,2.4rem); margin-bottom: 6px; }
.cta-banner p { color: #94A3B8; font-size: 0.95rem; max-width: 480px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ── GALLERY ── */
.gallery-section { background: var(--navy); padding: 80px 0 0; }
.gallery-intro { padding-bottom: 40px; }
.gallery-intro h2 { color: #fff; margin-top: 10px; }
.gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 280px 280px; gap: 4px; }
.gal-item { overflow: hidden; position: relative; cursor: pointer; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; display: block; }
.gal-item:hover img { transform: scale(1.06); }
.gal-item--tall { grid-row: span 2; }
.gal-cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 16px 14px; background: linear-gradient(transparent, rgba(27,42,74,0.88)); color: #fff; font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.gal-empty { background: linear-gradient(135deg, var(--navy-m), var(--navy-l)); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; }
.gal-empty svg { width: 44px; height: 44px; fill: rgba(255,107,53,0.3); }
.gal-empty span { color: rgba(255,255,255,0.25); font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; text-align: center; padding: 0 16px; }

/* ── REVIEWS ── */
.reviews-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 16px; }
.rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.rev-card { background: #fff; border-radius: var(--radius); padding: 28px; border: 1px solid var(--border); box-shadow: var(--shadow); transition: all 0.2s; position: relative; }
.rev-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--fire); }
.rev-card::before { content:''; position:absolute; top:0; left:0; width:4px; height:100%; background:var(--fire); border-radius: var(--radius) 0 0 var(--radius); opacity:0; transition: opacity 0.2s; }
.rev-card:hover::before { opacity:1; }
.rev-stars { color: #F59E0B; font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.rev-text { font-family: 'Open Sans', sans-serif; font-style: italic; font-size: 0.9rem; color: var(--muted); line-height: 1.75; margin-bottom: 18px; }
.rev-author { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--navy); }
.rev-location { font-family: 'Open Sans', sans-serif; font-size: 0.73rem; color: var(--muted); margin-top: 2px; }
.rev-source { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700; color: #4285f4; margin-top: 12px; }
.google-rating { display: flex; align-items: center; gap: 12px; background: var(--light); border-radius: var(--radius); padding: 14px 20px; margin-bottom: 36px; border: 1px solid var(--border); }
.google-score { font-family: 'Montserrat', sans-serif; font-size: 2.6rem; font-weight: 900; color: var(--navy); line-height: 1; }
.google-detail { font-family: 'Open Sans', sans-serif; font-size: 0.8rem; color: var(--muted); }
.google-detail strong { font-family: 'Montserrat', sans-serif; color: var(--navy); font-size: 0.85rem; display: block; }

/* ── AREAS ── */
.areas-section { background: var(--navy); }
.areas-intro h2 { color: #fff; margin-top: 10px; margin-bottom: 8px; }
.areas-intro p { color: #94A3B8; margin-bottom: 40px; }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(185px,1fr)); gap: 12px; }
.area-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 16px 18px; font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 600; color: #94A3B8; display: flex; align-items: center; justify-content: space-between; transition: all 0.2s; cursor: pointer; }
.area-card:hover { background: rgba(255,107,53,0.15); border-color: rgba(255,107,53,0.4); color: #fff; }
.area-card .arr { font-size: 0.8rem; color: var(--fire); opacity: 0; transition: opacity 0.2s; }
.area-card:hover .arr { opacity: 1; }
.area-note { margin-top: 24px; font-family: 'Open Sans', sans-serif; font-size: 0.84rem; color: #475569; }
.area-note a { color: var(--fire); font-weight: 700; }

/* ── FAQ ── */
.faq-wrap { max-width: 760px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; cursor: pointer; font-family: 'Montserrat', sans-serif; font-size: 0.97rem; font-weight: 700; color: var(--navy); gap: 16px; user-select: none; }
.faq-icon { width: 32px; height: 32px; min-width: 32px; border-radius: 50%; background: var(--fire-l); border: 2px solid var(--fire); display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.faq-icon svg { width: 14px; height: 14px; fill: var(--fire); transition: transform 0.2s; }
.faq-q.open .faq-icon { background: var(--fire); }
.faq-q.open .faq-icon svg { transform: rotate(180deg); fill: #fff; }
.faq-a { font-family: 'Open Sans', sans-serif; font-size: 0.92rem; color: var(--muted); padding-bottom: 22px; line-height: 1.8; display: none; }
.faq-a.open { display: block; }

/* ── CONTACT ── */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; }
.contact-left { background: linear-gradient(160deg, var(--navy), var(--navy-l)); padding: 72px 52px; }
.contact-left h2 { color: #fff; margin-bottom: 14px; }
.contact-left > p { color: #94A3B8; margin-bottom: 40px; font-size: 0.95rem; font-weight: 300; }
.cm { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.cm:last-of-type { border-bottom: none; }
.cm-icon { width: 44px; height: 44px; min-width: 44px; background: rgba(255,107,53,0.15); border: 1px solid rgba(255,107,53,0.3); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.cm-icon svg { width: 19px; height: 19px; fill: var(--fire); }
.cm-label { font-family: 'Montserrat', sans-serif; font-size: 0.65rem; font-weight: 700; color: #475569; text-transform: uppercase; letter-spacing: 0.1em; }
.cm-value { font-family: 'Montserrat', sans-serif; font-size: 0.95rem; font-weight: 700; color: #fff; }
.cm-value a { color: #93C5FD; }
.contact-right { background: var(--light); padding: 72px 52px; }
.contact-right h3 { font-family: 'Montserrat', sans-serif; font-size: 1.7rem; color: var(--navy); margin-bottom: 28px; font-weight: 800; }
.fgrp { margin-bottom: 14px; }
.fgrp label { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.65rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 5px; }
.fgrp input, .fgrp select, .fgrp textarea { width: 100%; padding: 11px 14px; border: 2px solid var(--border); border-radius: var(--radius); background: #fff; font-family: 'Open Sans', sans-serif; font-size: 0.88rem; color: var(--text); transition: border 0.18s; }
.fgrp input:focus, .fgrp select:focus, .fgrp textarea:focus { outline: none; border-color: var(--fire); }
.fgrp textarea { min-height: 90px; resize: vertical; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fsub { width: 100%; background: var(--fire); color: #fff; border: none; padding: 14px; border-radius: var(--radius); font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 700; cursor: pointer; letter-spacing: 0.05em; text-transform: uppercase; transition: background 0.18s; }
.fsub:hover { background: var(--fire-d); }
.form-ok { background: #d1fae5; border: 2px solid #059669; color: #065f46; padding: 20px; border-radius: var(--radius); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem; text-align: center; }
.map-wrap iframe { width: 100%; height: 300px; border: none; display: block; }

/* ── INNER PAGE (service/suburb) ── */
.page-hero { background: linear-gradient(105deg, var(--navy) 0%, var(--navy-l) 100%); padding: 60px 0 52px; position: relative; overflow: hidden; }
.page-hero::after { content:''; position:absolute; right:-80px; top:-80px; width:400px; height:400px; border-radius:50%; background:rgba(255,107,53,0.07); pointer-events:none; }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 14px; position: relative; z-index: 1; }
.page-hero p { color: #94A3B8; font-size: 1.05rem; max-width: 620px; position: relative; z-index: 1; font-weight: 300; }
.page-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; position: relative; z-index: 1; }
.breadcrumb { background: var(--light); padding: 11px 0; border-bottom: 1px solid var(--border); }
.breadcrumb ol { list-style: none; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; font-family: 'Open Sans', sans-serif; font-size: 0.8rem; }
.breadcrumb ol li { color: var(--muted); }
.breadcrumb ol li a { color: var(--fire); font-weight: 600; }
.breadcrumb ol li+li::before { content: '›'; margin-right: 8px; color: var(--border); }
.content-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; padding: 60px 0; }
.content-body h2 { font-size: 1.6rem; color: var(--navy); margin: 28px 0 10px; }
.content-body h2:first-child { margin-top: 0; }
.content-body h3 { font-size: 1.05rem; color: var(--navy); margin: 22px 0 8px; }
.content-body p { font-size: 0.95rem; margin-bottom: 16px; }
.content-body ul { list-style: none; margin: 10px 0 18px; }
.content-body ul li { padding: 8px 0 8px 20px; position: relative; font-family: 'Open Sans', sans-serif; font-size: 0.93rem; color: var(--muted); border-bottom: 1px solid var(--border); }
.content-body ul li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 8px; height: 8px; background: var(--fire); border-radius: 50%; }
.highlight-box { background: var(--fire-l); border-left: 4px solid var(--fire); border-radius: 0 var(--radius) var(--radius) 0; padding: 20px 24px; margin: 24px 0; }
.highlight-box h3 { color: var(--navy); margin-bottom: 6px; font-size: 1rem; margin-top: 0; }
.highlight-box p { margin: 0; font-size: 0.9rem; }
.sidebar-box { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); margin-bottom: 20px; position: sticky; top: 90px; }
.sidebar-head { background: linear-gradient(135deg, var(--fire), var(--fire-d)); padding: 18px 20px; }
.sidebar-head h3 { color: #fff; font-size: 1rem; margin: 0; }
.sidebar-head p { color: rgba(255,255,255,0.8); font-size: 0.78rem; margin-top: 3px; }
.sidebar-body { padding: 20px; }
.sidebar-call { display: flex; align-items: center; gap: 12px; background: var(--navy); border-radius: var(--radius); padding: 16px; margin-bottom: 10px; }
.sidebar-call svg { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; }
.sidebar-call-num { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 900; color: #fff; line-height: 1; letter-spacing: -0.01em; }
.sidebar-call-label { font-family: 'Montserrat', sans-serif; font-size: 0.62rem; color: #64748B; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.sidebar-wa { display: flex; align-items: center; gap: 10px; background: var(--wa); border-radius: var(--radius); padding: 12px; width: 100%; margin-bottom: 14px; }
.sidebar-wa svg { width: 19px; height: 19px; fill: #fff; }
.sidebar-wa span { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #fff; font-size: 0.88rem; }
.sidebar-form input, .sidebar-form select { width: 100%; padding: 9px 12px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: 'Open Sans', sans-serif; font-size: 0.86rem; color: var(--text); background: var(--light); margin-bottom: 10px; transition: border 0.18s; }
.sidebar-form input:focus, .sidebar-form select:focus { outline: none; border-color: var(--fire); }
.sidebar-fsub { width: 100%; background: var(--fire); color: #fff; border: none; padding: 12px; border-radius: var(--radius); font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 700; cursor: pointer; text-transform: uppercase; letter-spacing: 0.04em; transition: background 0.18s; }
.sidebar-fsub:hover { background: var(--fire-d); }
.sidebar-links { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow); }
.sidebar-links h4 { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; padding: 14px 18px 10px; border-bottom: 1px solid var(--border); background: var(--light); }
.sidebar-links ul { list-style: none; }
.sidebar-links ul li a { display: flex; align-items: center; justify-content: space-between; padding: 10px 18px; font-family: 'Open Sans', sans-serif; font-size: 0.86rem; color: var(--text); font-weight: 500; border-bottom: 1px solid var(--border); transition: all 0.18s; }
.sidebar-links ul li:last-child a { border-bottom: none; }
.sidebar-links ul li a:hover { color: var(--fire); background: var(--fire-l); padding-left: 22px; }
.sidebar-links ul li a::after { content: '→'; color: var(--fire); font-size: 0.8rem; }
.mini-rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 36px; }
.mini-rev { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.mini-rev .rev-stars { font-size: 0.88rem; }
.mini-rev blockquote { font-family: 'Open Sans', sans-serif; font-size: 0.86rem; font-style: italic; color: var(--text); line-height: 1.65; margin-bottom: 12px; }
.mini-rev-author { font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 700; color: var(--muted); }

/* ── FOOTER ── */
footer { background: #0D1929; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.4rem; color: #fff; margin-bottom: 12px; }
.footer-brand span { color: var(--fire); }
.footer-desc { font-family: 'Open Sans', sans-serif; font-size: 0.82rem; color: #475569; line-height: 1.8; font-weight: 300; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.footer-badge { background: rgba(255,107,53,0.12); border: 1px solid rgba(255,107,53,0.25); color: #FFA07A; font-family: 'Montserrat', sans-serif; font-size: 0.62rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; letter-spacing: 0.06em; text-transform: uppercase; }
footer h4 { font-family: 'Montserrat', sans-serif; font-size: 0.65rem; font-weight: 700; color: #334155; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 18px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 9px; }
footer ul li a { font-family: 'Open Sans', sans-serif; font-size: 0.83rem; color: #475569; transition: color 0.18s; font-weight: 300; }
footer ul li a:hover { color: #fff; }
.footer-bottom { padding: 18px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-family: 'Open Sans', sans-serif; font-size: 0.74rem; color: #1e293b; }

/* ── FLOAT ── */
.float-cta { position: fixed; bottom: 24px; right: 24px; z-index: 400; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.float-btn { display: flex; align-items: center; gap: 9px; padding: 13px 20px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.84rem; border-radius: 50px; box-shadow: 0 4px 18px rgba(0,0,0,0.2); transition: all 0.18s; letter-spacing: 0.02em; }
.float-btn:hover { transform: scale(1.04); }
.float-btn svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }
.float-call { background: var(--fire); color: #fff; }
.float-wa   { background: var(--wa);   color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid, .contact-split { grid-template-columns: 1fr; }
  .about-inset { display: none; }
  .content-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gal-item--tall { grid-row: span 1; }
  .gal-item { height: 240px; }
  .sidebar-box { position: static; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-top: 2px solid var(--fire); padding: 16px 20px; gap: 4px; box-shadow: 0 8px 28px rgba(0,0,0,0.1); max-height: 80vh; overflow-y: auto; }
  .nav-menu.open { display: flex; }
  .hamburger { display: flex; }
  .nav-inner { position: relative; }
  .nav-item > a { height: auto; padding: 10px 4px; border-bottom: 1px solid var(--border); }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-top: none; border-left: 3px solid var(--fire); margin-left: 12px; display: none; }
  .nav-item.open .dropdown { display: block; }
  .section { padding: 60px 0; }
  .svc-grid { grid-template-columns: 1fr; }
  .rev-grid { grid-template-columns: 1fr; }
  .mini-rev-grid { grid-template-columns: 1fr; }
  .reviews-header { flex-direction: column; align-items: flex-start; }
  .frow { grid-template-columns: 1fr; }
  .trust-strip .container { justify-content: center; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .topbar-right { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gal-item { height: 200px; }
  .embar .container { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero { min-height: auto; }
  .contact-left, .contact-right { padding: 48px 24px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .float-btn span { display: none; }
  .float-btn { border-radius: 50%; width: 52px; height: 52px; padding: 0; justify-content: center; }
  .hero-content { padding: 56px 0; }
  .cta-banner-inner { text-align: center; justify-content: center; }
}
