/* =============================================
   CSS RESET
============================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }

/* =============================================
   DESIGN TOKENS
============================================= */
:root {
  --navy:        #0B2545;
  --navy-dark:   #071A36;
  --navy-mid:    #134074;
  --gold:        #F0B429;
  --gold-light:  #F5CC5A;
  --gold-text:   #8B6400;
  --white:       #ffffff;
  --off-white:   #F8FAFC;
  --text-dark:   #0F1C2E;
  --text-mid:    #374151;
  --text-light:  #6B7280;
  --border:      #E1E8F0;
  --border-dark: #CBD5E1;
  --font-base:   'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius:      8px;
  --radius-lg:   14px;
  --radius-xl:   20px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:   0 10px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --transition:  0.2s ease;
  --max-width:   1100px;
}

/* =============================================
   BASE
============================================= */
body {
  font-family: var(--font-base);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 620px;
}

/* =============================================
   NAVIGATION
============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(7, 26, 54, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(240, 180, 41, 0.25);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  transition: background var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(7, 26, 54, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo .logo-main {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-logo .logo-sub {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.72);
  font-size: 0.87rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color var(--transition);
  padding: 4px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
  border-radius: 2px;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
  box-shadow: 0 2px 8px rgba(240, 180, 41,0.3) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 16px rgba(240, 180, 41,0.45) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.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); }

/* =============================================
   BUTTONS
============================================= */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  letter-spacing: 0.03em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.35);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(201, 168, 76, 0.5);
}

.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: var(--radius);
  letter-spacing: 0.03em;
  transition: border-color var(--transition), background var(--transition);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

/* =============================================
   LOCATION PAGES — HERO
============================================= */
#home {
  padding-top: 64px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 60%, #1a4a7a 100%);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#home::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

#home::after {
  content: '';
  position: absolute;
  top: -200px; right: -150px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 180, 41, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 5rem 0;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-headline {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero-headline span { color: var(--gold-light); }

.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.62);
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}

.hero-stat { display: flex; flex-direction: column; }

.hero-stat .stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}

.hero-stat .stat-label {
  font-size: 0.78rem;
  color: #8ba5c0;
  margin-top: 2px;
  letter-spacing: 0.04em;
}

.hero-visual {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.hero-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(5px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-card-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(240, 180, 41, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-card-text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}

.hero-card-text span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.4;
}

/* =============================================
   SERVICES
============================================= */
#services {
  padding: 5rem 0;
  background: var(--off-white);
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-header .section-intro { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-dark);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 58px; height: 58px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-text);
  letter-spacing: 0.03em;
  transition: color var(--transition);
}

.service-card .card-link:hover { color: var(--navy); }

.service-card .card-link::after {
  content: '→';
  display: inline-block;
  transition: transform var(--transition);
}

.service-card .card-link:hover::after { transform: translateX(4px); }

/* =============================================
   ABOUT
============================================= */
#about {
  padding: 5rem 0;
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content .section-intro { margin-bottom: 1.5rem; }

.about-content p {
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.75rem;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pillar-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.pillar-text span {
  font-size: 0.88rem;
  color: var(--text-light);
}

.about-visual {
  background: linear-gradient(145deg, var(--navy-dark) 0%, #0e3562 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.about-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.about-visual h3 {
  font-size: 1.05rem;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 1.75rem;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  z-index: 1;
}

.about-list-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.93rem;
  color: #b0c4d8;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.about-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.about-list-item::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(240, 180, 41,0.25);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* =============================================
   HOURS / CTA STRIP
   Default: dark navy (location pages)
   .service-page override: light (service pages)
============================================= */
#hours {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

#hours::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hours-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.hours-block {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hours-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(240, 180, 41, 0.15);
  border: 1px solid rgba(240, 180, 41, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hours-block-text strong {
  display: block;
  font-size: 0.78rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.hours-block-text span {
  font-size: 0.95rem;
  color: #c5d5e8;
}

.hours-divider {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.15);
}

.hours-inner > .btn-primary {
  margin-left: auto;
}

/* Hours strip — light variant for service pages */
.service-page #hours {
  background: var(--off-white);
  color: var(--text-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.service-page #hours::before { display: none; }

.service-page .hours-icon {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border: none;
}

.service-page .hours-block-text strong { color: var(--gold-text); }
.service-page .hours-block-text span { color: var(--text-mid); }
.service-page .hours-divider { background: var(--border-dark); }

/* =============================================
   CONTACT
============================================= */
#contact {
  padding: 5rem 0;
  background: var(--off-white);
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-header .section-intro { margin: 0 auto; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.contact-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-dark);
}

.contact-item-icon {
  width: 42px; height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}

.contact-item-text span,
.contact-item-text a {
  font-size: 0.95rem;
  color: var(--text-mid);
}

.contact-item-text a:hover { color: var(--navy); }

.quote-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.quote-form h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.quote-form p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-base);
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy-mid);
  box-shadow: 0 0 0 3px rgba(19, 64, 116, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-submit {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 0.93rem;
  padding: 14px 20px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  font-family: var(--font-base);
  box-shadow: 0 4px 16px rgba(11,37,69,0.25);
}

.form-submit:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(11,37,69,0.35);
}

.form-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Contact section — inverted backgrounds for service pages */
.service-page #contact { background: var(--white); }
.service-page .contact-item { background: var(--off-white); }
.service-page .quote-form { background: var(--off-white); }

/* =============================================
   FOOTER
============================================= */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.45);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(240, 180, 41,0.2);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.25rem;
}

