/* =================================================================
   GOLDEN AMBERSKY GLASS — Design System
   Palette: Dark Blue #0B1F3A · Golden Yellow #F4B400 · White #FFFFFF
   Display: Poppins  |  Body: Inter
   Signature: sliding "glass door" reveal motif (hero + section seams)
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Core palette (brief-mandated) */
  --navy:        #0B1F3A;
  --navy-deep:   #071527;
  --navy-glass:  #16294dcc;
  --gold:        #F4B400;
  --gold-soft:   #FFD766;
  --gold-deep:   #C88E00;
  --white:       #FFFFFF;

  /* Supporting neutrals */
  --ink:         #12161F;
  --slate:       #5B6478;
  --mist:        #F6F7FB;
  --line:        #E4E8F1;

  /* Elevation / glass */
  --glass-bg:    rgba(255, 255, 255, 0.62);
  --glass-bg-dark: rgba(11, 31, 58, 0.55);
  --glass-border: rgba(255, 255, 255, 0.35);
  --shadow-sm:   0 4px 16px rgba(11, 31, 58, 0.08);
  --shadow-md:   0 12px 32px rgba(11, 31, 58, 0.14);
  --shadow-lg:   0 24px 60px rgba(11, 31, 58, 0.22);

  --radius-sm:   10px;
  --radius-md:   18px;
  --radius-lg:   28px;

  --font-display: 'Poppins', 'Segoe UI', sans-serif;
  --font-body:    'Inter', 'Segoe UI', sans-serif;

  --container: 1240px;
  --header-height: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    padding: 0;
    min-height: 100%;
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.1rem, 4vw, 3.4rem); font-weight: 800; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.3rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1em; color: var(--slate); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 12px;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--gold); border-radius: 2px; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  padding: 14px 28px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--gold-soft); outline-offset: 2px; }
.btn-gold { background: var(--gold); color: var(--navy-deep); box-shadow: var(--shadow-sm); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--gold-soft); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: .82rem; }

/* ---------------- Header / Nav ---------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: var(--header-height);
  z-index: 9999;
  background: rgba(11,31,58,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

body {
  padding-top: var(--header-height);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 12px 24px; max-width: var(--container); margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 50px; width: auto; }
.brand-text { display: none; }
.nav-links { display: none; align-items: center; gap: 28px; }
.nav-links a {
  color: rgba(255,255,255,.88);
  transition: color .2s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a.active {
  color: var(--gold);
}
.nav-cta { display: none; align-items: center; gap: 12px; }
.nav-toggle {
  display: inline-flex; background: none; border: none; color: var(--white);
  font-size: 1.6rem; cursor: pointer; padding: 4px;
}
@media (min-width: 960px) {
  .brand-text { display: block; }
  .brand-title { font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: 1.05rem; }
  .brand-sub { font-size: .68rem; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; }
  .nav-links { display: flex; }
  .nav-cta { display: flex; }
  .nav-toggle { display: none; }
}
.mobile-menu {
  display: none; flex-direction: column; gap: 4px; padding: 10px 24px 20px;
  background: var(--navy-deep); border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,.85); padding: 12px 4px; border-bottom: 1px solid rgba(255,255,255,0.06); font-weight: 500; }
.mobile-menu .btn { margin-top: 10px; }

.product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f5f7fa;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.product-image img,
.product-detail-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.card:hover .product-image img {
  transform: scale(1.04);
}

.product-detail-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #f5f7fa;
}

.product-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: .9rem;
  background: #f5f7fa;
}

.project-description {
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 18px;
}

.project-meta {
  font-size: .84rem;
  line-height: 1.8;
  color: var(--slate);
  margin: 0;
}

.project-meta strong {
  color: var(--ink);
}

/* ---------------- Hero (signature: sliding glass door reveal) ---------------- */

/* =========================================
   HERO BACKGROUND
========================================= */

.hero {
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  text-align: center;
  width: 100%;
  margin: 0 auto 20px;
  display: block;
}

/* Actual background image */
.hero-background {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  /*
   * SHOW THE WHOLE IMAGE
   * Walang crop.
   */
  object-fit: fill;
  object-position: center center;

  z-index: -3;

  animation: heroBackgroundZoom 18s ease-in-out infinite alternate;

  pointer-events: none;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(3, 18, 38, 0.42) 0%,
      rgba(3, 18, 38, 0.55) 100%
    );

  z-index: -2;

  pointer-events: none;
}

/* Background zoom */
@keyframes heroBackgroundZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.02);
  }
}

/* =========================================
   HERO CONTENT
========================================= */

.hero-inner {
  max-width: var(--container);
  min-height: calc(100svh - 60px);

  margin: 0 auto;
  padding: 70px 24px;

  position: relative;
  z-index: 10;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

/* =========================================
   HERO TEXT
========================================= */

.hero h1 {
  color: var(--white);
}

.hero h1 .accent {
  color: var(--gold);
}

.hero p.lead {
  color: rgba(255,255,255,.82);
  font-size: 1.08rem;
  max-width: 760px;

  margin-left: auto;
  margin-right: auto;
}

/* =========================================
   BUTTONS
========================================= */

.hero-ctas {
  display: flex;

  justify-content: center;
  align-items: center;

  flex-wrap: wrap;

  gap: 14px;

  margin-top: 18px;
}

/* =========================================
   PHONE
========================================= */

.hero-phone {
  margin-top: 28px;

  text-align: center;
}

.hero-phone span {
  display: block;

  font-size: .72rem;
  font-weight: 700;

  letter-spacing: .14em;
  text-transform: uppercase;

  color: rgba(255,255,255,.72);
}

.hero-phone a {
  display: block;

  margin-top: 4px;

  color: var(--gold);

  font-size: 1.3rem;
  font-weight: 800;

  text-decoration: none;
}

/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

  .hero-background {
    animation: none;
    transform: none;
  }

}
/* ---------------- Automatic sliding-door hero ---------------- */
.door-rig {
  position:absolute; inset:0; z-index:1; pointer-events:none; overflow:hidden;
  perspective:1400px;
}
.door-rig::before {
  content:""; position:absolute; inset:0;
  background:linear-gradient(90deg,rgba(255,255,255,.05),transparent 18%,transparent 82%,rgba(255,255,255,.05));
}
.pane {
  position:absolute; top:0; bottom:0; width:50.15%;
  overflow:hidden;
  background:
    linear-gradient(105deg,rgba(255,255,255,.13),rgba(255,255,255,.035) 28%,rgba(11,31,58,.16) 72%,rgba(244,180,0,.08)),
    linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.015));
  border:1px solid rgba(255,255,255,.20);
  box-shadow:inset 0 0 45px rgba(255,255,255,.035),0 0 24px rgba(0,0,0,.12);
  backdrop-filter:blur(3px); -webkit-backdrop-filter:blur(3px);
  transition:transform 1.35s cubic-bezier(.16,.9,.2,1);
  will-change:transform;
}
.pane::before {
  content:""; position:absolute; inset:0;
  background:repeating-linear-gradient(90deg,transparent 0,transparent 48%,rgba(255,255,255,.045) 49%,transparent 50%);
  opacity:.7;
}
.pane::after {
  content:""; position:absolute; top:0; bottom:0; width:3px;
  background:linear-gradient(180deg,rgba(244,180,0,.05),rgba(244,180,0,.8) 45%,rgba(244,180,0,.05));
  box-shadow:0 0 14px rgba(244,180,0,.28);
}
.pane.left {left:0; transform:translateX(0);}
.pane.left::after {right:0;}
.pane.right {right:0; transform:translateX(0);}
.pane.right::after {left:0;}
.hero.doors-open .pane.left {transform:translateX(-100%);}
.hero.doors-open .pane.right {transform:translateX(100%);}
.pane-track {
  position:absolute; top:0; bottom:0; left:50%; width:4px; transform:translateX(-50%);
  background:linear-gradient(180deg,rgba(244,180,0,.18),rgba(244,180,0,.85) 45%,rgba(244,180,0,.15));
  box-shadow:0 0 18px rgba(244,180,0,.25); opacity:.75;
  transition:opacity .35s ease;
}
.hero.doors-open .pane-track {opacity:.2;}
.hero.doors-reduced .pane {transition:none;}

