/* ══════════════════════════════════════════
   GLOBAL: CSS Variables, Resets, Utilities, Buttons
   ══════════════════════════════════════════ */
:root {
  --navy:      #0d1f5c;
  --navy-dark: #0f1e3d;
  --blue:      #1a3a9c;
  --sky:       #e8750a;
  --sky-dark:  #cf6508;
  --accent:    #e8750a;
  --accent-lt: #fdf0e4;
  --white:     #ffffff;
  --bg:        #f7f9ff;
  --bg2:       #eef2fc;
  --border:    #dde4f5;
  --border-dk: #c5d0ea;
  --text:      #111827;
  --text-md:   #374151;
  --text-lt:   #6b7280;
  --text-xlt:  #9ca3af;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(13,31,92,.07);
  --shadow:    0 8px 32px rgba(13,31,92,.10);
  --shadow-lg: 0 20px 60px rgba(13,31,92,.14);
  --ff: 'Nunito', sans-serif;
  --ff-body: 'DM Sans', sans-serif;
}
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); background: var(--bg); color: var(--text); overflow-x: hidden; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--ff); }

/* ── UTILITIES ── */
.container { width: 92%; max-width: 1600px; margin: 0 auto; }
.section    { padding: 96px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}
.eyebrow::before {
  content: ''; display: inline-block; width: 20px; height: 3px;
  background: var(--accent); border-radius: 2px;
}
.section-title {
  font-size: clamp(1.85rem, 3vw, 2.6rem); font-weight: 800; line-height: 1.18;
  color: var(--navy); margin-bottom: 12px; letter-spacing: -.02em;
}
.section-sub { font-family: var(--ff-body); color: var(--text-lt); font-size: 1rem; max-width: 540px; line-height: 1.75; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 8px; font-family: var(--ff); font-weight: 700; font-size: .93rem; transition: all .22s ease; cursor: pointer; border: none; white-space: nowrap; }
.btn-primary { background: var(--navy); color: #fff; box-shadow: 0 4px 16px rgba(13,31,92,.22); }
.btn-primary:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,31,92,.28); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--border-dk); }
.btn-outline:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 4px 16px rgba(232,117,10,.25); }
.btn-accent:hover { background: #d06509; transform: translateY(-2px); }

/* ══════════════════════════════════════════
   HEADER: Top Bar — Dark navy, email + hours left
   ══════════════════════════════════════════ */
.topbar {
  background: var(--navy-dark);
  padding: 8px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.70);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.tb-item {
  display: flex;
  align-items: center;
  gap: 7px;
}
.tb-item i {
  font-size: .75rem;
  opacity: .75;
}
.tb-item a {
  color: rgba(255,255,255,.70);
  transition: color .2s;
}
.tb-item a:hover { color: #fff; }
.tb-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.2);
}
.tb-socials {
  display: flex;
  align-items: center;
  gap: 6px;
}
.tb-social {
  display: grid;
  place-items: center;
  width: 24px; height: 24px;
  border-radius: 4px;
  color: rgba(255,255,255,.6);
  transition: color .2s, background .2s;
}
.tb-social:hover { color: #fff; background: rgba(255,255,255,.12); }
.tb-phone-mobile { display: none; }

/* ══════════════════════════════════════════
   NAVBAR — White bar, logo left, nav center, phone+CTA right
   Matches Skylab layout exactly
   ══════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  height: 88px;
}

/* Logo — left */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 62px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-img-footer {
  height: 56px; width: auto;
  background: #ffffff;
  border: 1px solid rgba(200,215,255,.25);
  border-radius: 10px;
  padding: 6px 10px;
}

/* Nav links — center */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  height: 100%;
}
.nav-links > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 16px;
  height: 100%;
  font-size: .9rem;
  font-weight: 600;
  font-family: var(--ff-body);
  color: var(--text-md);
  transition: color .2s;
  position: relative;
  white-space: nowrap;
}