.footer-brand .logo-main {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}

.footer-brand .logo-sub {
  font-size: 0.72rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.footer-tagline {
  font-size: 0.83rem;
  color: #5a7a99;
  margin-top: 4px;
}

.footer-nav {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.85rem;
  color: #8ba5c0;
  transition: color var(--transition);
}

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

.footer-bottom {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.22);
}

.footer-locations { font-size: 0.85rem; }

.footer-locations strong {
  display: block;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-locations ul {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-locations a {
  color: #8ba5c0;
  transition: color var(--transition);
}

.footer-locations a:hover { color: var(--gold-light); }

/* =============================================
   SERVICE DETAIL PAGES — HERO
============================================= */
.service-hero {
  padding-top: 68px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 60%, #1a4a7a 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.service-hero::after {
  content: '';
  position: absolute;
  top: -200px; right: -150px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 180, 41, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.service-hero-inner {
  position: relative; z-index: 1;
  padding: 4rem 0 3.5rem;
  max-width: 780px;
}

.service-hero-inner h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.service-hero-inner h1 span { color: var(--gold-light); }

.service-hero-inner .hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
  line-height: 1.75;
  max-width: 640px;
}

/* Breadcrumb */
.breadcrumb {
  position: relative; z-index: 1;
  padding-top: 1.25rem;
  margin-bottom: 1.5rem;
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.breadcrumb-inner a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.breadcrumb-inner a:hover { color: var(--gold-light); }
.breadcrumb-inner .sep { color: rgba(255,255,255,0.22); }
.breadcrumb-inner .current { color: rgba(255,255,255,0.7); }

/* =============================================
   HOW IT WORKS
============================================= */
.how-it-works {
  padding: 5rem 0;
  background: var(--off-white);
}

.how-header {
  text-align: center;
  margin-bottom: 3rem;
}

.how-header .section-intro { margin: 0 auto; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.step-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* =============================================
   SCHEDULE SECTION
============================================= */
.schedule-section {
  padding: 5rem 0;
  background: var(--white);
}

.schedule-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.schedule-content p {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.schedule-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.schedule-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.schedule-card:hover {
  border-color: var(--border-dark);
  box-shadow: var(--shadow-sm);
}

.schedule-card-icon {
  width: 42px; height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.schedule-card-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.schedule-card-text span {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* =============================================
   PRICING SECTION
============================================= */
.pricing-section {
  padding: 5rem 0;
  background: var(--off-white);
}

.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-header .section-intro { margin: 0 auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-dark);
}

.pricing-card:hover::before { opacity: 1; }

.pricing-card-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.pricing-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.pricing-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.pricing-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.pricing-cta p {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
}

/* =============================================
   SECURITY / WHY SECTION
============================================= */
.security-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.security-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.security-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.security-content .section-label { color: var(--gold); }
.security-content .section-title { color: var(--white); }

.security-content p {
  color: rgba(255,255,255,0.68);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: none;
}

.security-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.security-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.security-item-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(240, 180, 41, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.security-item-text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.security-item-text span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.5;
}

/* =============================================
   RESPONSIVE — TABLET (max 900px)
============================================= */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    padding: 4rem 0;
  }

  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }

  .hero-visual {
    flex: none;
    width: 100%;
    max-width: 460px;
  }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }

  .hours-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hours-divider { display: none; }

  .steps-grid { grid-template-columns: 1fr 1fr; }
  .schedule-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .security-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* =============================================
   RESPONSIVE — MOBILE (max 600px)
============================================= */
@media (max-width: 600px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; width: 100%;
    background: rgba(7, 26, 54, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(240, 180, 41,0.25);
    box-shadow: var(--shadow-md);
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .hero-visual { display: none; }
  .hero-stats { gap: 1.5rem; }
  .quote-form { padding: 1.75rem 1.25rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}

/* =============================================
   SCROLL REVEAL
============================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.275s ease, transform 0.275s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.05s; }
.reveal-delay-2 { transition-delay: 0.1s; }
.reveal-delay-3 { transition-delay: 0.15s; }