@media (max-width: 700px) {
  .hero-inner {padding:72px 18px 56px;}
  .pane {width:50.6%;}
  .pane-track {width:3px;}
}

@media (prefers-reduced-motion: reduce) {
  .pane {transition:none !important;}
  .hero.doors-open .pane {transform:none;}
  .hero.doors-open .pane-track {opacity:.55;}
}

/* ---------------- Sections ---------------- */
.section { padding: 84px 0; }
.section-mist { background: var(--mist); }
.section-navy { background: var(--navy); color: rgba(255,255,255,.85); }
.section-navy h2 { color: var(--white); }
.section-head { max-width: 640px; margin: 0 0 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------------- Cards (glassmorphism) ---------------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  overflow: hidden; transition: transform .22s ease, box-shadow .22s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card .card-media { aspect-ratio: 4/3; background: linear-gradient(135deg, var(--navy), #1c3763); position: relative; overflow: hidden; }
.card .card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 20px 22px 24px; }
.card-body h3 { margin-bottom: 6px; }
.card-tag {
  position: absolute; top: 12px; left: 12px; background: var(--gold); color: var(--navy-deep);
  font-family: var(--font-display); font-weight: 700; font-size: .68rem; padding: 4px 10px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .05em;
}

.glass-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  padding: 28px;
}
.section-navy .glass-card { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); }

/* ---------------- Why choose us / icon list ---------------- */
.icon-tile { display: flex; gap: 16px; align-items: flex-start; }
.icon-badge {
  flex: none; width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(150deg, var(--gold), var(--gold-deep));
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-deep); font-size: 1.3rem; font-weight: 700; box-shadow: var(--shadow-sm);
}

/* ---------------- CTA banner ---------------- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy), var(--navy-deep));
  border-radius: var(--radius-lg); padding: 48px; color: var(--white);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
  position: relative; overflow: hidden;
}
.cta-banner::after {
  content: ''; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(244,180,0,0.35), transparent 70%);
}
.cta-banner h2 { color: var(--white); margin-bottom: 6px; }

/* ---------------- Forms ---------------- */
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .88rem; color: var(--navy); margin-bottom: 6px; }
.field .hint { font-size: .78rem; color: var(--slate); margin-top: 4px; }
.field input[type=text], .field input[type=email], .field input[type=tel],
.field input[type=date], .field input[type=number], .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: var(--radius-sm); border: 1.5px solid var(--line);
  font-family: var(--font-body); font-size: .95rem; background: var(--white); color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(244,180,0,0.18);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 18px; }
.upload-drop {
  border: 2px dashed var(--line); border-radius: var(--radius-sm); padding: 22px; text-align: center;
  color: var(--slate); font-size: .88rem; cursor: pointer; transition: border-color .15s, background .15s;
}
.upload-drop:hover, .upload-drop.dragover { border-color: var(--gold); background: #FFFBEF; }
.file-list { list-style: none; padding: 0; margin: 10px 0 0; display: flex; flex-direction: column; gap: 6px; }
.file-list li { font-size: .82rem; background: var(--mist); border-radius: 8px; padding: 7px 10px; display: flex; justify-content: space-between; gap: 10px; }
.file-list button { border: none; background: none; color: #C0392B; cursor: pointer; font-size: .78rem; font-weight: 600; }

/* ---------------- Multi-step quote form ---------------- */
.stepper { display: flex; justify-content: space-between; margin-bottom: 38px; gap: 8px; }
.step-dot { flex: 1; text-align: center; position: relative; }
.step-dot .num {
  width: 34px; height: 34px; border-radius: 50%; background: var(--white); border: 2px solid var(--line);
  color: var(--slate); font-weight: 700; font-family: var(--font-display); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 8px; transition: all .2s;
}
.step-dot.active .num { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
.step-dot.done .num { background: var(--navy); border-color: var(--navy); color: var(--white); }
.step-dot span.label { font-size: .74rem; color: var(--slate); }
.step-dot:not(:last-child)::after {
  content: ''; position: absolute; top: 17px; left: 60%; right: -40%; height: 2px; background: var(--line); z-index: -1;
}
.step-dot.done:not(:last-child)::after { background: var(--navy); }
.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn .35s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px);} to { opacity: 1; transform: translateY(0);} }
.step-actions { display: flex; justify-content: space-between; margin-top: 28px; gap: 12px; }

.alert { border-radius: var(--radius-sm); padding: 14px 16px; font-size: .9rem; margin-bottom: 18px; }
.alert-success { background: #E8F7EE; color: #1E7A43; border: 1px solid #BEEBCF; }
.alert-error { background: #FCEBEA; color: #B3261E; border: 1px solid #F6C6C2; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.7); padding-top: 60px; }
.footer-grid { display: grid; gap: 36px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.site-footer h4 { color: var(--white); font-size: .95rem; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding: 22px 0; font-size: .8rem; }
.social-row { display: flex; gap: 10px; }
.social-row a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; transition: all .15s; }
.social-row a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }

/* Back to top button */
.back-to-top {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: var(--shadow-md);
  font-size: 1.05rem;
  cursor: pointer;
  z-index: 95;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease, background .2s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}

.back-to-top:focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .back-to-top {
    left: 14px;
    bottom: 14px;
    width: 46px;
    height: 46px;
  }
}

