
html{
  text-decoration: none;
}
/* FLOATING HEADER */
.header.floating {
  position: absolute;
  top: 0;
  width: 100%;
  background: transparent;
  color: white;
}
.header.floating .menu a { color: #e5e7eb; }
.header.floating .logo { color: white; }
.bsd-global {
  position: fixed;
  top: 8px;
  right:0;
  font-weight: 700;
  font-size: 14px;
  opacity: 0.65;
  z-index: 9999;
  pointer-events: none;
}

/* HERO */
.hero-evacu {
  position: relative;
  height: 92vh;
  background: url("../images/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.hero-evacu .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.hero-grid {
  position: relative;
  max-width: 750px;
  padding: 20px;
}
.hero-grid h1 {
  font-size: 48px;
  margin-bottom: 20px;
}
.subtitle {
  color: #e5e7eb;
  margin-bottom: 12px;
}
.trust {
  color: #cbd5f5;
  margin-bottom: 28px;
}

/* BUTTONS */
.btn-main {
  background: #f97316;
  color: white;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 600;
}
.btn-outline {
  border: 1px solid white;
  padding: 14px 22px;
  border-radius: 8px;
  color: white;
}

/* CLEAN SECTIONS */
.section.clean {
  background: #f8fafc;
  padding: 70px 20px;
}
.section-title.center {
  text-align: center;
  margin-bottom: 40px;
}

/* SERVICE CARDS */
.card-row {
  max-width: 1150px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 24px;
}
.service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  transition: .25s;
}
.service-card:hover {
  transform: translateY(-6px);
}
.service-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}
.card-text { padding: 18px; }

/* TRUST BAND */
.trust-band {
  background: #020617;
  color: white;
  padding: 60px 20px;
}
.trust-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.stats {
  display: flex;
  gap: 30px;
}
.stats div { text-align: center; }

/* FINAL CTA */
.final-cta {
  text-align: center;
  padding: 70px 20px;
  background: #0f172a;
  color: white;
}
.final-cta h2 { margin-bottom: 10px; }
.final-cta p { color: #cbd5f5; margin-bottom: 20px; }

/* FOOTER */
.footer {
  background: #020617;
  color: #94a3b8;
  text-align: center;
  padding: 30px;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 32px; }
  .header.floating .menu { display: none; }
}
.hero {
  position: relative;
  min-height: 90vh;
  width: 100%;
  overflow: hidden;

  background:
    radial-gradient(circle at 20% 30%, rgba(0,255,200,0.15), transparent 40%),
    linear-gradient(120deg, #020202, #0b0f14 60%, #021a1a);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,.8), rgba(0,0,0,.2));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: auto;
  padding: 120px 40px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero h1 {
  font-size: 3.8rem;
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
}

.hero p {
  font-size: 1.15rem;
  color: #cfd8dc;
  max-width: 520px;
}
.btn {
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.primary {
  background: linear-gradient(90deg, #00ffe1, #00c2ff);
  color: #000;
  box-shadow: 0 10px 25px rgba(0,255,200,.25);
}

.ghost {
  border: 1px solid rgba(255,255,255,.4);
  color: white;
  background: transparent;
}
.hero-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0,0,0,.5);
}
.tall-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  padding: 100px 60px;
  background: #0a0a0a;
}

.card {
  background: #111;
  border-radius: 18px;
  overflow: hidden;
  transition: .4s ease;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0,0,0,.6);
}

.card img {
  height: 340px;
  width: 100%;
  object-fit: cover;
}

