@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 v3 — same fire-orange + navy brand identity, refined for a
   calmer, more premium execution: softer shadows, larger radius, more
   generous spacing, gentler motion. Every class name below is still used
   by the PHP templates verbatim — this is a visual-layer rewrite only,
   no markup/content/URL changes anywhere in this theme.
   Primary:  #FF6B35  (fire orange — kept, it's the brand)
   Dark:     #1B2A4A  (deep navy — kept, it's the brand)
   Accent:   #FFD23F  (golden yellow)
   Light:    #F8F9FC  (off-white surface)
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  --fire:   #FF6B35;
  --fire-d: #E5541F;
  --fire-l: #FFF1EA;
  --navy:   #16233F;
  --navy-m: #1F3157;
  --navy-l: #2A4270;
  --gold:   #FFD23F;
  --white:  #ffffff;
  --light:  #F7F8FB;
  --muted:  #667085;
  --text:   #1A202C;
  --border: #E7E9F0;
  --wa:     #25D366;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-sm: 8px;
  --shadow: 0 2px 10px rgba(22,35,63,0.05), 0 10px 30px rgba(22,35,63,0.06);
  --shadow-lg: 0 8px 20px rgba(22,35,63,0.08), 0 24px 56px rgba(22,35,63,0.12);
  --shadow-fire: 0 12px 32px rgba(255,107,53,0.24);
  --ease: cubic-bezier(.2,.7,.2,1);
}

*, *::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.75; -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: 1220px; margin: 0 auto; padding: 0 32px; }
.section { padding: 104px 0; }
.section--light { background: var(--light); }
.section--navy { background: var(--navy); }
.section--fire { background: var(--fire); }

/* ── SCROLL-REVEAL SYSTEM — unchanged mechanics, calmer easing/offset ─────
   Same progressive-enhancement contract as before: nothing ever depends on
   JS to become readable; .reveal is only ever visible-by-default unless
   .js is present AND motion isn't reduced. Keeps `animation` (not
   `transition`) so it can't collide with a target's own hover transition. */
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal { opacity: 0; transform: translateY(18px); }
  html.js .reveal.in-view {
    animation: tpRevealIn 0.8s var(--ease) forwards;
    animation-delay: calc(var(--i, 0) * 80ms);
  }
}
@keyframes tpRevealIn { to { opacity: 1; transform: none; } }