/* Floating contact buttons */
.float-contact { position: fixed; right: 20px; bottom: 20px; display: flex; flex-direction: column; gap: 12px; z-index: 90; }
.float-contact a {
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; box-shadow: var(--shadow-md); font-size: 1.2rem; transition: transform .15s;
}
.float-contact a:hover { transform: scale(1.08); }
.fc-whatsapp { background: #25D366; } .fc-viber { background: #7360F2; } .fc-messenger { background: #0084FF; } .fc-call { background: var(--gold); color: var(--navy-deep); }

/* Breadcrumbs / page header */
.page-header { background: var(--navy); color: var(--white); padding: 54px 0 34px; }
.page-header .crumbs { font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 10px; }
.page-header .crumbs a:hover { color: var(--gold); }

/* Filters */
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.filter-chip {
  padding: 9px 18px; border-radius: 999px; border: 1.5px solid var(--line); font-size: .85rem; font-weight: 600;
  color: var(--navy); cursor: pointer; background: var(--white); transition: all .15s;
}
.filter-chip.active, .filter-chip:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }

.status-badge { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.status-pending { background: #FFF3D6; color: #92640B; }
.status-processing { background: #DCEBFF; color: #1A5CB0; }
.status-approved { background: #DFF6E4; color: #1E7A43; }
.status-completed { background: #E4E1FB; color: #4B36C9; }
.status-rejected { background: #FCE4E2; color: #B3261E; }

.video-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16/9; background: var(--navy); }
.video-wrap video { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 640px) {
  .cta-banner { padding: 32px; text-align: center; justify-content: center; }
  .hero-inner { padding: 60px 20px 50px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}


/* ---------------- Client Logo Carousel ---------------- */
.client-logos-section{overflow:hidden;}
.client-logos-head{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;}

.client-logo-image{display:block;width:100%;height:82px;object-fit:contain;object-position:center;}
.sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important;}
.client-carousel-controls{display:flex;gap:8px;flex:0 0 auto;}
.client-carousel-btn{width:42px;height:42px;border:1px solid rgba(10,27,58,.15);border-radius:50%;background:var(--white);color:var(--navy);font-size:18px;cursor:pointer;transition:transform .2s ease,background .2s ease,color .2s ease;}
.client-carousel-btn:hover{transform:translateY(-2px);background:var(--navy);color:var(--white);}
.client-carousel{position:relative;overflow:hidden;margin-top:28px;outline:none;}
.client-carousel:focus-visible{box-shadow:0 0 0 3px rgba(212,175,55,.45);border-radius:var(--radius-md);}
.client-carousel-track{display:flex;gap:18px;will-change:transform;transition:transform .55s cubic-bezier(.22,.61,.36,1);}
.client-logo-card{flex:0 0 clamp(180px,23vw,250px);min-height:125px;padding:22px 20px;border:1px solid rgba(10,27,58,.10);border-radius:var(--radius-md);background:var(--white);box-shadow:var(--shadow-sm);display:flex;align-items:center;justify-content:center;gap:14px;text-align:center;transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;}
.client-logo-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);border-color:rgba(212,175,55,.55);}
.client-logo-mark{width:52px;height:52px;flex:0 0 52px;border:2px solid var(--gold);border-radius:14px;display:grid;place-items:center;color:var(--navy);font-weight:800;font-size:18px;background:linear-gradient(145deg,#fff,#f6f7fa);}
.client-logo-card span{font-weight:800;color:var(--navy);font-size:.9rem;line-height:1.25;}
.client-logo-empty{margin:0 auto;}
.client-logos-note{margin:16px 0 0;text-align:center;font-size:.78rem;color:#6d7480;}
@media (max-width:700px){
  .client-logos-head{align-items:center;}
  .client-logos-head h2{font-size:1.55rem;}
  .client-carousel-btn{width:38px;height:38px;}
  .client-logo-card{flex-basis:78vw;min-height:105px;}
}
@media (prefers-reduced-motion:reduce){
  .client-carousel-track,.client-logo-card,.client-carousel-btn{transition:none!important;}
}

/* ---------------- Client Logo Carousel — compact responsive override ---------------- */
.client-logos-section{overflow:hidden;padding-top:64px;padding-bottom:64px;}
.client-logos-head{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:26px;}
.client-carousel-controls{display:flex;gap:8px;flex:0 0 auto;}
.client-carousel-btn{
  width:40px;height:40px;padding:0;border:1px solid var(--line);border-radius:50%;
  background:var(--white);color:var(--navy);font-size:17px;line-height:1;cursor:pointer;
  display:grid;place-items:center;transition:transform .2s ease,background .2s ease,color .2s ease,border-color .2s ease;
}
.client-carousel-btn:hover{transform:translateY(-2px);background:var(--navy);color:var(--white);border-color:var(--navy);}
.client-carousel{position:relative;overflow:hidden;width:100%;margin-top:0;outline:none;}
.client-carousel-track{
  display:flex;gap:16px;align-items:stretch;will-change:transform;
  transition:transform .65s cubic-bezier(.22,.61,.36,1);
}
.client-logo-card{
  flex:0 0 calc((100% - 64px)/5);min-width:0;height:126px;padding:14px 16px;
  border:1px solid var(--line);border-radius:14px;background:var(--white);
  box-shadow:var(--shadow-sm);display:flex;flex-direction:column;align-items:center;
  justify-content:center;gap:9px;text-align:center;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}
.client-logo-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-md);border-color:rgba(244,180,0,.55);}
.client-logo-frame{
  width:100%;height:72px;display:flex;align-items:center;justify-content:center;overflow:hidden;
}
.client-logo-image{
  display:block;width:auto!important;height:auto!important;max-width:130px!important;max-height:62px!important;
  object-fit:contain;object-position:center;margin:0 auto;
}
.client-logo-name{
  display:block;font-size:.72rem;font-weight:700;color:var(--slate);line-height:1.2;
  max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
}
.client-logo-empty{margin:0;}
@media (max-width:1050px){
  .client-logo-card{flex-basis:calc((100% - 32px)/3);}
}
@media (max-width:700px){
  .client-logos-section{padding-top:48px;padding-bottom:48px;}
  .client-logos-head{align-items:center;margin-bottom:20px;}
  .client-logos-head h2{font-size:1.55rem;}
  .client-logo-card{flex-basis:calc((100% - 16px)/2);height:112px;padding:12px;}
  .client-logo-frame{height:62px;}
  .client-logo-image{max-width:105px!important;max-height:50px!important;}
  .client-logo-name{font-size:.68rem;}
}
@media (max-width:440px){
  .client-logo-card{flex-basis:100%;}
}
@media (prefers-reduced-motion:reduce){
  .client-carousel-track,.client-logo-card,.client-carousel-btn{transition:none!important;}
}

/* ---------------- Homepage hero refinements ---------------- */
.hero {
  isolation: isolate;
  min-height: 680px;
  background: var(--navy-deep);
}
.hero::before {
  content: "";
  position: absolute;
  inset: -5%;
  z-index: 0;
  background-image: url('../img/hero-bg.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1);
  animation: heroBackgroundZoom 14s ease-in-out infinite alternate;
  will-change: transform;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(7,21,39,.48), rgba(7,21,39,.72)),
    linear-gradient(90deg, rgba(7,21,39,.60), rgba(7,21,39,.28), rgba(7,21,39,.62));
  pointer-events: none;
}
.hero-inner-centered {
  min-height: 680px;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 24px;
}
.hero-inner-centered .eyebrow { margin-left: auto; margin-right: auto; }
.hero-inner-centered h1 { max-width: 900px; margin-left: auto; margin-right: auto; text-shadow: 0 4px 24px rgba(0,0,0,.28); }
.hero-inner-centered .lead { max-width: 720px !important; margin-left: auto; margin-right: auto; text-shadow: 0 2px 12px rgba(0,0,0,.25); }
.hero-inner-centered .hero-ctas { justify-content: center; }
.hero-phone {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-top: 8px;
  padding: 12px 24px 13px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(7,21,39,.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,.16);
}
.hero-phone span {
  color: rgba(255,255,255,.68);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-phone a {
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  letter-spacing: .02em;
}
.hero-phone a:hover { color: var(--gold-soft); }
@keyframes heroBackgroundZoom {
  from { transform: scale(1); }
  to { transform: scale(1.09); }
}
.featured-products-grid .card-media { aspect-ratio: 4 / 3; }

@media (max-width: 700px) {
  .hero, .hero-inner-centered { min-height: 620px; }
  .hero-inner-centered { padding-top: 80px; padding-bottom: 56px; }
  .hero::before { animation-duration: 18s; }
  .hero-phone { padding-left: 20px; padding-right: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none !important; transform: scale(1.02); }
}


/* =================================================================
   RESPONSIVE REFINEMENT — HOME / SERVICES
   ================================================================= */

/* Keep all homepage content visually centered and prevent overflow. */
.hero,
.hero-inner,
.hero-inner-centered,
.section,
.section .container {
  width: 100%;
}

.hero-inner-centered {
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-inner-centered > * {
  margin-inline: auto;
}

.hero-inner-centered .lead {
  width: min(100%, 760px);
}

.hero-ctas {
  width: 100%;
  justify-content: center;
}

.featured-products-grid,
.section .grid {
  width: 100%;
}

/* Services icon inside the yellow badge. */
.service-icon-badge {
  width: 64px;
  height: 64px;
  font-size: 1.45rem;
  flex: 0 0 64px;
}
.service-icon-badge i {
  line-height: 1;
  font-size: 1.35em;
}

/* Make cards equal-height on wider screens without breaking mobile. */
.services-grid .card,
.grid.grid-4 .card {
  height: 100%;
}
.services-grid .card-body,
.grid.grid-4 .card-body {
  display: flex;
  flex-direction: column;
}
.services-grid .card-body .btn,
.grid.grid-4 .card-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

@media (max-width: 959px) {
  .nav-wrap {
    padding-inline: 18px;
  }

  .hero {
    min-height: 640px;
    aspect-ratio: auto;
  }

  .hero-inner,
  .hero-inner-centered {
    min-height: 640px;
    padding: 72px 20px 54px;
  }

  .hero-inner-centered h1 {
    width: min(100%, 760px);
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero-inner-centered .lead {
    font-size: 1rem;
  }

  .section {
    padding-block: 64px;
  }

  .container {
    padding-inline: 20px;
  }
}

@media (max-width: 640px) {
  .hero,
  .hero-inner,
  .hero-inner-centered {
    min-height: 600px;
  }

  .hero-inner,
  .hero-inner-centered {
    padding: 68px 16px 48px;
    gap: 16px;
  }

  .hero-inner-centered h1 {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
    line-height: 1.08;
    max-width: 100%;
  }

  .hero-inner-centered .lead {
    font-size: .94rem;
    line-height: 1.55;
    max-width: 100% !important;
  }

  .hero-ctas {
    flex-direction: column;
    width: min(100%, 330px);
    gap: 10px;
    margin-top: 8px;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-phone {
    max-width: 100%;
    padding: 10px 18px 11px;
    margin-top: 8px;
  }

  .section {
    padding-block: 52px;
  }

  .container {
    padding-inline: 16px;
  }

  .section-head {
    text-align: center;
  }

  .section-head .eyebrow {
    justify-content: center;
  }

  .grid,
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .card-body {
    padding: 18px 18px 22px;
  }

  .card-body .btn {
    width: 100%;
  }

  .video-wrap {
    width: 100%;
  }

  .video-wrap video {
    width: 100%;
    height: auto;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }

  /* Prevent the decorative door animation from covering small-screen content. */
  .door-rig {
    opacity: .28;
  }
}

@media (max-width: 420px) {
  .hero-inner,
  .hero-inner-centered {
    padding-inline: 14px;
  }

  .hero-inner-centered h1 {
    font-size: 1.8rem;
  }

  .hero-inner-centered .lead {
    font-size: .9rem;
  }

  .hero-phone a {
    font-size: 1.08rem;
  }
}


/* =====================================================================
   FINAL MOBILE HERO FIX — prevent horizontal clipping / off-screen text
   ===================================================================== */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.hero {
  width: 100%;
  max-width: 100vw;
  min-height: 680px;
  height: 680px;
  aspect-ratio: auto;
  overflow: hidden;
  position: relative;
}

.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  transform-origin: center center;
  z-index: 0;
}

.hero-overlay {
  z-index: 1;
}

.hero::before,
.hero::after {
  pointer-events: none;
}

.hero-inner.hero-inner-centered {
  position: relative;
  z-index: 20;
  width: 100%;
  max-width: var(--container);
  min-height: 680px;
  height: 100%;
  margin: 0 auto;
  padding: 80px 24px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  overflow: visible;
  transform: none !important;
  left: auto;
  right: auto;
}

.hero-inner.hero-inner-centered > * {
  position: relative;
  left: auto;
  right: auto;
  transform: none;
  float: none;
  margin-left: auto;
  margin-right: auto;
}

.hero-inner.hero-inner-centered .eyebrow,
.hero-inner.hero-inner-centered h1,
.hero-inner.hero-inner-centered .lead,
.hero-inner.hero-inner-centered .hero-ctas,
.hero-inner.hero-inner-centered .hero-phone {
  width: 100%;
}

.hero-inner.hero-inner-centered h1 {
  max-width: 900px;
  color: #fff;
  text-align: center;
}

.hero-inner.hero-inner-centered .lead {
  max-width: 760px !important;
  color: rgba(255,255,255,.92);
  text-align: center;
}

.hero-inner.hero-inner-centered .hero-ctas {
  max-width: 700px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.hero-inner.hero-inner-centered .hero-phone {
  max-width: max-content;
}

@media (max-width: 959px) {
  .hero {
    min-height: 620px;
    height: 620px;
  }

  .hero-inner.hero-inner-centered {
    min-height: 620px;
    height: 620px;
    width: 100%;
    max-width: 100%;
    padding: 72px 20px 48px;
  }

  .hero-inner.hero-inner-centered h1 {
    max-width: 720px;
    font-size: clamp(2rem, 7vw, 3rem);
    line-height: 1.08;
  }

  .hero-inner.hero-inner-centered .lead {
    max-width: 680px !important;
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 620px;
    height: 620px;
  }

  /* The glass-door animation is decorative only. Removing it on phones
     guarantees it can never cover or push the hero copy off-screen. */
  .hero .door-rig {
    display: none;
  }

  .hero-background {
    object-fit: cover;
    object-position: 50% 50%;
    animation: none;
    transform: none;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(7,21,39,.60) 0%, rgba(7,21,39,.78) 100%),
      linear-gradient(90deg, rgba(7,21,39,.38), rgba(7,21,39,.38));
  }

  .hero-inner.hero-inner-centered {
    min-height: 620px;
    height: 620px;
    width: 100%;
    max-width: none;
    padding: 72px 16px 44px;
    gap: 12px;
  }

  .hero-inner.hero-inner-centered .eyebrow {
    width: auto;
    max-width: 100%;
    font-size: .67rem;
    letter-spacing: .10em;
    line-height: 1.35;
  }

  .hero-inner.hero-inner-centered h1 {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
    font-size: clamp(1.85rem, 9vw, 2.5rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-inner.hero-inner-centered .lead {
    width: 100%;
    max-width: 100% !important;
    margin: 0 auto;
    font-size: .91rem;
    line-height: 1.5;
    padding: 0 2px;
  }

  .hero-inner.hero-inner-centered .hero-ctas {
    width: min(100%, 330px);
    max-width: 330px;
    flex-direction: column;
    gap: 9px;
    margin: 4px auto 0;
  }

  .hero-inner.hero-inner-centered .hero-ctas .btn {
    width: 100%;
    max-width: 330px;
    min-height: 48px;
  }

  .hero-inner.hero-inner-centered .hero-phone {
    width: auto;
    max-width: 100%;
    margin: 4px auto 0;
    padding: 9px 17px 10px;
  }
}

@media (max-width: 420px) {
  .hero,
  .hero-inner.hero-inner-centered {
    min-height: 600px;
    height: 600px;
  }

  .hero-inner.hero-inner-centered {
    padding: 66px 14px 38px;
    gap: 10px;
  }

  .hero-inner.hero-inner-centered h1 {
    font-size: 1.78rem;
  }

  .hero-inner.hero-inner-centered .lead {
    font-size: .86rem;
    line-height: 1.48;
  }

  .hero-inner.hero-inner-centered .hero-phone a {
    font-size: 1.02rem;
  }
}

/* FINAL HOMEPAGE FULL-VIEW HERO */
.hero {
  min-height: calc(100svh - 72px) !important;
  height: calc(100svh - 72px);
  aspect-ratio: auto !important;
  width: 100%;
}
.hero-background {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}
.hero-inner,
.hero-inner-centered {
  min-height: 100% !important;
  height: 100%;
  width: min(100%, var(--container));
  margin-inline: auto;
}
@media (max-width: 700px) {
  .hero {
    min-height: calc(100svh - 60px) !important;
    height: auto;
  }
  .hero-inner,
  .hero-inner-centered {
    min-height: 100svh !important;
    height: auto;
    padding: 90px 18px 60px !important;
  }
  .hero-background { object-fit: cover !important; }
}

/* FIXED HEADER - KEEP ORIGINAL DESIGN */
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;

  /* KEEP ORIGINAL HEADER LOOK */
  background: rgba(11, 31, 58, 0.86) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;

  transform: none !important;
}

/* Preserve header links */
.site-header .nav-links a {
  color: rgba(255, 255, 255, 0.88);
}

.site-header .nav-links a:hover,
.site-header .nav-links a.active {
  color: var(--gold);
}

/* Preserve mobile menu */
.site-header .mobile-menu {
  background: rgba(11, 31, 58, 0.98);
}

/* Space below fixed header */
body {
  padding-top: 67px !important;
}

/* =========================================================
   SERVICES HOVER DROPDOWN
   ========================================================= */

.service-hover-grid {
  align-items: start;
}

.service-box {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 8px 25px rgba(0,0,0,.08);
  transition: all .35s ease;
  height: auto;
}

/* Header */
.service-box-header {
  position: relative;
  min-height: 190px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  cursor: pointer;
}

.service-box-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
  transition: all .35s ease;
}

.service-box-header h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  font-weight: 800;
}

.service-arrow {
  position: absolute;
  right: 18px;
  bottom: 15px;
  color: var(--navy);
  font-size: 14px;
  transition: transform .35s ease;
}


/* Hidden content */
.service-box-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 22px;
  transition:
    max-height .45s ease,
    opacity .35s ease,
    padding .35s ease;
}

/* List */
.service-box-content ul {
  margin: 0 0 20px;
  padding-left: 20px;
}

.service-box-content li {
  margin-bottom: 9px;
  line-height: 1.45;
  color: #444;
  font-size: 14px;
}


/* =========================================================
   HOVER = EXPAND
   ========================================================= */

.service-box:hover {
  box-shadow: 0 15px 35px rgba(0,0,0,.15);
  transform: translateY(-5px);
}

.service-box:hover .service-box-icon {
  background: var(--gold);
  color: #111;
  transform: scale(1.08);
}

.service-box:hover .service-arrow {
  transform: rotate(180deg);
}

.service-box:hover .service-box-content {
  max-height: 800px;
  opacity: 1;
  padding: 0 22px 25px;
}



/* =========================================================
   MOBILE CLICK / TAP EXPAND
   ========================================================= */

@media (max-width: 900px) {

  .service-box.active {
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
    transform: translateY(-3px);
  }

  .service-box.active .service-box-icon {
    background: var(--gold);
    color: #111;
    transform: scale(1.08);
  }

  .service-box.active .service-arrow {
    transform: rotate(180deg);
  }

  .service-box.active .service-box-content {
    max-height: 1000px;
    opacity: 1;
    padding: 0 22px 25px;
  }

}




/* =====================================================================
   FINAL HERO — STATIC BACKGROUND + RIGHT-SIDE AUTOMATIC SLIDING DOOR
   ===================================================================== */
.hero {
  position: relative !important;
  min-height: calc(100svh - 72px) !important;
  height: calc(100svh - 72px) !important;
  max-height: 920px;
  overflow: hidden !important;
  isolation: isolate;
  background:
    radial-gradient(circle at 88% 18%, rgba(244,180,0,.18), transparent 24%),
    radial-gradient(circle at 10% 86%, rgba(53,96,170,.20), transparent 28%),
    #081c35 !important;
}

/* Remove the old full-screen photo/overlay so only the small door moves. */
.hero-background,
.hero-overlay,
.hero::before,
.hero::after {
  display: none !important;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .34;
  background-image:
    linear-gradient(rgba(255,255,255,.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.065) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,.35));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,.35));
}

.hero-glow {
  position: absolute;
  z-index: 0;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  opacity: .30;
}
.hero-glow-left {
  left: -250px;
  bottom: -220px;
  background: #31598f;
}
.hero-glow-right {
  right: -120px;
  top: -170px;
  background: #f4b400;
  opacity: .20;
}

.hero-inner.hero-inner-centered {
  position: relative !important;
  z-index: 20 !important;
  width: min(100%, 1240px) !important;
  min-height: 100% !important;
  height: 100% !important;
  margin: 0 auto !important;
  padding: 70px 42px 72px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: left !important;
  box-sizing: border-box;
}

.hero-copy {
  width: min(53%, 610px);
  position: relative;
  z-index: 30;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  width: auto;
  margin: 0 0 26px;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
}
.hero-eyebrow .eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  flex: 0 0 28px;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(244,180,0,.45);
}

.hero-copy h1 {
  margin: 0 !important;
  max-width: 620px !important;
  font-size: clamp(3rem, 5.2vw, 5rem) !important;
  line-height: .98 !important;
  letter-spacing: -.035em;
  text-shadow: 0 6px 30px rgba(0,0,0,.28);
}
.hero-copy h1 .accent { color: var(--gold) !important; }

.hero-copy p.lead {
  margin: 25px 0 0 !important;
  max-width: none !important;
  color: rgba(255,255,255,.78) !important;
  font-size: .98rem !important;
  font-weight: 700;
  letter-spacing: .035em;
  text-shadow: none;
}
.hero-copy p.lead span { color: var(--gold); padding: 0 8px; }

.hero-copy .hero-ctas {
  justify-content: flex-start !important;
  margin-top: 34px;
}

.hero-copy .btn-gold {
  box-shadow: 0 14px 30px rgba(244,180,0,.22);
}

.hero-phone-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 34px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}
.hero-phone-row a {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  margin: 0 !important;
  color: rgba(255,255,255,.80) !important;
  font-family: var(--font-body) !important;
  font-size: .88rem !important;
  font-weight: 700 !important;
  white-space: nowrap;
}
.hero-phone-row a i {
  color: var(--gold);
  font-size: .82rem;
}
.hero-phone-row a:hover { color: var(--white) !important; }

