:root{
  /* Dark glass + gold */
  --bg:#05060a;
  --bgAccent:#030712;
  --surface:#0b0f16;
  --surface2:#0f1720;
  --surfaceGlass:rgba(12,16,24,.82);
  --surfaceSoft:rgba(15,15,22,.82);

  --white:#f9fafb;
  --text:#e6edf3;
  --ink:#e5e7eb;
  --muted:#9ca3af;
  --mutedSoft:#6b7280;

  --gold:#d4af37;
  --goldSoft:rgba(212,175,55,.18);
  --goldLine:rgba(212,175,55,.55);

  --ok:#34d399;
  --danger:#f87171;

  --borderSoft:rgba(148,163,184,.28);
  --borderStrong:rgba(15,23,42,.9);

  --radius-xl:24px;
  --radius:16px;

  --shadow-soft:0 22px 55px rgba(0,0,0,.65);
  --shadow-card:0 16px 40px rgba(0,0,0,.7);

  /* WordPress Custom Logo can set this via header.php */
  --logo:none;
}


/* Inputs: force black surfaces */
input, select, textarea{
  background:#000;
}

*{box-sizing:border-box}
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:#000000;
  min-height:100vh;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
button{font-family:inherit}

/* ===== BACKGROUND LOGO TREATMENT ===== */
.bg-photo{
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  /* Main background: pure black */
  background:#000000;
  overflow:hidden;
  isolation:isolate;
}
.bg-photo::before{
  content:"";
  position:absolute;
  inset:-8%;
  background-image: var(--logo);
  background-repeat:no-repeat;
  background-position:center 30%;
  background-size:min(78vmin, 820px);
  /* Disable watermark overlays to keep the background fully black */
  opacity:0;
  filter:
    saturate(1.15)
    contrast(1.05)
    drop-shadow(0 0 28px rgba(212,175,55,.25))
    drop-shadow(0 0 70px rgba(0,0,0,.85));
  transform:translateZ(0);
  pointer-events:none;
}
.bg-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background-image: var(--logo);
  background-repeat: repeat;
  background-size: 240px auto;
  background-position: 0 0;
  opacity:0;
  filter: saturate(1.05) contrast(1.05);
  mix-blend-mode: screen;
  pointer-events:none;
}

.page-wrap{
  max-width:1200px;
  margin:0 auto;
  padding:0 16px 48px;
  position:relative;
  z-index:1;
}

/* Header */
header{
  position:sticky;
  top:0;
  z-index:35;
  backdrop-filter:blur(22px);
  background:linear-gradient(to bottom,rgba(3,4,7,.96),rgba(3,4,7,.88));
  border-bottom:1px solid rgba(15,23,42,.95);
}
.header-inner{
  max-width:1200px;
  margin:0 auto;
  padding:12px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand-mark{
  width:36px;
  height:36px;
  border-radius:999px;
  border:1px solid var(--goldLine);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 0 0 1px rgba(15,23,42,.85),0 12px 30px rgba(0,0,0,.8);
  background:radial-gradient(circle at 30% 0%,rgba(255,255,255,.18),rgba(0,0,0,1));
  overflow:hidden;
  flex-shrink:0;
}
.brand-mark img{
  width:82%;
  height:82%;
  object-fit:contain;
  filter: drop-shadow(0 0 10px rgba(212,175,55,.35));
  opacity:.95;
}
.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand-text span:first-child{
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:11px;
  color:var(--gold);
}
.brand-text span:last-child{
  font-size:12px;
  color:var(--muted);
}

nav{
  display:flex;
  gap:18px;
  font-size:13px;
  flex-wrap:wrap;
  margin-left:auto;
  position:relative;
  align-items:center;
}
nav a{
  padding:4px 0;
  position:relative;
  color:var(--muted);
  transition:color .2s ease, text-shadow .2s ease;
  white-space:nowrap;
}
nav a:hover{ color:var(--white); }
nav a.active{
  color:var(--white);
  font-weight:500;
  text-shadow:0 0 8px rgba(212,175,55,.7);
}
.nav-indicator{
  position:absolute;
  bottom:-4px;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--gold),#fef9c3);
  box-shadow:0 0 14px rgba(212,175,55,.9);
  transition:transform .26s ease, width .26s ease, opacity .2s ease;
  opacity:0;
  pointer-events:none;
}

/* Mobile menu (hamburger + off-canvas) */
.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid var(--goldLine);
  background:#000000;
  color:var(--gold);
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 0 0 1px rgba(15,23,42,.9),0 14px 34px rgba(0,0,0,.82);
}
.nav-toggle svg{ width:20px; height:20px; }
.nav-toggle:focus{ outline:none; box-shadow:0 0 0 3px rgba(34,211,238,.25),0 0 0 1px rgba(15,23,42,.96),0 16px 38px rgba(0,0,0,.85); }