/* Active + hover underline indicator (Skylab-style blue bar under active item) */
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--sky);
  border-radius: 3px 3px 0 0;
  transition: width .25s ease;
}
.nav-links > li > a:hover {
  color: var(--navy);
}
.nav-links > li > a:hover::after {
  width: 60%;
}
.nav-links > li > a.active {
  color: var(--navy);
  font-weight: 700;
}
.nav-links > li > a.active::after {
  width: 60%;
  background: var(--sky);
}

.nav-links > li > a svg {
  width: 13px; height: 13px;
  transition: transform .2s;
  color: var(--text-lt);
}
.nav-links > li:hover > a svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  padding: 6px 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: all .22s ease;
  z-index: 200;
}
.nav-links > li:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  font-size: .875rem;
  font-weight: 600;
  font-family: var(--ff-body);
  color: var(--text-md);
  transition: all .18s;
  border-bottom: 1px solid var(--border);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { color: var(--navy); background: var(--bg); padding-left: 20px; }
.dd-icon {
  width: 30px; height: 30px;
  border-radius: 7px;
  background: var(--bg2);
  display: grid; place-items: center;
  font-size: .85rem;
  flex-shrink: 0;
}

/* Right section: phone + FREE QUOTE btn */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 1px solid var(--border);
  padding-left: 22px;
}
.nav-phone-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(232,117,10,.12);
  display: grid; place-items: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}
.nav-phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-phone-label {
  font-size: .7rem;
  color: var(--text-lt);
  font-weight: 500;
}
.nav-phone-number {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--ff);
  white-space: nowrap;
}
.btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 6px;
  background: #0d1f5c;
  color: #fff;
  font-family: var(--ff);
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .2s, transform .2s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.btn-quote:hover {
  background: #132668;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 23px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  z-index: 999;
  padding: 0;
  gap: 0;
  box-shadow: 0 8px 24px rgba(9,21,68,.10);
}
.mobile-nav.open { display: flex; }
.m-nav-links {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  gap: 2px;
  flex: 1;
}
.mobile-nav a {
  padding: 11px 14px;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  font-family: var(--ff-body);
  color: var(--text-md);
  transition: all .2s;
  display: block;
}
.mobile-nav a:hover,
.mobile-nav a.active {
  background: var(--bg2);
  color: var(--navy);
}
.mobile-nav a.active {
  border-left: 3px solid var(--sky);
  padding-left: 11px;
}
.mobile-nav .m-cta {
  margin: 10px 14px 20px;
  background: var(--sky);
  color: #fff !important;
  text-align: center;
  border-radius: 10px;
  padding: 14px;
  font-size: .95rem;
  display: block;
  font-weight: 700;
}
.mobile-nav .m-cta:hover { background: var(--sky-dark); }
.m-accordion { display: flex; flex-direction: column; }
.m-acc-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  font-family: var(--ff-body);
  color: var(--text-md);
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: all .2s;
}
.m-acc-toggle:hover, .m-acc-toggle.open { background: var(--bg2); color: var(--navy); }
.m-acc-toggle svg { width: 14px; height: 14px; transition: transform .25s ease; flex-shrink: 0; color: var(--text-lt); }
.m-acc-toggle.open svg { transform: rotate(180deg); color: var(--navy); }
.m-acc-body {
  display: none;
  flex-direction: column;
  background: var(--bg);
  border-radius: 10px;
  margin: 2px 4px 4px;
  padding: 6px;
  border: 1px solid var(--border);
}
.m-acc-body.open { display: flex; }
.m-acc-body a { font-size: .88rem; padding: 9px 12px; color: var(--text-md); border-radius: 7px; }
.m-acc-body a:hover { background: var(--bg2); color: var(--navy); }
.m-nav-divider { height: 1px; background: var(--border); margin: 6px 14px; }

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .btn-quote { display: none; }
  .hamburger { display: flex; }
  .topbar-right { display: none; }
  /* On small screens: hide hours, show phone number instead */
  .tb-hours { display: none; }
  .tb-phone-mobile { display: flex !important; }
}
@media(max-width:540px) {
  .topbar .container { flex-wrap: wrap; gap: 4px; }
  .topbar-left { gap: 14px; }
}