/* Door occupies only the right side of the hero. */
.door-rig {
  position: absolute !important;
  z-index: 10 !important;
  top: 50% !important;
  right: clamp(32px, 7vw, 110px) !important;
  left: auto !important;
  width: min(40vw, 560px) !important;
  height: min(66vh, 560px) !important;
  min-height: 420px;
  transform: translateY(-48%);
  overflow: visible !important;
  perspective: 1400px;
}

.door-frame {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.015));
  box-shadow:
    inset 0 0 50px rgba(255,255,255,.025),
    0 28px 70px rgba(0,0,0,.28),
    0 0 40px rgba(244,180,0,.07);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.door-frame::before {
  content: "";
  position: absolute;
  inset: 48px 0 48px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.06), transparent 18%, transparent 82%, rgba(255,255,255,.06)),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.008));
  pointer-events: none;
}

.door-top-track,
.door-bottom-track,
.door-center-track,
.door-side {
  position: absolute;
  z-index: 8;
  pointer-events: none;
}
.door-top-track {
  top: 38px;
  left: 32px;
  right: 32px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f4b400, #ffd84d 50%, #f4b400);
  box-shadow: 0 0 16px rgba(244,180,0,.48);
}
.door-bottom-track {
  left: 40px;
  right: 40px;
  bottom: 38px;
  height: 4px;
  background: linear-gradient(90deg, rgba(244,180,0,.15), #f4b400, rgba(244,180,0,.15));
  box-shadow: 0 0 10px rgba(244,180,0,.25);
}
.door-center-track {
  top: 48px;
  bottom: 42px;
  left: 50%;
  width: 4px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(244,180,0,.22), #f4b400 45%, rgba(244,180,0,.22));
  box-shadow: 0 0 16px rgba(244,180,0,.25);
  transition: opacity .35s ease;
}
.door-side {
  top: 48px;
  bottom: 42px;
  width: 40px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.035);
}
.door-side.left-side { left: 0; border-left: 0; }
.door-side.right-side { right: 0; border-right: 0; }