.card-body {
  padding: 25px;
  color: white;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.split-text {
  padding: 100px;
  background: #050505;
  color: white;
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* NAVBAR BASE */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 18px 0;
  transition: all 0.35s ease;
}

/* HERO MODE (transparent) */
.navbar.top {
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
}

/* SCROLLED MODE */
.navbar.scrolled {
  background: rgba(5, 10, 15, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
}


.nav-inner {
  max-width: 1400px;
  margin: auto;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.nav-inner nav a {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  margin: 0 18px;
  position: relative;
  transition: all 0.25s ease;
}
.hero {
  margin-top: 70px;
}
body{
  margin: 0!important;
}
.nav-inner {
  max-width: 1400px;
  margin: auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.nav-inner nav a {
  color: #e5e7eb;
  transition: 0.2s;
}

.nav-inner nav a:hover {
  color: white;
}
.nav-inner nav a:hover {
  color: white;
  transform: translateY(-1px);
}
.nav-inner nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg,#00ffe1,#00c2ff);
  transition: width 0.25s ease;
  border-radius: 2px;
}

.nav-inner nav a:hover::after {
  width: 100%;
}
.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: white;
}
.logo {
  font-size: 24px;
  font-weight: 800;
}
.btn.primary {
  background: linear-gradient(90deg,#00ffe1,#00c2ff);
  color: #001010;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 8px 25px rgba(0,255,200,0.25);
  transition: all 0.25s ease;
}
.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,255,200,0.35);
}
.nav-inner {
  max-width: 1400px;
  margin: auto;
  padding: 22px 48px;
}
.navbar.scrolled {
  background: rgba(5, 10, 15, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.logo {
  transition: transform .25s ease;
}

.logo:hover {
  transform: scale(1.03);
}
/* ULTRA NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;

  background: transparent;
  transition: all 0.35s cubic-bezier(.22,.61,.36,1);
}

/* INNER */
.nav-inner {
  max-width: 1400px;
  margin: auto;
  padding: 26px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  color: white;
  transition: all .35s ease;
}
/* SCROLLED STATE */
.navbar.scrolled {
  background: rgba(5, 12, 18, 0.75);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}

.navbar.scrolled .nav-inner {
  padding: 16px 48px;
}
.logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.6px;

  background: linear-gradient(90deg,#fff,#c7fdf7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  transition: transform .25s ease;
}

.logo:hover {
  transform: scale(1.05);
}
.nav-inner nav a {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: rgba(255,255,255,0.7);
  margin: 0 20px;
  text-decoration: none;
  position: relative;
  transition: all 0.25s ease;
}

.nav-inner nav a:hover {
  color: white;
  transform: translateY(-1px);
}

.nav-inner nav a:hover::after {
  width: 100%;
}
.btn.primary {
  background: linear-gradient(90deg,#00ffe1,#00c2ff);
  color: #001010;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  position: relative;

  box-shadow: 0 10px 30px rgba(0,255,200,0.25);
  transition: all .25s cubic-bezier(.22,.61,.36,1);
}
.btn.primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 50px rgba(0,255,200,0.35);
}
.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(0,255,200,0.15), transparent 40%);
  opacity: 0;
  transition: opacity .4s ease;
}

.navbar.scrolled::before {
  opacity: 1;
}
/* ===============================
   ULTRA HERO SYSTEM
================================ */

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;

  background:
    radial-gradient(circle at 15% 30%, rgba(0,255,200,0.12), transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(0,200,255,0.08), transparent 45%),
    linear-gradient(120deg, #020202, #071015 55%, #021a1a);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,.85), rgba(0,0,0,.25));
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(0,255,200,0.15), transparent 60%);
  filter: blur(80px);
  animation: floatGlow 10s ease-in-out infinite;
  z-index: 0;
}

@keyframes floatGlow {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(40px); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: auto;
  padding: 140px 50px 100px;

  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -1px;

  background: linear-gradient(90deg,#ffffff,#c7fdf7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  color: #cfd8dc;
  margin-top: 18px;
  max-width: 520px;
}

.trust {
  color: #9fb6bd;
  font-size: 0.95rem;
  margin-top: 8px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

.btn-main {
  background: linear-gradient(90deg,#00ffe1,#00c2ff);
  color: #001010;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 15px 40px rgba(0,255,200,.25);
  transition: all .25s ease;
  text-decoration: none;
}

.btn-main:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 25px 60px rgba(0,255,200,.35);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,.35);
  padding: 14px 26px;
  border-radius: 999px;
  color: white;
  backdrop-filter: blur(6px);
  text-decoration: none;
}
.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 40px 90px rgba(0,0,0,.6);
  transform: perspective(1000px) rotateY(-6deg);
  transition: transform .5s ease;
}

.hero-visual img:hover {
  transform: perspective(1000px) rotateY(-2deg) scale(1.02);
}
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 120px 24px 60px;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-visual img {
    transform: none;
  }
}
/* FLOATING GLASS STATS */
.lux-stats {
  margin-top: -80px;
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
}