/* ── TYPE ── */
h1,h2,h3,h4 { font-family: 'Montserrat', sans-serif; line-height: 1.15; color: var(--navy); font-weight: 800; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.6rem, 5.4vw, 4.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: 1.18rem; }
p { color: var(--muted); line-height: 1.85; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fire); margin-bottom: 14px; }
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--fire); border-radius: 2px; }
.eyebrow--white { color: #FFB088; }
.eyebrow--white::before { background: #FFB088; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 10px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.01em; cursor: pointer; transition: all 0.22s var(--ease); border: none; white-space: nowrap; border-radius: var(--radius-sm); }
.btn svg { width: 17px; height: 17px; fill: currentColor; flex-shrink: 0; }
.btn--fire  { background: var(--fire); color: #fff; padding: 15px 28px; box-shadow: 0 4px 14px rgba(255,107,53,0.28); }
.btn--fire:hover  { background: var(--fire-d); transform: translateY(-2px); box-shadow: var(--shadow-fire); }
.btn--navy  { background: var(--navy); color: #fff; padding: 15px 28px; }
.btn--navy:hover  { background: var(--navy-m); transform: translateY(-2px); }
.btn--wa    { background: var(--wa); color: #fff; padding: 15px 26px; }
.btn--wa:hover    { background: #1FBD5A; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(37,211,102,0.28); }
.btn--ghost { background: rgba(255,255,255,0.06); color: #fff; padding: 14px 26px; border: 1.5px solid rgba(255,255,255,0.35); backdrop-filter: blur(6px); }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.12); }
.btn--outline-fire { background: transparent; color: var(--fire); padding: 13px 24px; border: 1.5px solid var(--fire); }
.btn--outline-fire:hover { background: var(--fire); color: #fff; transform: translateY(-2px); }
.btn--lg { padding: 17px 34px; font-size: 0.94rem; }

/* ── TOPBAR ── */
.topbar { background: var(--navy); padding: 10px 0; font-size: 0.8rem; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar a, .topbar span { color: #92A0BC; font-family: 'Open Sans', sans-serif; transition: color 0.18s; }
.topbar a:hover { color: #fff; }
.topbar-left { display: flex; gap: 22px; align-items: center; }
.topbar-right { display: flex; align-items: center; gap: 14px; }
.live-pill { display: flex; align-items: center; gap: 8px; color: #6EE7A8; font-weight: 700; font-size: 0.76rem; font-family: 'Montserrat', sans-serif; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #6EE7A8; box-shadow: 0 0 0 0 rgba(110,231,168,0.5); animation: liveGlow 2.6s ease-in-out infinite; flex-shrink: 0; }
@keyframes liveGlow { 0%,100% { box-shadow: 0 0 0 0 rgba(110,231,168,0.4); } 50% { box-shadow: 0 0 0 5px rgba(110,231,168,0); } }

/* ── NAV WITH DROPDOWNS ── */
.site-nav { background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 500; box-shadow: 0 1px 0 rgba(22,35,63,0.06); transition: box-shadow 0.25s, height 0.25s; }
.site-nav.is-scrolled { box-shadow: 0 8px 24px rgba(22,35,63,0.09); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 32px; max-width: 1220px; margin: 0 auto; height: 78px; transition: height 0.25s; }
.site-nav.is-scrolled .nav-inner { height: 64px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 46px; height: 46px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; box-shadow: var(--shadow); }
.logo-icon svg { width: 26px; height: 26px; fill: #fff; }
.logo-name { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.22rem; color: var(--navy); line-height: 1.1; letter-spacing: -0.01em; }
.logo-tag { font-family: 'Open Sans', sans-serif; font-size: 0.63rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }
.nav-menu { display: flex; gap: 2px; list-style: none; align-items: center; }
.nav-item { position: relative; }
.nav-item > a { font-family: 'Montserrat', sans-serif; font-size: 0.79rem; font-weight: 600; color: var(--text); padding: 8px 15px; display: flex; align-items: center; gap: 5px; transition: color 0.18s, height 0.25s; height: 78px; letter-spacing: 0.01em; }
.site-nav.is-scrolled .nav-item > a { height: 64px; }
.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; opacity: 0.6; }
.nav-item:hover > a .chevron { transform: rotate(180deg); }

/* DROPDOWN */
.dropdown { position: absolute; top: 100%; left: 0; background: #fff; min-width: 250px; box-shadow: var(--shadow-lg); border-radius: 0 0 var(--radius) var(--radius); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all 0.22s var(--ease); z-index: 100; overflow: hidden; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 12px 20px; font-family: 'Open Sans', sans-serif; font-size: 0.85rem; 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; }
.nav-cta  { background: var(--fire) !important; color: #fff !important; padding: 10px 20px !important; border-radius: var(--radius-sm) !important; margin-left: 10px; height: auto !important; font-weight: 700 !important; box-shadow: 0 3px 10px rgba(255,107,53,0.25); }
.nav-cta:hover  { background: var(--fire-d) !important; transform: translateY(-1px); }
.nav-wa   { background: var(--wa) !important; color: #fff !important; padding: 10px 15px !important; border-radius: var(--radius-sm) !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: 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: #B8C2D9; font-size: 0.85rem; 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.79rem; font-weight: 700; padding: 8px 18px; border-radius: var(--radius-sm); white-space: nowrap; transition: all 0.18s; }
.embar-cta:hover { background: var(--fire-d); transform: translateY(-1px); }

/* ── HERO — calmer, more editorial: bigger negative space, gentler motion ── */
.hero { position: relative; min-height: 92vh; 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.16; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(22,35,63,0.98) 48%, rgba(22,35,63,0.86) 78%, rgba(255,107,53,0.10) 100%); z-index: 2; }
.hero-content { position: relative; z-index: 3; max-width: 700px; }

/* Softer, larger, slower liquid mesh — same technique, gentler presence */
.hero-liquid { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.hero-liquid__blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.55; will-change: transform; }
.hero-liquid__blob--1 { width: 620px; height: 620px; top: -180px; right: -4%; background: radial-gradient(circle at 30% 30%, var(--fire), transparent 70%); }
.hero-liquid__blob--2 { width: 500px; height: 500px; bottom: -200px; right: 12%; background: radial-gradient(circle at 60% 40%, var(--gold), transparent 70%); opacity: 0.4; }
.hero-liquid__blob--3 { width: 440px; height: 440px; top: 18%; right: -140px; background: radial-gradient(circle at 40% 60%, var(--navy-l), transparent 65%); opacity: 0.7; }

.hero-particles { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.hero-particle { position: absolute; left: var(--left); bottom: -30px; width: var(--size); height: var(--size); border-radius: 50%; background: rgba(255,255,255,0.35); box-shadow: 0 0 6px rgba(255,255,255,0.2); opacity: 0.28; }

@media (prefers-reduced-motion: no-preference) {
  .hero-liquid__blob--1 { animation: heroLiquidDrift1 34s ease-in-out infinite; }
  .hero-liquid__blob--2 { animation: heroLiquidDrift2 40s ease-in-out infinite; }
  .hero-liquid__blob--3 { animation: heroLiquidDrift3 46s ease-in-out infinite; }
  .hero-particle { animation: heroBubbleRise var(--dur) linear infinite; animation-delay: var(--delay); }
}
@keyframes heroLiquidDrift1 { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(-36px,26px) scale(1.06); } 66% { transform: translate(18px,-22px) scale(0.96); } }
@keyframes heroLiquidDrift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-50px,-34px) scale(1.08); } }
@keyframes heroLiquidDrift3 { 0%,100% { transform: translate(0,0) scale(1); } 40% { transform: translate(26px,34px) scale(1.05); } 70% { transform: translate(-18px,-18px) scale(0.93); } }
@keyframes heroBubbleRise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 0.45; }
  90%  { opacity: 0.22; }
  100% { transform: translateY(-560px) translateX(var(--drift)); opacity: 0; }
}

/* ── HERO SCROLL INDICATOR ── */
.hero-scroll { position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%); z-index: 3; width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.25); transition: background 0.2s, border-color 0.2s; }
.hero-scroll svg { width: 18px; height: 18px; fill: #fff; opacity: 0.8; }
.hero-scroll:hover, .hero-scroll:focus-visible { background: rgba(255,107,53,0.2); border-color: var(--fire); outline: none; }
.hero-scroll:focus-visible { box-shadow: 0 0 0 3px rgba(255,107,53,0.35); }
@media (prefers-reduced-motion: no-preference) {
  .hero-scroll { animation: heroScrollBounce 2.6s ease-in-out infinite; }
}
@keyframes heroScrollBounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(7px); } }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,107,53,0.12); border: 1px solid rgba(255,107,53,0.32); color: #FFB088; font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 8px 18px; border-radius: 30px; margin-bottom: 28px; }
.hero-badge::before { content: ''; width: 7px; height: 7px; background: var(--fire); border-radius: 50%; flex-shrink: 0; }
@media (prefers-reduced-motion: no-preference) { .hero-badge::before { animation: liveGlow 2.6s ease-in-out infinite; } }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 .highlight { color: var(--fire); display: inline; }
.hero h1 .accent { color: var(--gold); }
.hero-sub { font-size: 1.13rem; color: #A6B0C8; margin-bottom: 40px; font-weight: 300; line-height: 1.8; max-width: 580px; }
.hero-sub strong { color: #fff; font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 24px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.09); }
.htrust { display: flex; align-items: center; gap: 11px; }
.htrust-icon { width: 38px; height: 38px; background: rgba(255,107,53,0.12); border: 1px solid rgba(255,107,53,0.25); border-radius: var(--radius-sm); 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: #C3CBDE; line-height: 1.35; }

/* ── TRUST STRIP ── */
.trust-strip { background: var(--navy); padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.trust-strip .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.trust-chip { display: flex; align-items: center; gap: 10px; color: #C3CBDE; font-family: 'Montserrat', sans-serif; font-size: 0.79rem; font-weight: 700; letter-spacing: 0.01em; }
.trust-chip svg { width: 17px; height: 17px; fill: var(--fire); flex-shrink: 0; }

/* ── STATS ── */
.stats-bar { background: var(--light); padding: 0; border-bottom: 1px solid var(--border); }
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-cell { text-align: center; padding: 44px 16px; border-right: 1px solid var(--border); transition: background 0.2s; }
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: #fff; }
.stat-n { font-family: 'Montserrat', sans-serif; font-size: 2.9rem; font-weight: 900; color: var(--navy); line-height: 1; }
.stat-n span { color: var(--fire); }
.stat-n .stat-num { color: var(--navy); }
.stat-l { font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 10px; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-imgwrap { position: relative; }
.about-main-img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-lg); display: block; }
.about-inset { position: absolute; bottom: -32px; right: -32px; width: 210px; height: 168px; object-fit: cover; border-radius: var(--radius); border: 6px solid #fff; box-shadow: var(--shadow-lg); }
.about-ribbon { position: absolute; top: 24px; left: 24px; background: var(--fire); color: #fff; font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 700; padding: 9px 16px; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 30px; box-shadow: var(--shadow-fire); }
.about-text h2 { margin-bottom: 18px; }
.about-text > p { font-size: 0.97rem; margin-bottom: 15px; }
.check-list { list-style: none; margin: 24px 0 32px; }
.check-list li { display: flex; align-items: flex-start; gap: 13px; padding: 11px 0; border-bottom: 1px solid var(--border); font-family: 'Open Sans', sans-serif; font-size: 0.92rem; color: var(--muted); }
.check-list li:last-child { border-bottom: none; }
.check-list li span { flex-shrink: 0; width: 21px; height: 21px; background: var(--fire-l); border: 1px solid rgba(255,107,53,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.check-list li span svg { width: 11px; height: 11px; fill: var(--fire); }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── SERVICE CARDS ── */
.services-intro { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.services-intro h2 { margin-top: 12px; margin-bottom: 16px; }
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.svc-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all 0.3s var(--ease); border: 1px solid var(--border); }
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card-img { height: 208px; overflow: hidden; position: relative; }
.svc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); display: block; }
.svc-card:hover .svc-card-img img { transform: scale(1.045); }
.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: 14px; left: 14px; background: rgba(22,35,63,0.85); backdrop-filter: blur(4px); color: #fff; font-family: 'Montserrat', sans-serif; font-size: 0.64rem; font-weight: 700; padding: 5px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.06em; }
.svc-badge::before { content: ''; display: inline-block; width: 6px; height: 6px; background: var(--fire); border-radius: 50%; margin-right: 6px; }
.svc-body { padding: 26px; }
.svc-body h3 { font-size: 1.04rem; color: var(--navy); margin-bottom: 10px; font-weight: 700; }
.svc-body p { font-size: 0.87rem; line-height: 1.7; margin-bottom: 18px; }
.svc-cta { display: inline-flex; align-items: center; gap: 7px; font-family: 'Montserrat', sans-serif; font-size: 0.76rem; font-weight: 700; color: var(--fire); letter-spacing: 0.02em; transition: gap 0.2s; }
.svc-cta::after { content: '→'; }
.svc-cta:hover { gap: 11px; }
.svc-card-emerg { background: linear-gradient(150deg, var(--fire), var(--fire-d)); border-color: transparent; }
.svc-card-emerg .svc-body h3 { color: #fff; }
.svc-card-emerg .svc-body p { color: rgba(255,255,255,0.88); }
.svc-card-emerg .svc-cta { color: #fff; }
.svc-card-emerg:hover { transform: translateY(-5px); }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-l) 100%); padding: 72px 0; position: relative; overflow: hidden; }
.cta-banner::before { content:''; position:absolute; right:-120px; top:-120px; width:440px; height:440px; border-radius:50%; background:rgba(255,107,53,0.08); filter: blur(20px); pointer-events:none; }
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; font-size: clamp(1.7rem,3vw,2.5rem); margin-bottom: 8px; }
.cta-banner p { color: #A6B0C8; font-size: 0.97rem; max-width: 480px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ── GALLERY ── */
.gallery-section { background: var(--navy); padding: 96px 0 0; }
.gallery-intro { padding-bottom: 48px; }
.gallery-intro h2 { color: #fff; margin-top: 12px; }
.gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 290px 290px; gap: 6px; }
.gal-item { overflow: hidden; position: relative; cursor: pointer; border-radius: var(--radius-sm); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); display: block; }
.gal-item:hover img { transform: scale(1.05); }
.gal-item--tall { grid-row: span 2; }
.gal-cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 18px 16px; background: linear-gradient(transparent, rgba(22,35,63,0.92)); color: #fff; font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; 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: 56px; flex-wrap: wrap; gap: 18px; }
.rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.rev-card { background: #fff; border-radius: var(--radius); padding: 32px; border: 1px solid var(--border); box-shadow: var(--shadow); transition: all 0.25s var(--ease); position: relative; }
.rev-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.rev-stars { color: #F5A524; font-size: 1.02rem; letter-spacing: 3px; margin-bottom: 16px; }
.rev-text { font-family: 'Open Sans', sans-serif; font-style: italic; font-size: 0.92rem; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.rev-author { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.86rem; color: var(--navy); }
.rev-location { font-family: 'Open Sans', sans-serif; font-size: 0.74rem; color: var(--muted); margin-top: 2px; }
.rev-source { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700; color: #4285f4; margin-top: 14px; }
.google-rating { display: flex; align-items: center; gap: 14px; background: var(--light); border-radius: var(--radius); padding: 16px 22px; margin-bottom: 40px; border: 1px solid var(--border); }
.google-score { font-family: 'Montserrat', sans-serif; font-size: 2.7rem; 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 — refined pill grid, calmer hover ── */
.areas-section { background: var(--navy); }
.areas-intro h2 { color: #fff; margin-top: 12px; margin-bottom: 12px; }
.areas-intro p { color: #A6B0C8; margin-bottom: 48px; max-width: 680px; }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(195px,1fr)); gap: 12px; }
.area-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-sm); padding: 17px 20px; font-family: 'Montserrat', sans-serif; font-size: 0.83rem; font-weight: 600; color: #A6B0C8; display: flex; align-items: center; justify-content: space-between; transition: all 0.22s var(--ease); cursor: pointer; }
.area-card:hover { background: rgba(255,107,53,0.1); border-color: rgba(255,107,53,0.35); color: #fff; transform: translateY(-2px); }
.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: 28px; font-family: 'Open Sans', sans-serif; font-size: 0.85rem; color: #7C87A3; }
.area-note a { color: var(--fire); font-weight: 700; }

/* ── FAQ — smooth height transition (JS sets a --h custom property; see
   main.js toggleFaq — the onclick="toggleFaq(this)" call in every PHP
   template is untouched, only the animation technique underneath it) ── */
.faq-wrap { max-width: 780px; margin: 56px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 24px 4px; cursor: pointer; font-family: 'Montserrat', sans-serif; font-size: 0.98rem; font-weight: 700; color: var(--navy); gap: 18px; user-select: none; }
.faq-icon { width: 34px; height: 34px; min-width: 34px; border-radius: 50%; background: var(--fire-l); border: 1.5px solid rgba(255,107,53,0.3); display: flex; align-items: center; justify-content: center; transition: all 0.25s var(--ease); }
.faq-icon svg { width: 14px; height: 14px; fill: var(--fire); transition: transform 0.25s var(--ease); }
.faq-q.open .faq-icon { background: var(--fire); border-color: var(--fire); }
.faq-q.open .faq-icon svg { transform: rotate(180deg); fill: #fff; }
.faq-a { font-family: 'Open Sans', sans-serif; font-size: 0.94rem; color: var(--muted); line-height: 1.85; max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease), padding 0.35s var(--ease); padding: 0 4px; }
.faq-a.open { max-height: var(--h, 400px); padding: 0 4px 24px; }

/* ── CONTACT ── */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; }
.contact-left { background: var(--navy); padding: 80px 56px; }
.contact-left h2 { color: #fff; margin-bottom: 16px; }
.contact-left > p { color: #A6B0C8; margin-bottom: 44px; font-size: 0.97rem; font-weight: 300; }
.cm { display: flex; align-items: center; gap: 17px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.cm:last-of-type { border-bottom: none; }
.cm-icon { width: 46px; height: 46px; min-width: 46px; background: rgba(255,107,53,0.12); border: 1px solid rgba(255,107,53,0.28); border-radius: var(--radius-sm); 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: #7C87A3; text-transform: uppercase; letter-spacing: 0.1em; }
.cm-value { font-family: 'Montserrat', sans-serif; font-size: 0.97rem; font-weight: 700; color: #fff; }
.cm-value a { color: #A9C6FF; }
.contact-right { background: var(--light); padding: 80px 56px; }
.contact-right h3 { font-family: 'Montserrat', sans-serif; font-size: 1.75rem; color: var(--navy); margin-bottom: 32px; font-weight: 800; }
.fgrp { margin-bottom: 16px; }
.fgrp label { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.66rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.fgrp input, .fgrp select, .fgrp textarea { width: 100%; padding: 12px 15px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: #fff; font-family: 'Open Sans', sans-serif; font-size: 0.89rem; color: var(--text); transition: border 0.18s, box-shadow 0.18s; }
.fgrp input:focus, .fgrp select:focus, .fgrp textarea:focus { outline: none; border-color: var(--fire); box-shadow: 0 0 0 3px var(--fire-l); }
.fgrp textarea { min-height: 96px; resize: vertical; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fsub { width: 100%; background: var(--fire); color: #fff; border: none; padding: 15px; border-radius: var(--radius-sm); font-family: 'Montserrat', sans-serif; font-size: 0.87rem; font-weight: 700; cursor: pointer; transition: all 0.2s; box-shadow: 0 4px 14px rgba(255,107,53,0.25); }
.fsub:hover { background: var(--fire-d); transform: translateY(-1px); box-shadow: var(--shadow-fire); }
.form-ok { background: #E4F8EF; border: 1.5px solid #10B36F; color: #0A6B44; padding: 22px; border-radius: var(--radius-sm); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.92rem; text-align: center; }
.map-wrap iframe { width: 100%; height: 300px; border: none; display: block; filter: grayscale(0.15); }

/* ── INNER PAGE (service/suburb) ── */
.page-hero { background: linear-gradient(100deg, var(--navy) 0%, var(--navy-l) 100%); padding: 68px 0 60px; position: relative; overflow: hidden; }
.page-hero::after { content:''; position:absolute; right:-100px; top:-100px; width:440px; height:440px; border-radius:50%; background:rgba(255,107,53,0.08); filter: blur(20px); pointer-events:none; }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 3.1rem); margin-bottom: 16px; position: relative; z-index: 1; }
.page-hero p { color: #A6B0C8; font-size: 1.06rem; max-width: 640px; position: relative; z-index: 1; font-weight: 300; line-height: 1.8; }
.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; position: relative; z-index: 1; }
.breadcrumb { background: var(--light); padding: 13px 0; border-bottom: 1px solid var(--border); }
.breadcrumb ol { list-style: none; display: flex; gap: 9px; align-items: center; flex-wrap: wrap; font-family: 'Open Sans', sans-serif; font-size: 0.81rem; }
.breadcrumb ol li { color: var(--muted); }
.breadcrumb ol li a { color: var(--fire); font-weight: 600; }
.breadcrumb ol li+li::before { content: '›'; margin-right: 9px; color: #C3CBDE; }
.content-layout { display: grid; grid-template-columns: 1fr 350px; gap: 56px; align-items: start; padding: 68px 0; }
.content-body h2 { font-size: 1.65rem; color: var(--navy); margin: 34px 0 12px; }
.content-body h2:first-child { margin-top: 0; }
.content-body h3 { font-size: 1.08rem; color: var(--navy); margin: 26px 0 10px; }
.content-body p { font-size: 0.97rem; margin-bottom: 17px; }
.content-body ul { list-style: none; margin: 12px 0 20px; }
.content-body ul li { padding: 10px 0 10px 24px; position: relative; font-family: 'Open Sans', sans-serif; font-size: 0.94rem; color: var(--muted); border-bottom: 1px solid var(--border); }
.content-body ul li::before { content: ''; position: absolute; left: 2px; top: 50%; transform: translateY(-50%); width: 7px; height: 7px; background: var(--fire); border-radius: 50%; }
.highlight-box { background: var(--fire-l); border: 1px solid rgba(255,107,53,0.2); border-left: 4px solid var(--fire); border-radius: 0 var(--radius) var(--radius) 0; padding: 24px 28px; margin: 28px 0; }
.highlight-box h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.02rem; margin-top: 0; }
.highlight-box p { margin: 0; font-size: 0.92rem; }
.sidebar-box { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); margin-bottom: 22px; position: sticky; top: 96px; }
.sidebar-head { background: linear-gradient(135deg, var(--fire), var(--fire-d)); padding: 20px 22px; }
.sidebar-head h3 { color: #fff; font-size: 1.02rem; margin: 0; }
.sidebar-head p { color: rgba(255,255,255,0.82); font-size: 0.79rem; margin-top: 4px; }
.sidebar-body { padding: 22px; }
.sidebar-call { display: flex; align-items: center; gap: 13px; background: var(--navy); border-radius: var(--radius-sm); padding: 17px; margin-bottom: 12px; transition: transform 0.2s; }
.sidebar-call:hover { transform: translateY(-1px); }
.sidebar-call svg { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; }
.sidebar-call-num { font-family: 'Montserrat', sans-serif; font-size: 1.52rem; font-weight: 900; color: #fff; line-height: 1; letter-spacing: -0.01em; }
.sidebar-call-label { font-family: 'Montserrat', sans-serif; font-size: 0.63rem; color: #7C87A3; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.sidebar-wa { display: flex; align-items: center; gap: 11px; background: var(--wa); border-radius: var(--radius-sm); padding: 13px; width: 100%; margin-bottom: 16px; transition: transform 0.2s; }
.sidebar-wa:hover { transform: translateY(-1px); }
.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.89rem; }
.sidebar-form input, .sidebar-form select { width: 100%; padding: 10px 13px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: 'Open Sans', sans-serif; font-size: 0.87rem; color: var(--text); background: var(--light); margin-bottom: 11px; 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: 13px; border-radius: var(--radius-sm); font-family: 'Montserrat', sans-serif; font-size: 0.83rem; font-weight: 700; cursor: pointer; transition: all 0.2s; }
.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.69rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; padding: 15px 20px 11px; 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: 11px 20px; font-family: 'Open Sans', sans-serif; font-size: 0.87rem; 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: 24px; }
.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: 18px; margin-top: 40px; }
.mini-rev { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.mini-rev .rev-stars { font-size: 0.9rem; }
.mini-rev blockquote { font-family: 'Open Sans', sans-serif; font-size: 0.87rem; font-style: italic; color: var(--text); line-height: 1.7; margin-bottom: 14px; }
.mini-rev-author { font-family: 'Montserrat', sans-serif; font-size: 0.76rem; font-weight: 700; color: var(--muted); }

/* ── FOOTER ── */
footer { background: #0F1B30; padding: 68px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.42rem; color: #fff; margin-bottom: 14px; }
.footer-brand span { color: var(--fire); }
.footer-desc { font-family: 'Open Sans', sans-serif; font-size: 0.83rem; color: #5B6B8C; line-height: 1.85; font-weight: 300; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.footer-badge { background: rgba(255,107,53,0.1); border: 1px solid rgba(255,107,53,0.22); color: #FFB088; font-family: 'Montserrat', sans-serif; font-size: 0.63rem; font-weight: 700; padding: 5px 11px; border-radius: 20px; letter-spacing: 0.06em; text-transform: uppercase; }
footer h4 { font-family: 'Montserrat', sans-serif; font-size: 0.66rem; font-weight: 700; color: #45537A; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 20px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul li a { font-family: 'Open Sans', sans-serif; font-size: 0.84rem; color: #5B6B8C; transition: color 0.18s; font-weight: 300; }
footer ul li a:hover { color: #fff; }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-family: 'Open Sans', sans-serif; font-size: 0.75rem; color: #2E3A5C; }

/* ── FLOAT ── */
.float-cta { position: fixed; bottom: 26px; right: 26px; z-index: 400; display: flex; flex-direction: column; gap: 11px; align-items: flex-end; }
.float-btn { display: flex; align-items: center; gap: 10px; padding: 14px 22px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.85rem; border-radius: 50px; box-shadow: 0 8px 24px rgba(0,0,0,0.18); transition: all 0.2s var(--ease); }
.float-btn:hover { transform: translateY(-2px) scale(1.02); }
.float-btn svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }
.float-call { background: var(--fire); color: #fff; position: relative; }
.float-wa   { background: var(--wa);   color: #fff; }
.float-call::after {
  content: ''; position: absolute; inset: 0; border-radius: 50px;
  border: 2px solid var(--fire); pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .float-call::after { animation: floatPulse 3s ease-out infinite; }
}
@keyframes floatPulse {
  0%   { transform: scale(1);    opacity: 0.55; }
  100% { transform: scale(1.32); opacity: 0; }
}

/* ── 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; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
}
@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: 1px solid var(--border); padding: 18px 20px; gap: 4px; box-shadow: var(--shadow-lg); max-height: 80vh; overflow-y: auto; }
  .nav-menu.open { display: flex; }
  .hamburger { display: flex; }
  .nav-inner { position: relative; }
  .nav-item > a { height: auto; padding: 12px 4px; border-bottom: 1px solid var(--border); }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-radius: 0; border-left: 3px solid var(--fire); margin-left: 12px; display: none; }
  .nav-item.open .dropdown { display: block; }
  .section { padding: 68px 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: 210px; }
  .embar .container { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero { min-height: auto; }
  .hero-scroll { display: none; } /* hero height is content-driven on mobile; avoid overlapping the CTA row below it */
  .contact-left, .contact-right { padding: 52px 26px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .float-btn span { display: none; }
  .float-btn { border-radius: 50%; width: 54px; height: 54px; padding: 0; justify-content: center; }
  .hero-content { padding: 60px 0; }
  .cta-banner-inner { text-align: center; justify-content: center; }
}