.door-glass {
  position: absolute;
  z-index: 5;
  top: 48px;
  bottom: 42px;
  width: 50%;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(255,255,255,.12), rgba(255,255,255,.025) 34%, rgba(13,38,70,.12) 72%, rgba(244,180,0,.06)),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.012));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: inset 0 0 45px rgba(255,255,255,.025);
  transition: transform 1.35s cubic-bezier(.16,.9,.2,1);
  will-change: transform;
}
.door-glass.left { left: 0; transform: translateX(0); }
.door-glass.right { right: 0; transform: translateX(0); }
.door-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, transparent 8%, rgba(255,255,255,.16) 20%, transparent 29%),
    linear-gradient(90deg, transparent 0%, rgba(255,255,255,.025) 50%, transparent 100%);
  opacity: .72;
}
.door-glass::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(244,180,0,.05), rgba(244,180,0,.8) 45%, rgba(244,180,0,.05));
  box-shadow: 0 0 14px rgba(244,180,0,.28);
}
.door-glass.left::after { right: 0; }
.door-glass.right::after { left: 0; }
.door-glass-shine {
  position: absolute;
  top: -15%;
  left: -20%;
  width: 22%;
  height: 130%;
  transform: rotate(16deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  filter: blur(1px);
  opacity: .45;
}

.hero.doors-open .door-glass.left { transform: translateX(-101%); }
.hero.doors-open .door-glass.right { transform: translateX(101%); }
.hero.doors-open .door-center-track { opacity: .18; }

.door-opening-glow {
  position: absolute;
  z-index: -1;
  left: 20%;
  right: 20%;
  top: 15%;
  bottom: 15%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(244,180,0,.12), transparent 68%);
  filter: blur(28px);
  pointer-events: none;
}