.mobile-nav{ position:fixed; inset:0; z-index:60; }
.mobile-nav[hidden]{ display:none !important; }
.mobile-nav-backdrop{ position:absolute; inset:0; background:rgba(0,0,0,.68); }
.mobile-nav-panel{
  position:absolute;
  top:0;
  right:0;
  height:100%;
  width:min(86vw, 360px);
  padding:14px 14px 18px;
  background:linear-gradient(180deg, rgba(3,4,7,.98), rgba(3,4,7,.92));
  border-left:1px solid rgba(212,175,55,.35);
  box-shadow:0 24px 70px rgba(0,0,0,.9);
  display:flex;
  flex-direction:column;
  gap:10px;
}
.mobile-nav-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:6px 2px 10px;
  border-bottom:1px solid rgba(212,175,55,.18);
}
.mobile-nav-title{
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--gold);
}
.mobile-nav-close{
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid var(--goldLine);
  background:#000000;
  color:var(--gold);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 0 0 1px rgba(15,23,42,.92),0 14px 34px rgba(0,0,0,.82);
}
.mobile-nav-close svg{ width:18px; height:18px; }

.mobile-nav-links{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding-top:8px;
  overflow:auto;
}
.mobile-nav-links a{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(148,163,184,.18);
  background:rgba(0,0,0,.25);
  color:var(--muted);
}
.mobile-nav-links a:hover{ color:var(--white); border-color:rgba(212,175,55,.22); }
.mobile-nav-links a.active{
  color:var(--white);
  border-color:rgba(212,175,55,.55);
  box-shadow:0 0 0 1px rgba(212,175,55,.18);
  text-shadow:0 0 10px rgba(212,175,55,.45);
}

body.nav-open{ overflow:hidden; }

/* Buttons */
.btn{
  border-radius:999px;
  padding:9px 18px;
  font-size:12px;
  border:1px solid transparent;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  cursor:pointer;
  transition:
    background .18s ease,
    transform .12s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    color .18s ease;
  background:#000000;
  color:var(--white);
}
/* Dark-gold (outline) */
.btn-gold{
  background:#000000;
  color:var(--gold);
  border-color:var(--goldLine);
  box-shadow:0 14px 35px rgba(0,0,0,.8);
  font-weight:600;
}
.btn-gold:hover{
  transform:translateY(-1px);
  box-shadow:0 20px 45px rgba(0,0,0,.9);
  border-color:var(--gold);
}
/* Gold fill (hero primary) */
.btn-gold-fill{
  background:linear-gradient(135deg,#fef9c3,var(--gold));
  color:#1c1917;
  border-color:rgba(250,250,250,.12);
  box-shadow:0 14px 35px rgba(0,0,0,.8);
  font-weight:700;
}
.btn-gold-fill:hover{
  transform:translateY(-1px);
  box-shadow:0 20px 45px rgba(0,0,0,.9);
  filter:brightness(1.05);
}
.btn-outline{
  background:#000000;
  color:var(--white);
  border-color:rgba(148,163,184,.45);
}
.btn-outline:hover{
  border-color:var(--goldLine);
  box-shadow:0 10px 25px rgba(0,0,0,.85);
}

/* “Pages” scaffolding */
.page{
  margin-top:24px;
}
.page[hidden]{ display:none !important; }
.page-enter{
  animation:pageIn .18s ease-out;
}
@keyframes pageIn{
  from{opacity:0; transform:translateY(8px);}
  to{opacity:1; transform:translateY(0);}
}

/* Hero */
.hero-wrap{
  border-radius:var(--radius-xl);
  overflow:hidden;
  background:#000000;
  box-shadow:var(--shadow-soft);
  border:1px solid rgba(15,23,42,.95);
  position:relative;
}

/* Video background */
.hero-media{
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
}
.hero-video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(1.05) contrast(1.05);
}
.hero-media-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(0,0,0,.35), transparent 55%),
    radial-gradient(circle at 70% 65%, rgba(0,0,0,.55), transparent 60%),
    linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.30) 55%, rgba(0,0,0,.82));
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(0,0.95fr);
  min-height:320px;
  position:relative;
  z-index:1;
}
.hero-copy{
  padding:32px 32px 36px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:18px;
}
.hero-kicker{
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:10px;
  color:var(--muted);
}
.hero-title{
  font-size:32px;
  line-height:1.1;
  font-weight:800;
  color:var(--gold);
  margin:0;
}
.hero-title span{ display:block; }
.hero-title .white{ color:var(--white); }
.hero-sub{
  font-size:14px;
  color:var(--ink);
  max-width:520px;
  margin:0;
}
.hero-phone{
  font-size:15px;
  font-weight:700;
  display:flex;
  flex-direction:column;
  gap:3px;
  color:var(--white);
}
.hero-phone span:first-child{
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--muted);
  font-weight:600;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:6px;
}
.hero-meta{
  display:flex;
  gap:14px;
  margin-top:16px;
  font-size:11px;
  color:var(--muted);
  flex-wrap:wrap;
}
.hero-meta span{
  display:flex;
  align-items:center;
  gap:6px;
}
.dot{
  width:7px;height:7px;border-radius:999px;
  background:#22c55e;
  box-shadow:0 0 0 5px rgba(34,197,94,.25);
}

.hero-right{
  position:relative;
  overflow:hidden;
  isolation:isolate;
  display:flex;
  align-items:stretch;
  justify-content:flex-end;
}
.hero-right::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(115deg,rgba(249,250,251,.08),transparent 60%),
    radial-gradient(circle at 85% 15%,rgba(249,250,251,.15),transparent 55%);
  mix-blend-mode:screen;
  opacity:.85;
  pointer-events:none;
}

