* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root{
  --blue:#1d2f8a;
  --blue-dark:#0b174b;
  --red:#e31d24;
  --white:#ffffff;
  --text:#182033;
  --muted:#667085;
  --light:#f5f7fb;
  --border:#e8ecf3;
  --shadow:0 18px 50px rgba(10, 22, 70, 0.10);
  --radius-btn:8px;
  --radius-card:10px;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Montserrat", sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.6;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(22, 34, 76, 0.08);
}

.nav-wrap{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand img{
  height:58px;
  width:auto;
  border:0;
  outline:0;
  box-shadow:none;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:28px;
  font-weight:600;
  color:var(--blue-dark);
}

.main-nav a:hover{
  color:var(--red);
}

.main-nav a.active,
.dropdown-toggle.active{
  color:var(--red);
}

.nav-item{
  position:relative;
}

.dropdown-toggle{
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.submenu{
  position:absolute;
  top:calc(100% + 12px);
  left:0;
  min-width:230px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-card);
  box-shadow:0 14px 35px rgba(10, 22, 70, 0.12);
  padding:8px;
  display:flex;
  flex-direction:column;
  gap:2px;
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index:1001;
}

.submenu a{
  padding:10px 12px;
  border-radius:var(--radius-btn);
  font-weight:600;
  color:var(--blue-dark);
  white-space:nowrap;
}

.submenu a:hover{
  background:#f5f7fb;
  color:var(--red);
}

.has-dropdown:hover .submenu,
.has-dropdown:focus-within .submenu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.menu-toggle{
  display:none;
  border:none;
  background:transparent;
  font-size:30px;
  color:var(--blue-dark);
  cursor:pointer;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  border-radius:var(--radius-btn);
  font-weight:700;
  transition:0.25s ease;
}

.btn-primary{
  background:var(--red);
  color:var(--white);
  box-shadow:0 10px 24px rgba(227,29,36,0.22);
}

.btn-primary:hover{
  transform:translateY(-2px);
}

.btn-outline{
  border:2px solid rgba(255,255,255,0.85);
  color:#fff;
}

.hero{
  position:relative;
  min-height:88vh;
  background:
    linear-gradient(90deg, rgba(10,23,75,0.92) 0%, rgba(10,23,75,0.86) 40%, rgba(10,23,75,0.30) 100%),
    url('hero.png') center/cover no-repeat;
  background-attachment:fixed;
  display:flex;
  align-items:center;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(7,14,45,0.15), rgba(7,14,45,0.28));
}

.hero-grid{
  position:relative;
  z-index:1;
  padding:90px 0 80px;
}

.hero-copy{
  max-width:650px;
  color:#fff;
}

.eyebrow,
.section-tag{
  display:inline-block;
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1.3px;
  color:var(--red);
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.14);
  padding:8px 12px;
  border-radius:999px;
  margin-bottom:18px;
}

.hero h1{
  font-size:clamp(2.3rem, 5vw, 4.4rem);
  line-height:1.05;
  font-weight:800;
  margin-bottom:18px;
}

.hero p{
  font-size:1.04rem;
  max-width:590px;
  color:rgba(255,255,255,0.92);
  margin-bottom:28px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:28px;
}

.hero-points{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  list-style:none;
}

.hero-points li{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.12);
  font-size:0.92rem;
}

.quick-strip{
  margin-top:-48px;
  position:relative;
  z-index:5;
}

.quick-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}

.quick-card{
  background:#fff;
  border-radius:var(--radius-card);
  padding:24px;
  box-shadow:var(--shadow);
  border:1px solid var(--border);
}

.quick-card h3{
  color:var(--blue-dark);
  margin-bottom:8px;
}

.section{
  padding:90px 0;
}

.two-col{
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:28px;
  align-items:start;
}

.about h2,
.center-heading h2,
.contact h2{
  font-size:clamp(1.9rem, 3.1vw, 3rem);
  line-height:1.15;
  margin-bottom:14px;
  color:var(--blue-dark);
}

.about p,
.center-heading p,
.contact-copy p{
  color:var(--muted);
}

.about-panel{
  background:linear-gradient(180deg, #f8faff 0%, #eef3ff 100%);
  border:1px solid #dfe6fb;
  border-radius:var(--radius-card);
  padding:28px;
}

.about-panel h3{
  color:var(--blue);
  margin-bottom:14px;
}

.about-panel ul{
  list-style:none;
  padding-left:0;
  color:var(--text);
  display:grid;
  gap:12px;
}

.about-panel li{
  display:flex;
  align-items:flex-start;
  gap:10px;
}

.mono-icon{
  width:18px;
  height:18px;
  flex:0 0 18px;
  color:#1d2f8a;
  margin-top:2px;
}

.center-heading{
  text-align:center;
  max-width:760px;
  margin:0 auto 34px;
}

.card-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}

.categories{
  background:
    linear-gradient(180deg, rgba(255,255,255,0.84) 0%, rgba(255,255,255,0.84) 100%),
    url('hero.png') center/cover fixed no-repeat;
}