.hero-scroll {
  position: absolute;
  z-index: 25;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.50);
  font-size: .60rem;
  font-weight: 800;
  letter-spacing: .18em;
}
.hero-scroll i {
  width: 1px;
  height: 25px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@media (max-width: 1000px) {
  .hero-copy { width: 54%; }
  .door-rig {
    right: 24px !important;
    width: min(40vw, 450px) !important;
    height: min(62vh, 500px) !important;
    min-height: 370px;
  }
  .hero-copy h1 { font-size: clamp(2.7rem, 5vw, 4.2rem) !important; }
  .hero-phone-row { gap: 12px 18px; }
  .hero-phone-row a { font-size: .78rem !important; }
}

@media (max-width: 760px) {
  .hero {
    min-height: auto !important;
    height: auto !important;
    max-height: none;
  }
  .hero-inner.hero-inner-centered {
    min-height: 700px !important;
    height: auto !important;
    padding: 96px 22px 74px !important;
    align-items: center !important;
    text-align: center !important;
  }
  .hero-copy {
    width: 100%;
    max-width: 620px;
  }
  .hero-eyebrow {
    justify-content: center;
    font-size: .68rem;
    letter-spacing: .10em;
  }
  .hero-copy h1 {
    font-size: clamp(2.55rem, 11vw, 4rem) !important;
  }
  .hero-copy p.lead {
    font-size: .84rem !important;
    line-height: 1.55;
  }
  .hero-copy .hero-ctas { justify-content: center !important; }
  .hero-phone-row { justify-content: center; }
  .hero-phone-row a { font-size: .78rem !important; }
  .door-rig {
    top: auto !important;
    bottom: 32px !important;
    right: 50% !important;
    transform: translateX(50%) !important;
    width: min(72vw, 360px) !important;
    height: 250px !important;
    min-height: 0;
    opacity: .48;
  }
  .hero-copy { z-index: 40; }
  .hero-scroll { display: none; }
}

@media (max-width: 480px) {
  .hero-inner.hero-inner-centered {
    min-height: 680px !important;
    padding: 88px 16px 55px !important;
  }
  .hero-copy h1 { font-size: clamp(2.25rem, 12vw, 3.1rem) !important; }
  .hero-copy p.lead span { padding: 0 4px; }
  .hero-phone-row { gap: 9px 14px; }
  .hero-phone-row a { font-size: .70rem !important; }
  .door-rig { width: 76vw !important; height: 220px !important; bottom: 22px !important; }
  .door-top-track { top: 24px; left: 20px; right: 20px; height: 7px; }
  .door-glass { top: 31px; bottom: 28px; }
  .door-center-track { top: 31px; bottom: 28px; width: 3px; }
  .door-bottom-track { left: 24px; right: 24px; bottom: 25px; }
  .door-side { top: 31px; bottom: 28px; width: 25px; }
}

@media (prefers-reduced-motion: reduce) {
  .door-glass { transition: none !important; }
  .hero.doors-open .door-glass.left,
  .hero.doors-open .door-glass.right { transform: none !important; }
}

/* =========================================================
   FINAL HERO LAYOUT
   LEFT TEXT + RIGHT SQUARE DOOR
   ========================================================= */

.hero {
    position: relative;
    overflow: hidden;
}


/* =========================================================
   HERO INNER
   ========================================================= */

.hero-inner.hero-inner-centered {
  width: min(100%, 1400px) !important;
    margin: 0 auto !important;

    padding: 100px 5px !important;

    display: flex !important;
    flex-direction: row !important;

    align-items: center !important;
    justify-content: flex-start !important;

    text-align: left !important;

    box-sizing: border-box;
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.hero-copy {
    position: relative !important;

    width: min(48%, 620px) !important;
    max-width: 620px !important;

    margin-left: 0 !important;
    margin-right: 0 !important;

    padding: 0 !important;

    z-index: 30 !important;

    text-align: left !important;
}


/* Eyebrow */

.hero-copy .hero-eyebrow {
    width: auto !important;

    margin-left: 0 !important;
    margin-right: 0 !important;

    justify-content: flex-start !important;

    text-align: left !important;
}


/* =========================================================
   MAIN HEADING
   ========================================================= */

.hero-copy h1 {
    margin: 22px 0 0 !important;

    width: auto !important;
    max-width: 570px !important;

    text-align: left !important;

    font-size: clamp(3.4rem, 3.8vw, 5rem) !important;

    line-height: .94 !important;

    letter-spacing: -.045em !important;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.hero-copy p.lead {
    margin: 28px 0 0 !important;

    width: auto !important;
    max-width: 560px !important;

    text-align: left !important;

    font-size: .95rem !important;
    line-height: 1.5 !important;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.hero-copy .hero-ctas {
    width: auto !important;

    margin-top: 30px !important;

    display: flex !important;

    justify-content: flex-start !important;
    align-items: center !important;

    gap: 14px !important;
}


/* =========================================================
   PHONE NUMBERS
   ========================================================= */

.hero-copy .hero-phone-row {
    width: auto !important;

    margin-top: 28px !important;

    display: flex !important;

    justify-content: flex-start !important;

    gap: 12px 24px !important;

    text-align: left !important;
}


/* =========================================================
   RIGHT DOOR
   ========================================================= */

.door-rig {
    position: absolute !important;

    top: 50% !important;
    right: 250px !important;

    left: auto !important;
    bottom: auto !important;

    /*
       IMPORTANT:
       EXACT SQUARE
    */
    width: min(42vw, 520px) !important;
    height: min(42vw, 520px) !important;

    aspect-ratio: 1 / 1 !important;

    min-width: 0 !important;
    min-height: 0 !important;

    max-width: 520px !important;
    max-height: 520px !important;

    transform: translateY(-50%) !important;

    margin: 0 !important;

    z-index: 10 !important;

    overflow: visible !important;
}


/* =========================================================
   DOOR FRAME — EXACTLY SAME SIZE AS DOOR AREA
   ========================================================= */

.door-frame {
    position: absolute !important;

    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    aspect-ratio: 1 / 1 !important;

    box-sizing: border-box;

    overflow: hidden !important;
}


/* =========================================================
   DOOR GLASS
   ========================================================= */

.door-glass {
    position: absolute;

    top: 9% !important;
    bottom: 9% !important;

    width: 50% !important;

    box-sizing: border-box;
}


/* LEFT GLASS */

.door-glass.left {
    left: 0 !important;
}


/* RIGHT GLASS */

.door-glass.right {
    right: 0 !important;
}


/* =========================================================
   DOOR TRACKS
   ========================================================= */

.door-top-track {
    position: absolute !important;

    top: 7% !important;
    left: 5% !important;
    right: 5% !important;

    height: 8px !important;

    z-index: 8 !important;
}


.door-bottom-track {
    position: absolute !important;

    bottom: 7% !important;
    left: 5% !important;
    right: 5% !important;

    height: 7px !important;

    z-index: 8 !important;
}


.door-center-track {
    position: absolute !important;

    top: 9% !important;
    bottom: 9% !important;

    left: 50% !important;

    width: 3px !important;

    transform: translateX(-50%) !important;

    z-index: 9 !important;
}


/* SIDE FRAME */

.door-side {
    position: absolute !important;

    top: 9% !important;
    bottom: 9% !important;

    width: 13px !important;

    z-index: 9 !important;
}

.door-side.left-side {
    left: 5% !important;
}

.door-side.right-side {
    right: 5% !important;
}


/* =========================================================
   DESKTOP — BALANCED PROPORTION
   ========================================================= */

@media (min-width: 1200px) {

    .hero-copy {
        width: 47% !important;
        max-width: 610px !important;
    }

    .door-rig {
        width: min(38vw, 510px) !important;
        height: min(38vw, 510px) !important;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) and (min-width: 761px) {

    .hero-inner.hero-inner-centered {
        padding-left: 45px !important;
        padding-right: 45px !important;
    }

    .hero-copy {
        width: 50% !important;
        max-width: 500px !important;
    }

    .hero-copy h1 {
        font-size: clamp(2.8rem, 5vw, 4rem) !important;
    }

    .door-rig {
        width: min(39vw, 400px) !important;
        height: min(39vw, 400px) !important;

        right: 35px !important;
    }

    .hero-copy .hero-phone-row {
        gap: 8px 14px !important;
    }

    .hero-copy .hero-phone-row a {
        font-size: .75rem !important;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .hero-inner.hero-inner-centered {
        width: 100% !important;
        max-width: none !important;

        min-height: 680px !important;
        height: auto !important;

        padding: 90px 20px 55px !important;

        flex-direction: column !important;

        align-items: center !important;
        justify-content: center !important;

        text-align: center !important;
    }


    .hero-copy {
        width: 100% !important;
        max-width: 620px !important;

        margin: 0 auto !important;

        text-align: center !important;
    }


    .hero-copy .hero-eyebrow {
        justify-content: center !important;
        text-align: center !important;
    }


    .hero-copy h1 {
        max-width: 100% !important;

        text-align: center !important;

        font-size: clamp(2.5rem, 11vw, 3.5rem) !important;
    }


    .hero-copy p.lead {
        max-width: 100% !important;

        text-align: center !important;
    }


    .hero-copy .hero-ctas {
        justify-content: center !important;
    }


    .hero-copy .hero-phone-row {
        justify-content: center !important;
    }


    /* Square door below text */

    .door-rig {
        position: relative !important;

        top: auto !important;
        right: auto !important;
        left: auto !important;
        bottom: auto !important;

        transform: none !important;

        width: min(68vw, 320px) !important;
        height: min(68vw, 320px) !important;

        aspect-ratio: 1 / 1 !important;

        margin: 30px auto 0 !important;

        opacity: .32 !important;
    }
}


/* =========================================================
   SMALL PHONE
   ========================================================= */

@media (max-width: 480px) {

    .hero-inner.hero-inner-centered {
        padding: 85px 16px 45px !important;
    }

    .hero-copy h1 {
        font-size: clamp(2.25rem, 12vw, 3rem) !important;
    }

    .door-rig {
        width: min(65vw, 270px) !important;
        height: min(65vw, 270px) !important;

        margin-top: 25px !important;
    }
}
/* =================================================================
   2026 HIGH-TECH RESPONSIVE REFRESH
   ================================================================= */
body.public-page {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(244,180,0,.045), transparent 28rem),
    #fff;
}

body.public-page.home-page { padding-top: 0 !important; }
body.public-page.inner-page { padding-top: var(--header-height) !important; }

.site-header {
  min-height: var(--header-height) !important;
  background: rgba(7,21,39,.94) !important;
  border-bottom: 1px solid rgba(255,255,255,.1) !important;
  box-shadow: 0 10px 34px rgba(3,12,24,.14);
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease, min-height .3s ease !important;
}
.site-header.home-header:not(.scrolled) {
  background: linear-gradient(180deg, rgba(5,16,31,.72), rgba(5,16,31,0)) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom-color: transparent !important;
  box-shadow: none;
}
.site-header.scrolled {
  background: rgba(7,21,39,.94) !important;
  backdrop-filter: blur(20px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(150%) !important;
  box-shadow: 0 14px 38px rgba(3,12,24,.22);
}
.nav-wrap { min-height: var(--header-height); padding-block: 9px !important; }
.site-header .brand img { height: 55px; transition: height .25s ease, transform .25s ease; }
.site-header.scrolled .brand img { height: 48px; }
.site-header .nav-links { gap: 8px; padding: 5px; border: 1px solid rgba(255,255,255,.08); border-radius: 999px; background: rgba(255,255,255,.045); }
.site-header .nav-links a {
  position: relative; padding: 9px 14px; border-radius: 999px; font-size: .82rem; font-weight: 600;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.site-header .nav-links a:hover,
.site-header .nav-links a.active { background: rgba(244,180,0,.12); transform: translateY(-1px); }
.site-header .nav-links a.active::after {
  content: ''; position: absolute; left: 50%; bottom: 3px; width: 4px; height: 4px;
  border-radius: 50%; background: var(--gold); transform: translateX(-50%);
  box-shadow: 0 0 12px var(--gold);
}
.nav-toggle { width: 43px; height: 43px; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; flex-direction: column; justify-content: center; gap: 5px; }
.nav-toggle span { display:block; width:19px; height:2px; border-radius:2px; background:#fff; transition:transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.site-header .mobile-menu { background: rgba(7,21,39,.98) !important; backdrop-filter: blur(20px); }

body.public-page .section { position: relative; }
body.public-page .section::before {
  content: ''; position: absolute; left: 50%; top: 0; width: min(92%, 1180px); height: 1px;
  transform: translateX(-50%); background: linear-gradient(90deg, transparent, rgba(11,31,58,.12), transparent);
}
body.public-page .card {
  border: 1px solid rgba(11,31,58,.09); box-shadow: 0 14px 35px rgba(11,31,58,.09);
  transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease, border-color .28s ease;
}
body.public-page .card:hover { transform: translateY(-7px); border-color: rgba(244,180,0,.42); box-shadow: 0 24px 54px rgba(11,31,58,.16); }
body.public-page .card-media::after {
  content:''; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(135deg, rgba(255,255,255,.16), transparent 38%, rgba(244,180,0,.08));
}
body.public-page input,
body.public-page select,
body.public-page textarea { transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
body.public-page input:focus,
body.public-page select:focus,
body.public-page textarea:focus { border-color:var(--gold) !important; box-shadow:0 0 0 4px rgba(244,180,0,.15) !important; outline:none; }

@media (max-width: 959px) {
  :root { --header-height: 68px; }
  .site-header .brand img, .site-header.scrolled .brand img { height: 44px; }
  .site-header .mobile-menu.open { display:flex; max-height:calc(100svh - var(--header-height)); overflow-y:auto; box-shadow:0 24px 50px rgba(0,0,0,.28); }
  body.nav-open { overflow:hidden; }
}
@media (max-width: 640px) {
  .container { padding-inline:18px; }
  .site-header .nav-wrap { padding-inline:16px !important; }
  body.public-page .section { padding-block:64px; }
  body.public-page .btn { min-height:46px; width:100%; padding-inline:18px; }
  body.public-page .hero-ctas { width:100%; }
  body.public-page .hero-phone-row { align-items:flex-start; }
  body.public-page .grid { gap:18px; }
}

/* Universal responsive safeguards for CMS content and uploaded media. */
html { overflow-x:hidden; }
img, video, iframe, svg { max-width:100%; height:auto; }
input, select, textarea, button { max-width:100%; }
.table-responsive { width:100%; overflow-x:auto; -webkit-overflow-scrolling:touch; }
@media (max-width: 640px) {
  body.public-page h1 { overflow-wrap:anywhere; }
  body.public-page .form-grid, body.public-page .grid-2, body.public-page .grid-3 { grid-template-columns:1fr !important; }
  body.public-page .card { min-width:0; }
  body.public-page textarea { min-height:120px; }
}