.hero-tech{
  position:relative;
  margin:24px;
  margin-left:auto;
  width:100%;
  max-width:360px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.18);
  background:#000000;
  backdrop-filter:blur(20px);
  display:flex;
  flex-direction:column;
  padding:18px 18px 16px;
  gap:12px;
  color:var(--white);
  box-shadow:var(--shadow-card);
}
.hero-tech-head{
  font-size:13px;
  font-weight:700;
  display:flex;
  justify-content:space-between;
  gap:8px;
  align-items:center;
}
.hero-tech-head span{
  display:flex;
  align-items:center;
  gap:6px;
}
.hero-tech-head span::before{
  content:"";
  width:9px;height:9px;border-radius:999px;
  background:var(--gold);
  box-shadow:0 0 0 4px var(--goldSoft);
}
.hero-tech-tabs{
  display:inline-flex;
  background:rgba(15,23,42,.88);
  border-radius:999px;
  padding:3px;
  gap:3px;
  font-size:11px;
  border:1px solid rgba(148,163,184,.6);
}
.hero-tech-tabs button{
  border:none;
  outline:0;
  border-radius:999px;
  padding:4px 9px;
  background:transparent;
  color:var(--ink);
  cursor:pointer;
  font:inherit;
}
.hero-tech-tabs button.active{
  background:var(--white);
  color:#020617;
  font-weight:800;
}

.hero-form{
  margin-top:4px;
  display:flex;
  flex-direction:column;
  gap:8px;
  font-size:11px;
}
.hero-form label{
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--muted);
  font-weight:700;
}
.hero-form input,
.hero-form select{
  width:100%;
  border-radius:999px;
  border:1px solid var(--borderSoft);
  padding:7px 12px;
  font-size:12px;
  background:#000;
  color:var(--ink);
  outline:none;
}
.hero-form input::placeholder{ color:#6b7280; }
.hero-form input:focus,
.hero-form select:focus{
  border-color:var(--gold);
  box-shadow:0 0 0 1px var(--goldSoft);
}
.hero-arrival{
  margin-top:4px;
  font-size:10px;
  color:var(--muted);
  line-height:1.35;
}

/* Sections & shared components */
.section-title{
  text-align:center;
  margin:34px 0 10px;
  font-size:22px;
  color:var(--gold);
  letter-spacing:.08em;
  text-transform:uppercase;
}
.section-sub{
  text-align:center;
  font-size:13px;
  color:var(--muted);
  max-width:760px;
  margin:0 auto 22px;
  line-height:1.55;
}

.feature-row{
  margin-top:26px;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}
.feature-card{
  background:#000000;
  border-radius:var(--radius);
  padding:18px 16px;
  border:1px solid var(--borderSoft);
  display:flex;
  align-items:flex-start;
  gap:12px;
  font-size:13px;
  box-shadow:var(--shadow-card);
  backdrop-filter:blur(18px);
  transition:border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.feature-row.glow-sequence .feature-card{ animation:goldGlow 1.6s ease-out; }
.feature-row.glow-sequence .feature-card:nth-child(2){ animation-delay:.18s; }
.feature-row.glow-sequence .feature-card:nth-child(3){ animation-delay:.36s; }
.feature-row.glow-sequence .feature-card:nth-child(4){ animation-delay:.54s; }

.feature-icon{
  width:34px;height:34px;border-radius:999px;
  background:rgba(255,255,255,.06);
  display:flex;align-items:center;justify-content:center;
  color:var(--gold);font-size:16px;flex-shrink:0;
  border:1px solid rgba(255,255,255,.12);
}
.feature-title{ font-weight:800; margin-bottom:2px; color:var(--white); }
.feature-text{ font-size:12px; color:var(--muted); line-height:1.45; }

.center-cta{ margin-top:22px; display:flex; justify-content:center; gap:10px; flex-wrap:wrap; }

/* Service categories */
.service-category-grid{
  margin-top:26px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.service-category-card{
  background:#000000;
  border-radius:16px;
  padding:18px 16px 16px;
  border:1px solid rgba(148,163,184,.25);
  box-shadow:0 22px 45px rgba(0,0,0,.85);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:240px;
  font-size:13px;
  backdrop-filter:blur(18px);
}
.service-category-card h3{
  margin:0 0 6px;
  font-size:15px;
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.08em;
}
.service-lead{ margin:0; font-size:12px; color:var(--muted); line-height:1.5; }
.service-list{ margin:10px 0 0; padding-left:18px; font-size:12px; color:var(--white); }
.service-list li{ margin-bottom:5px; color:var(--ink); }
.service-actions{ margin-top:14px; display:flex; justify-content:flex-start; gap:10px; flex-wrap:wrap; }
/* Service checklist (checkboxes) */
.service-checklist{ list-style:none; padding-left:0; }
.service-checklist li{ margin-bottom:8px; }
.svc-check{
  display:flex;
  align-items:flex-start;
  gap:10px;
  cursor:pointer;
  user-select:none;
}
.svc-check span{ line-height:1.35; }
.svc-check-input{
  appearance:none;
  -webkit-appearance:none;
  width:18px;
  height:18px;
  margin-top:1px;
  border-radius:4px;
  border:1px solid var(--goldLine);
  background:#000;
  box-shadow:inset 0 0 0 1px rgba(15,23,42,.9);
  display:inline-block;
  flex:0 0 auto;
  background-position:center;
  background-repeat:no-repeat;
  background-size:12px 12px;
}
.svc-check-input:checked{
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='none' stroke='%23d4af37' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M20 6L9 17l-5-5'/></svg>");
}
.svc-check-input:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:2px;
}
.service-email-cta{ margin-top:16px; margin-bottom:10px; }

}

/* Highlight tiles */
.what-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(260px,1fr));
  gap:18px;
  max-width:1080px;
  margin:0 auto;
  align-items:start;
}
.service-tile{
  background:#000000;
  color:var(--ink);
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(148,163,184,.25);
  display:flex;
  flex-direction:column;
  box-shadow:0 22px 45px rgba(0,0,0,.85);
  backdrop-filter:blur(18px);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-tile:hover{ transform:translateY(-2px); border-color:rgba(212,175,55,.35); }
.service-img{
  background:radial-gradient(circle at 0 0,rgba(212,175,55,.16),transparent 55%);
  height:140px;
}
.service-img.has-photo{ height:150px; background:rgba(0,0,0,.55); }
.service-img.has-photo img{ width:100%; height:100%; object-fit:cover; }
.service-body{ padding:14px 14px 16px; }
.service-body h3{ margin:0 0 6px; font-size:15px; color:var(--white); }
.service-body p{ margin:0; font-size:13px; color:var(--muted); line-height:1.5; }
.service-body .pill{
  display:inline;
  font-size:12px;
  margin-top:8px;
  padding:0;
  border-radius:0;
  background:transparent;
  color:var(--gold);
  border:0;
  line-height:1.45;
}

/* Icon service list */
.list-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
  margin-top:22px;
}
.list-item{
  background:#000000;
  border-radius:var(--radius);
  padding:18px 16px;
  border:1px solid rgba(148,163,184,.25);
  text-align:left;
  font-size:13px;
  backdrop-filter:blur(16px);
  box-shadow:var(--shadow-card);
}
.mini-icon{
  width:30px;height:30px;border-radius:10px;
  background:rgba(255,255,255,.06);
  display:flex;align-items:center;justify-content:center;
  color:var(--gold);font-size:14px;
  border:1px solid rgba(255,255,255,.12);
}
.list-item h4{ margin:10px 0 6px; font-size:14px; color:var(--white); }
.list-item p{ margin:0; color:var(--muted); font-size:12px; line-height:1.45; }