.stats-inner {
  display: flex;
  gap: 30px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(18px);
  padding: 40px 50px;
  border-radius: 20px;
  border: 1px solid rgba(0,255,200,0.2);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.stat {
  text-align: center;
  min-width: 120px;
}

.stat h3 {
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(90deg,#00ffd5,#00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
a{
  text-decoration: none;
}
.stat p {
  opacity: 0.7;
  font-size: 0.9rem;
}
.hero {
  height: 90vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)),
              url('images/garage-hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  will-change: transform;
}
/* GLOBAL MOTION SYSTEM */
* {
  transition: transform 0.4s cubic-bezier(.22,1,.36,1),
              box-shadow 0.4s ease,
              opacity 0.3s ease;
}

/* Premium hover lift */
.tall-card:hover,
.stat:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 40px 100px rgba(0,255,200,0.25);
}

/* Luxury button glow */
.cta-btn, .btn.primary {
  position: relative;
  overflow: hidden;
}


.cta-btn:hover::before,
.btn.primary:hover::before {
  animation: shine 1.2s ease;
}

@keyframes shine {
  to { transform: translateX(200%); }
}
@media (max-width: 768px) {
  .stats-inner {
    flex-direction: column;
    gap: 20px;
    padding: 30px;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
.hero h1 {
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -1.5px;

  background: linear-gradient(90deg,#ffffff,#dffcf8,#9af5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 10px 40px rgba(0,255,200,0.15);
}

.hero .subtitle {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.85);
  margin-top: 22px;
  line-height: 1.6;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.trust {
  font-size: 0.95rem;
  color: rgba(0,255,200,0.75);
  margin-top: 12px;
  letter-spacing: 0.5px;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 36px;
}

/* PRIMARY LUX BUTTON */
.btn-main {
  position: relative;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.3px;

  background: linear-gradient(90deg,#00ffe1,#00c2ff);
  color: #001010;

  box-shadow:
    0 10px 30px rgba(0,255,200,.25),
    inset 0 0 12px rgba(255,255,255,0.25);

  backdrop-filter: blur(6px);
  transition: all .35s cubic-bezier(.22,1,.36,1);
  text-decoration: none;
}

/* Glow hover */
.btn-main:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 20px 60px rgba(0,255,200,.45),
    inset 0 0 18px rgba(255,255,255,0.4);
}

/* Glass secondary */
.btn-outline {
  padding: 16px 30px;
  border-radius: 999px;
  color: white;
  text-decoration: none;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);

  transition: all .35s ease;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}



.hero-title {
  animation: fadeRise 1s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.subtitle {
  animation: fadeRise 1.2s ease forwards;
  animation-delay: .2s;
  opacity: 0;
}

.hero-buttons {
  animation: fadeRise 1.4s ease forwards;
  animation-delay: .4s;
  opacity: 0;
}

@keyframes fadeRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body {
  font-family: 'Manrope', system-ui, sans-serif;
}
.hero h1 {
  font-size: clamp(54px, 6vw, 92px); /* MUCH bigger */
  line-height: 1.02;
  font-weight: 900; /* ultra bold */
  letter-spacing: -2px;
  max-width: 900px;
  margin: auto;

  background: linear-gradient(90deg,#ffffff,#eafffb,#9af5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 10px 40px rgba(0,255,200,0.18),
    0 2px 8px rgba(0,0,0,0.5);
}
.hero .subtitle {
  font-size: 1.35rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin-top: 28px;
  line-height: 1.7;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.hero::before {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(0,255,200,0.15), transparent 60%);
  filter: blur(90px);
  z-index: 1;
}
.hero h1 span {
  display: block;
  font-size: 0.85em;
  opacity: 0.9;
}
.service-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
  transform-style: preserve-3d;
  transition: all .45s cubic-bezier(.22,1,.36,1);
}

/* Hover lift + glow */
.service-card:hover {
  transform: translateY(-14px) scale(1.03);
  box-shadow:
    0 30px 80px rgba(0,0,0,.25),
    0 0 30px rgba(0,255,200,.15);
}
.service-card img {
  height: 240px;
  width: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.service-card:hover img {
  transform: scale(1.12);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55), transparent 50%);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 1;
}

.service-card:hover::before {
  opacity: 1;
}
.card-text {
  padding: 22px;
  position: relative;
  z-index: 2;
  transition: transform .4s ease;
}

.service-card:hover .card-text {
  transform: translateY(-6px);
}

.card-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.card-text p {
  opacity: 0.7;
  font-size: 0.95rem;
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all .8s cubic-bezier(.22,1,.36,1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.service-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(120deg,#00ffe1,#00c2ff,transparent);
  opacity: 0;
  z-index: 0;
  transition: opacity .4s ease;
}

.service-card:hover::after {
  opacity: 0.4;
}
a{
  color:black
}
.logo img {
  height: 42px;
  width: auto;
  display: block;
  cursor: pointer;
  transition: transform .25s ease;
}

.logo img:hover {
  transform: scale(1.05);
}
.logo a {
  display: inline-block;
  padding: 6px;
}
/* ========================================
   MOBILE OPTIMIZATION SYSTEM
   Paste at bottom of CSS
======================================== */

/* Base mobile scaling */
@media (max-width: 768px) {

  body {
    font-size: 15px;
  }

  h1 { line-height: 1.15; }
  h2 { font-size: 1.8rem; }
  p  { line-height: 1.6; }

}
@media (max-width: 768px) {

  .nav-inner {
    padding: 14px 20px;
  }

  .nav-inner nav {
    display: none; /* hide desktop nav */
  }

  .btn.primary {
    padding: 8px 14px;
    font-size: 13px;
  }

  .logo img {
    height: 34px;
  }

}
@media (max-width: 768px) {

  .hero-evacu {
    height: auto;
    padding: 120px 20px 80px;
  }

  .hero-content {
    text-align: center;
    padding: 0;
  }

  .hero h1,
  .hero-title {
    font-size: clamp(32px, 7vw, 42px);
    letter-spacing: -1px;
  }

  .subtitle {
    font-size: 1rem;
    margin-top: 18px;
  }

  .trust {
    font-size: 0.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-main,
  .btn-outline {
    width: auto;                 /* stop stretching */
    min-width: 200px;            /* keeps nice size */
    max-width: 260px;            /* prevents oversized */
    text-align: center;
    padding: 14px 22px;
  }

}
@media (max-width: 768px) {

  .lux-stats {
    margin-top: -40px;
    padding: 0 16px;
  }

  .stats-inner {
    flex-direction: column;
    gap: 18px;
    padding: 26px;
    text-align: center;
  }

  .stat h3 {
    font-size: 1.8rem;
  }

}
@media (max-width: 768px) {

  .section.clean {
    padding: 50px 16px;
  }

  .card-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card img {
    height: 200px;
  }

}
@media (max-width: 768px) {

  .trust-inner {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
  }

}
@media (max-width: 768px) {

  .split {
    grid-template-columns: 1fr;
  }

  .split-text {
    padding: 50px 20px;
    text-align: center;
  }

  .split-img img {
    height: 260px;
  }

}
@media (max-width: 768px) {

  .tall-cards {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    gap: 20px;
  }

  .card img {
    height: 220px;
  }

}
@media (max-width: 768px) {

  .final-cta {
    padding: 50px 20px;
  }

  .final-cta h2 {
    font-size: 1.6rem;
  }

}


/* Disable heavy hover effects on mobile */
@media (hover: none) {
  .service-card:hover,
  .card:hover {
    transform: none;
    box-shadow: none;
  }
}
@media (max-width: 768px) {

  .nav-inner {
    padding: 12px 14px;
  }

  /* KEEP nav visible */
  .nav-inner nav {
    display: flex;
    gap: 10px;
  }

  .nav-inner nav a {
    font-size: 13px;
    margin: 0;
    opacity: 0.85;
  }

  /* shrink CTA button */
  .btn.primary {
    padding: 8px 12px;
    font-size: 12px;
  }

  .logo img {
    height: 30px;
  }
.hero-content {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-evacu {
  padding-top: 120px; /* pushes text below navbar */
}
.hero-title {
  margin-top: 40px;
}

}

/* MOBILE: logo row 1, nav row 2 */
@media (max-width: 768px) {
  .nav-inner {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .logo {
    order: 1;
  }

  .nav-inner nav {
    order: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn.primary {
    order: 3; /* optional: keeps button under nav */
  }
}
/* OPENING HOURS CARD */
.hours-card {
  background: linear-gradient(135deg, #0b1a35, #0f2a55);
  color: #fff;
  padding: 28px 32px;
  border-radius: 16px;
  width: fit-content;
  min-width: 280px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
}

/* Title */
.hours-card h3 {
  font-size: 20px;
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Rows */
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  opacity: 0.95;
}

.hours-row:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Day */
.hours-day {
  font-weight: 500;
  opacity: 0.8;
}

/* Time */
.hours-time {
  font-weight: 600;
}

/* Closed style */
.closed {
  color: #ff6b6b;
  font-weight: 600;
}
/* HOURS SECTION ALIGNMENT */
.hours-section {
  padding-top: 40px;
  padding-bottom: 60px;
}

.hours-wrap {
  display: flex;
  justify-content: center;
}

/* Slight polish */
.hours-card {
  min-width: 320px;
  max-width: 420px;
}