.info-card{
  border:1.5px solid #1d2f8a;
  border-radius:var(--radius-card);
  padding:26px;
  background:transparent;
  box-shadow:none;
  transition:transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.info-card:hover{
  transform:translateY(-6px);
  background:rgba(255,255,255,0.14);
  box-shadow:0 12px 30px rgba(10,23,75,0.16);
}

.info-card h3{
  color:var(--blue-dark);
  margin-bottom:10px;
}

.offers{
  background:var(--light);
}

.offer-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.offer-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-card);
  padding:28px;
  box-shadow:var(--shadow);
}

.offer-card.featured{
  position:relative;
  background:transparent;
  border:0;
  border-radius:0;
  padding:30px 38px;
  overflow:visible;
  box-shadow:none;
}

.offer-card.featured::before{
  content:"";
  position:absolute;
  inset:0;
  background:#fff;
  border:1px solid rgba(227,29,36,0.24);
  transform:skewX(-8deg);
  transform-origin:center;
  z-index:-1;
  box-shadow:var(--shadow);
}

.offer-top{
  margin-bottom:18px;
}

.offer-badge{
  display:inline-block;
  font-size:12px;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
  color:#fff;
  background:var(--red);
  padding:8px 12px;
  border-radius:999px;
  margin-bottom:12px;
}

.offer-badge.alt{
  background:var(--blue);
}

.offer-card h3{
  font-size:1.4rem;
  color:var(--blue-dark);
}

.price-list{
  list-style:none;
  display:grid;
  gap:10px;
  margin-bottom:12px;
  color:var(--text);
}

.small-note{
  color:var(--muted);
  font-size:0.95rem;
}

.hours{
  background:#fff;
}

.hours-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
}

.day-card{
  border:1px solid var(--border);
  border-radius:var(--radius-card);
  padding:20px;
  background:#fff;
  text-align:center;
}

.day-card span{
  display:block;
  color:var(--muted);
  margin-bottom:8px;
}

.day-card strong{
  color:var(--blue-dark);
  font-size:0.98rem;
}

.contact{
  background:linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}

.contact-grid{
  display:grid;
  grid-template-columns:0.95fr 1.05fr;
  gap:24px;
  align-items:start;
}

.contact-block{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-card);
  padding:18px 20px;
  margin-top:14px;
}

.contact-block h3{
  color:var(--blue-dark);
  margin-bottom:8px;
}

.contact-block a{
  color:var(--blue);
  font-weight:600;
}

.map-card{
  overflow:hidden;
  border-radius:var(--radius-card);
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  min-height:460px;
  background:#fff;
}

.map-card iframe{
  width:100%;
  height:100%;
  min-height:460px;
  display:block;
}

.site-footer{
  background:linear-gradient(135deg, var(--blue-dark), var(--blue));
  color:#fff;
  padding:56px 0 20px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 0.8fr 0.8fr 0.9fr;
  gap:22px;
}

.footer-logo{
  height:58px;
  width:auto;
  margin-bottom:12px;
  border:0;
  outline:0;
  box-shadow:none;
}

.site-footer h3{
  margin-bottom:12px;
}

.site-footer a,
.site-footer p{
  display:block;
  color:rgba(255,255,255,0.88);
  margin-bottom:8px;
}

.footer-bottom{
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,0.14);
  text-align:center;
}

@media (max-width: 1024px){
  .card-grid,
  .hours-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .two-col,
  .offer-grid,
  .contact-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 820px){
  .menu-toggle{
    display:block;
  }

  .desktop-quote{
    display:none;
  }

  .main-nav{
    position:absolute;
    top:84px;
    left:0;
    right:0;
    background:#fff;
    border-bottom:1px solid var(--border);
    flex-direction:column;
    gap:0;
    display:none;
    padding:8px 0 16px;
  }

  .nav-item{
    width:100%;
  }

  .main-nav a{
    width:100%;
    padding:14px 16px;
    text-align:center;
  }

  .dropdown-toggle{
    justify-content:center;
  }

  .submenu{
    position:static;
    min-width:unset;
    width:100%;
    border:0;
    border-radius:0;
    box-shadow:none;
    padding:0 0 8px;
    opacity:1;
    visibility:visible;
    transform:none;
    display:none;
  }

  .submenu a{
    font-size:0.95rem;
    color:#38405a;
  }

  .has-dropdown:hover .submenu,
  .has-dropdown:focus-within .submenu{
    display:flex;
  }

  .main-nav.show{
    display:flex;
  }

  .quick-grid,
  .card-grid,
  .offer-grid,
  .hours-grid{
    grid-template-columns:1fr;
  }

  .hero{
    min-height:78vh;
    background-position:center right;
    background-attachment:scroll;
  }

  .hero-grid{
    padding:70px 0 68px;
  }

  .quick-strip{
    margin-top:-28px;
  }
}