/* Why choose us */
.why-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:30px;
  align-items:start;
  margin-top:26px;
}
.why-points{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  font-size:13px;
}
.why-card{
  background:#000000;
  border-radius:var(--radius);
  padding:12px 12px 13px;
  border:1px dashed var(--goldSoft);
  box-shadow:0 14px 32px rgba(0,0,0,.85);
  backdrop-filter:blur(16px);
  line-height:1.45;
}
.why-card strong{
  display:block;
  margin-bottom:4px;
  color:var(--white);
  font-weight:800;
}

/* Generic grids/cards */
.grid-2{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(0,0.9fr);
  gap:18px;
  align-items:flex-start;
}
.card{
  border-radius:var(--radius);
  border:1px solid rgba(148,163,184,.25);
  background:#000000;
  padding:16px;
  box-shadow:var(--shadow-card);
  font-size:13px;
  backdrop-filter:blur(18px);
  line-height:1.55;
}

/* Booking calendar */
.booking-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
  flex-wrap:wrap;
}
.booking-header-main{
  display:flex;
  flex-direction:column;
  gap:3px;
}
.booking-header-main strong{ font-size:15px; color:var(--white); font-weight:800; }
.booking-header-main span{ font-size:12px; color:var(--mutedSoft); }

.calendar-wrap{
  margin-top:8px;
  border-radius:var(--radius);
  border:1px solid rgba(148,163,184,.25);
  background:#000000;
  padding:10px 12px 12px;
}
.calendar-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:8px;
}
.calendar-label{ font-size:13px; font-weight:800; color:var(--white); }
.calendar-nav-btn{
  border-radius:999px;
  border:1px solid rgba(148,163,184,.35);
  background:#000000;
  color:var(--mutedSoft);
  width:28px;height:28px;
  display:flex;align-items:center;justify-content:center;
  font-size:16px;
  cursor:pointer;
}
.calendar-nav-btn:hover{
  border-color:var(--goldSoft);
  color:var(--gold);
}

.calendar-grid{
  display:grid;
  grid-template-columns:repeat(7,minmax(0,1fr));
  gap:4px;
  font-size:11px;
}
.calendar-day-name{
  text-align:center;
  color:var(--mutedSoft);
  padding-bottom:4px;
  font-weight:700;
}
.calendar-date{
  height:32px;
  border-radius:8px;
  border:1px solid rgba(31,41,55,.9);
  background:#000000;
  color:var(--muted);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:border-color .12s ease,color .12s ease,transform .08s ease;
}
.calendar-date.disabled{ opacity:.3; cursor:default; }
.calendar-date:hover:not(.disabled){
  border-color:var(--goldSoft);
  color:var(--white);
  transform:translateY(-1px);
}
.calendar-date.selected{
  border-color:var(--gold);
  color:var(--gold);
  box-shadow:0 0 0 1px var(--goldSoft);
}
.calendar-date.today{
  border-style:dashed;
  border-color:rgba(148,163,184,.7);
}

.slot-wrap{
  margin-top:10px;
  border-top:1px solid rgba(148,163,184,.25);
  padding-top:8px;
}
.slot-label{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--mutedSoft);
  margin-bottom:6px;
  font-weight:800;
}
.slot-group{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}
.slot{
  padding:6px 10px;
  font-size:12px;
  border-radius:999px;
  border:1px solid rgba(55,65,81,.9);
  background:#000000;
  color:var(--mutedSoft);
  cursor:pointer;
  transition:border-color .12s ease,color .12s ease,transform .08s ease;
}
.slot:hover{
  border-color:var(--goldSoft);
  color:var(--white);
  transform:translateY(-1px);
}
.slot.selected{
  border-color:var(--gold);
  color:var(--gold);
  box-shadow:0 0 0 1px var(--goldSoft);
}

.booking-summary{ margin-top:10px; font-size:12px; color:var(--muted); line-height:1.5; }
.booking-footer{
  margin-top:10px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}
.booking-note{ font-size:11px; color:var(--mutedSoft); }

/* Testimonials */
.testimonials-card{
  border-radius:var(--radius);
  border:1px solid rgba(148,163,184,.25);
  background:#000000;
  padding:14px 14px 12px;
  box-shadow:var(--shadow-card);
  font-size:13px;
  min-height:160px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  backdrop-filter:blur(18px);
  line-height:1.55;
}
.testimonial-text{ font-size:13px; color:var(--white); }
.testimonial-meta{
  margin-top:8px;
  font-size:11px;
  color:var(--mutedSoft);
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}

/* Service area map */
.map-layout{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(0,0.9fr);
  gap:18px;
  align-items:flex-start;
}
.map-card{
  border-radius:var(--radius);
  border:1px solid rgba(148,163,184,.25);
  background:radial-gradient(circle at 0 0,rgba(212,175,55,.16),transparent 55%),#000000;
  padding:12px;
  box-shadow:var(--shadow-card);
  font-size:13px;
  backdrop-filter:blur(18px);
}
.map-card-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  margin-bottom:8px;
  flex-wrap:wrap;
}
.map-card-header strong{ font-size:14px; color:var(--white); font-weight:800; }
.map-tag{
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--mutedSoft);
  padding:3px 8px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.35);
  background:#000000;
  font-weight:800;
}
.map-embed-wrap{
  margin-top:6px;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--goldSoft);
  background:#000000;
  position:relative;
}
.map-embed-wrap iframe{
  display:block;
  width:100%;
  height:260px;
  border:0;
  filter:grayscale(0.2) contrast(1.05);
}
.map-overlay{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 0 0,rgba(0,0,0,.45),transparent 60%),
    radial-gradient(circle at 100% 100%,rgba(0,0,0,.7),transparent 60%);
  mix-blend-mode:multiply;
}
.map-note{
  margin-top:6px;
  font-size:11px;
  color:var(--mutedSoft);
  line-height:1.45;
}

.zone-list{
  border-radius:var(--radius);
  border:1px solid rgba(148,163,184,.25);
  background:#000000;
  padding:12px;
  box-shadow:var(--shadow-card);
  font-size:12px;
  backdrop-filter:blur(18px);
  line-height:1.5;
}
.zone-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:8px;
  margin-bottom:6px;
}
.zone-row:last-child{margin-bottom:0;}
.zone-name{ font-weight:800; color:var(--white); }
.eta-badge{
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.12em;
  padding:3px 7px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.35);
  color:var(--mutedSoft);
  font-weight:800;
}

footer{
  margin-top:40px;
  padding-top:20px;
  border-top:1px solid rgba(15,23,42,.9);
  font-size:11px;
  color:var(--muted);
  text-align:center;
  line-height:1.6;
}
footer a{ color:var(--ink); }

.footer-social{
  margin-top:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}
.social-icon{
  width:38px;
  height:38px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(148,163,184,.25);
  background:rgba(0,0,0,.65);
  color:var(--gold);
  box-shadow:0 14px 32px rgba(0,0,0,.95);
  transition:transform .18s ease-out, color .18s ease-out, background .18s ease-out, border-color .18s ease-out;
}
.social-icon:hover{
  transform:translateY(-1px);
  color:var(--gold);
  background:rgba(0,0,0,.8);
  border-color:rgba(212,175,55,.35);
}
.social-icon:focus-visible{
  outline:2px solid rgba(34,211,238,.85);
  outline-offset:2px;
}

/* Sticky mobile call bar */
.mobile-call-bar{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:60;
  padding:10px 16px 12px;
  background:linear-gradient(180deg,rgba(10,10,10,.94),rgba(0,0,0,.98));
  border-top:1px solid rgba(212,175,55,.22);
  display:flex;
  align-items:center;
  gap:12px;
  box-shadow:0 -10px 30px rgba(0,0,0,.8);
}
.mobile-call-bar .phone{
  font-weight:800;
  font-size:14px;
  color:var(--white);
  line-height:1.1;
}
.mobile-call-bar small{
  display:block;
  font-size:10px;
  color:var(--muted);
}
.mobile-call-bar .btn{
  justify-content:center;
  padding:10px 14px;
  font-size:13px;
  white-space:nowrap;
}
.footer-contact-copy{
  min-width:0;
  flex:1;
}
.footer-email-btn{
  width:46px;
  height:46px;
  min-width:46px;
  border-radius:14px;
  border:1px solid rgba(212,175,55,.6);
  background:#050505;
  color:var(--gold);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.03);
}
.footer-email-btn span{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
.footer-email-btn:hover,
.footer-email-btn:focus-visible{
  border-color:var(--gold);
  box-shadow:0 0 0 1px rgba(15,23,42,.96),0 0 16px rgba(212,175,55,.28);
}
.footer-call-btn{
  min-width:118px;
}

/* ===== FLOATING ASSISTANT (bottom-left) ===== */
.leak-chat-widget{
  position:fixed;
  left:16px;
  bottom:8px;
  z-index:80;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
  pointer-events:none;
}

/* Floating row: social icons + open chat button */
.leak-float-row{
  pointer-events:none;
  display:flex;
  align-items:center;
  gap:8px;
}
.leak-float-social{ display:flex; align-items:center; gap:8px; pointer-events:auto; }
.leak-float-ic{
  pointer-events:auto;
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid rgba(212,175,55,.55);
  background:linear-gradient(180deg,rgba(0,0,0,.9),rgba(15,23,42,.85));
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 14px 32px rgba(0,0,0,.95);
  transition:transform .2s ease-out, background .2s ease-out, color .2s ease-out;
  color:var(--gold);
}
.leak-float-ic:hover{
  background:linear-gradient(180deg,rgba(0,0,0,.95),rgba(15,23,42,.92));
  color:var(--white);
  transform:translateY(-1px);
}
.leak-float-ic:focus-visible{
  outline:2px solid rgba(34,211,238,.85);
  outline-offset:2px;
}
.leak-float-ic svg{ display:block; }

/* Collapsed open button */
.leak-chat-fab{
  pointer-events:auto;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(212,175,55,.55);
  background:linear-gradient(180deg,rgba(0,0,0,.9),rgba(15,23,42,.85));
  color:var(--gold);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 14px 32px rgba(0,0,0,.95);
  transition:transform .2s ease-out, opacity .2s ease-out, background .2s ease-out, color .2s ease-out;
}
.leak-chat-fab:hover{
  background:linear-gradient(180deg,rgba(0,0,0,.95),rgba(15,23,42,.92));
  color:var(--white);
  transform:translateY(-1px);
}
.leak-chat-fab:focus-visible{
  outline:2px solid rgba(34,211,238,.85);
  outline-offset:2px;
}
.leak-chat-widget.open .leak-chat-fab{
  opacity:0;
  transform:translateY(6px) scale(.98);
  pointer-events:none;
}
.leak-chat-panel{
  pointer-events:auto;
  width:360px;
  max-height:70vh;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  overflow:visible;
  border:none;
  background:transparent;
  box-shadow:none;
  transform:translateY(130%);
  opacity:0;
  transition:transform .25s ease-out, opacity .25s ease-out;
}
.leak-chat-widget.open .leak-chat-panel{
  transform:translateY(0);
  opacity:1;
}
.leak-chat-header{
  padding:4px 8px 2px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  background:transparent;
}
.leak-chat-title{
  font-size:11px;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--gold);
}
.leak-chat-sub{
  font-size:10px;
  color:var(--muted);
  line-height:1.35;
}
.leak-chat-close{
  border:none;
  background:rgba(0,0,0,.75);
  color:var(--muted);
  font-size:14px;
  cursor:pointer;
  width:24px;
  height:24px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 24px rgba(0,0,0,.85);
}
.leak-chat-close:hover{
  background:rgba(0,0,0,.95);
  color:var(--white);
}
.leak-chat-body{
  padding:4px 2px 4px;
  display:flex;
  flex-direction:column;
  gap:4px;
  background:transparent;
}
.chat-stream{
  flex:1;
  min-height:120px;
  max-height:48vh;
  padding:4px 2px 2px;
  overflow-y:auto;
  display:flex;
  flex-direction:column;
  gap:8px;
  scroll-behavior:smooth;
}
.bubble{
  max-width:100%;
  border-radius:14px;
  padding:7px 10px;
  font-size:12px;
  line-height:1.35;
  white-space:pre-line;
  backdrop-filter:blur(10px);
}
.bubble-assistant{
  align-self:flex-start;
  background:
    radial-gradient(circle at 0 0,rgba(212,175,55,.25),transparent 60%),
    linear-gradient(135deg,rgba(15,23,42,.98),rgba(0,0,0,.96));
  border:1px solid rgba(212,175,55,.55);
  box-shadow:0 14px 32px rgba(0,0,0,.95);
  color:var(--white);
}
.bubble-user{
  align-self:flex-end;
  background:linear-gradient(135deg,#fef9c3,#facc15);
  border:1px solid rgba(254,249,195,.95);
  color:#111827;
  box-shadow:0 14px 32px rgba(0,0,0,.95);
}
.bubble-enter{ animation:bubbleIn .22s ease-out; }
@keyframes bubbleIn{
  from{opacity:0;transform:translateY(8px) scale(.97);}
  to{opacity:1;transform:translateY(0) scale(1);}
}
.options-row{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  align-self:flex-start;
  margin-top:2px;
}
.chip{
  padding:6px 9px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.4);
  background:rgba(5,5,12,.95);
  color:var(--muted);
  font-size:11px;
  cursor:pointer;
  min-height:30px;
  display:inline-flex;
  align-items:center;
  box-shadow:0 10px 26px rgba(0,0,0,.85);
}
.chip:hover{
  border-color:rgba(212,175,55,.9);
  color:var(--white);
}
.chip.selected{
  border-color:rgba(212,175,55,.95);
  color:var(--white);
  background:radial-gradient(circle at 0 0,rgba(212,175,55,.45),transparent 65%);
  box-shadow:0 0 0 1px rgba(15,23,42,.96),0 18px 38px rgba(15,23,42,.96);
}
.chip:disabled{ opacity:.65; cursor:default; }
.chat-start-btn{
  align-self:flex-start;
  border-radius:999px;
  border:1px solid rgba(212,175,55,.7);
  background:linear-gradient(135deg,#020617,#020106);
  color:var(--white);
  font-size:11px;
  padding:6px 10px;
  cursor:pointer;
  box-shadow:0 10px 28px rgba(0,0,0,.9);
}
.chat-start-btn:hover{
  border-color:var(--gold);
  box-shadow:0 0 0 1px rgba(15,23,42,.96),0 0 18px rgba(212,175,55,.45);
}
.leak-chat-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:8px;
  font-size:10px;
  color:var(--muted);
  padding:4px 2px 2px;
}
.badge-dot{
  width:7px;height:7px;border-radius:999px;
  background:var(--gold);
  box-shadow:0 0 10px rgba(212,175,55,.75);
  display:inline-block;
}
.leak-chat-footer-cta{
  display:flex;
  gap:6px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.connect-btn{
  border-radius:999px;
  border:1px solid rgba(212,175,55,.7);
  background:rgba(0,0,0,.9);
  color:var(--white);
  font-size:10px;
  padding:4px 8px;
  display:inline-flex;
  align-items:center;
  gap:4px;
  text-decoration:none;
}
.connect-btn:hover{
  border-color:var(--gold);
  box-shadow:0 0 0 1px rgba(15,23,42,.96),0 0 14px rgba(212,175,55,.45);
}

.contact-form{ display:flex; flex-direction:column; gap:6px; margin-top:6px; }
.section-mini-title{ margin:0; font-size:14px; letter-spacing:.2px; }
.section-mini-sub{ margin:0 0 4px; font-size:11px; color:var(--muted); }
.contact-status{ margin-top:6px; font-size:11px; color:var(--muted); }
.contact-status.ok{ color:var(--ok); }
.contact-status.err{ color:var(--danger); }
.field-row{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:6px; }
.field{ display:flex; flex-direction:column; gap:2px; font-size:11px; }
.field-label{ font-size:10px; color:var(--muted); font-weight:800; }
.contact-input{
  background:#000;
  border-radius:9px;
  border:1px solid var(--borderSoft);
  padding:6px 8px;
  color:var(--white);
  font-size:11px;
  min-height:30px;
  box-shadow:inset 0 0 0 1px rgba(15,23,42,.9);
  outline:none;
}
.contact-input:focus-visible{
  outline:1px solid var(--gold);
  outline-offset:1px;
  border-color:var(--gold);
}
.contact-notes{
  background:#000;
  border-radius:9px;
  border:1px solid var(--borderSoft);
  padding:6px 8px;
  color:var(--white);
  font-size:11px;
  min-height:40px;
  resize:vertical;
  box-shadow:inset 0 0 0 1px rgba(15,23,42,.9);
  outline:none;
}
.btn-send{
  margin-top:2px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(212,175,55,.8);
  background:linear-gradient(135deg,#020617,#020106);
  color:var(--white);
  font-size:11px;
  cursor:pointer;
  align-self:flex-end;
  box-shadow:0 10px 26px rgba(0,0,0,.9);
}
.btn-send:hover{
  border-color:var(--gold);
  box-shadow:0 0 0 1px rgba(15,23,42,.96),0 0 16px rgba(212,175,55,.45);
}

.summary-text{ font-size:11px; margin-top:2px; line-height:1.4; }
.summary-reco{ margin-top:6px; font-size:11px; line-height:1.4; }
.summary-reco.emergency{color:#f87171;}
.summary-reco.priority{color:#fde68a;}
.summary-reco.standard{color:#4ade80;}
.badge-line{ font-size:10px; color:var(--muted); margin-top:6px; line-height:1.35; }

@keyframes goldGlow{
  0%{ box-shadow:var(--shadow-card); border-color:rgba(148,163,184,.25); transform:translateY(0); }
  30%{ box-shadow:0 0 22px 4px rgba(212,175,55,.75); border-color:var(--goldLine); transform:translateY(-2px); }
  60%{ box-shadow:0 0 14px 2px rgba(212,175,55,.55); border-color:var(--goldLine); transform:translateY(-1px); }
  100%{ box-shadow:var(--shadow-card); border-color:rgba(148,163,184,.25); transform:translateY(0); }
}

/* Small template helpers */
.ff-ul{ margin:8px 0 0 18px; font-size:13px; color:var(--muted); }
.ff-note{ margin-top:10px; font-size:12px; color:var(--mutedSoft); }
.ff-row{ display:flex; gap:8px; flex-wrap:wrap; }
.ff-list{ margin-top:8px; font-size:12px; color:var(--muted); }

/* Responsive */
@media (max-width:960px){
  .hero-grid{grid-template-columns:1fr}
  .hero-right{min-height:280px}
  .hero-tech{margin:18px auto 24px;max-width:420px}
  .feature-row{grid-template-columns:repeat(2,minmax(0,1fr))}
  .list-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .what-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .why-grid{grid-template-columns:1fr}
  .service-category-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .grid-2, .map-layout{grid-template-columns:1fr}
  .bg-photo::before{ background-size:min(86vmin, 760px); opacity:0; }
  .bg-photo::after{ background-size: 210px auto; opacity:0; }
}
@media (max-width:640px){
  .feature-row, .what-grid, .list-grid, .service-category-grid{grid-template-columns:1fr}
  .hero-copy{padding:22px 18px 28px}
  .header-inner{flex-direction:row; align-items:center; flex-wrap:nowrap;}
  header nav.primary-nav{display:none;}
  .nav-toggle{display:inline-flex; margin-left:auto;}
  .hero-title{font-size:26px;}
  .section-title{font-size:18px;}
  .hero-meta{flex-direction:column; align-items:flex-start;}
  .mobile-call-bar{gap:10px;}
  .footer-call-btn{min-width:104px;}
  body{padding-bottom:78px;}
  .leak-chat-widget{left:12px; bottom:90px;}
  .bg-photo::before{background-position:center 22%; opacity:0;}
  .field-row{grid-template-columns:1fr;}
}
@media (max-width:480px){
  .page-wrap{padding:0 12px 32px;}
  .hero-wrap{border-radius:18px;}
  .hero-tech{margin:14px 12px 20px;}
  .leak-chat-panel{width:90vw;}
}


/* SVG icon tint */
svg{ color:var(--gold); }

.icon-gold{ color:var(--gold); }


/* ===== Services: top actions ===== */
.service-top-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  margin:10px 0 18px;
}
.service-request-form{
  margin:8px 0 24px;
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(212,175,55,.28);
  background:rgba(0,0,0,.78);
  box-shadow:0 18px 34px rgba(0,0,0,.6);
}
.field-row-compact{ grid-template-columns:1.1fr .9fr; }
.service-request-actions{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; }

/* ===== Booking intake form ===== */
.booking-selected-services{
  margin-top:10px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(212,175,55,.35);
  background:rgba(0,0,0,.75);
  color:var(--muted);
  font-size:12px;
  line-height:1.35;
  box-shadow:inset 0 0 0 1px rgba(15,23,42,.9);
}
.booking-selected-services strong{ color:var(--white); }

.booking-intake{
  margin-top:12px;
  padding:12px;
  border-radius:18px;
  border:1px solid rgba(148,163,184,.22);
  background:rgba(0,0,0,.55);
  box-shadow:var(--shadow-card);
}
.booking-intake-title{
  color:var(--white);
  font-weight:900;
  margin-bottom:8px;
}
.ff-form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}
@media (max-width:640px){
  .ff-form-grid{ grid-template-columns:1fr; }
}
.ff-field{ display:flex; flex-direction:column; gap:4px; }
.ff-field label{
  font-size:11px;
  color:var(--muted);
  font-weight:800;
}
.ff-input,
.ff-textarea{
  background:#000;
  border-radius:12px;
  border:1px solid var(--borderSoft);
  padding:10px 10px;
  color:var(--white);
  font-size:12px;
  min-height:38px;
  box-shadow:inset 0 0 0 1px rgba(15,23,42,.9);
  outline:none;
}
.ff-textarea{ min-height:86px; resize:vertical; }
.ff-input:focus-visible,
.ff-textarea:focus-visible{
  outline:1px solid var(--gold);
  outline-offset:1px;
  border-color:var(--gold);
}

.booking-status{
  margin-top:10px;
  font-size:12px;
  color:var(--muted);
}
.booking-status.ok{ color:#34d399; }
.booking-status.err{ color:#f87171; }


@media (max-width: 760px){
  .page-wrap{ padding-bottom:96px; }
}
@media (min-width: 761px){
  .page-wrap{ padding-bottom:86px; }
  .mobile-call-bar{ padding-left:24px; padding-right:24px; }
}


/* Why Us core services image icons */
.why-services-grid .why-service-item{
  text-align:center;
}
.why-services-grid .why-service-item .mini-icon{
  width:124px;
  height:124px;
  margin:0 auto 14px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(255,200,74,.06), rgba(255,200,74,.015));
  border:1px solid rgba(255,200,74,.18);
  box-shadow:0 10px 34px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.03);
  overflow:hidden;
}
.why-services-grid .why-service-item .mini-icon.has-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.why-services-grid .why-service-item h4{
  margin-top:2px;
}
@media (max-width: 640px){
  .why-services-grid .why-service-item .mini-icon{
    width:104px;
    height:104px;
  }
}
