/* ============================================
   ABE'S LOCK & KEY — Complete Stylesheet
   Bold & Professional: Navy / Charcoal / Gold
   ============================================ */

/* --- CSS Variables --- */
:root {
  --navy: #0B1D3A;
  --navy-light: #132B50;
  --charcoal: #1E2A3A;
  --charcoal-light: #2A3A4E;
  --gold: #ed1c24;
  --gold-light: #E87040;
  --gold-dark: #B84520;
  --btn-orange: #D45A2A;
  --btn-orange-light: #E87040;
  --white: #FFFFFF;
  --off-white: #F5F3EF;
  --light-gray: #E8E6E1;
  --text-light: #C8CDD5;
  --text-muted: #6B7688;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --shadow-gold: 0 4px 20px rgba(237,28,36,0.3);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.25; font-weight: 700; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section.bg-light, .bg-light { background: var(--off-white, #f8f9fa); }
.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 16px;
}
.section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: -16px auto 48px;
}

/* ===========================
   TOP INFO BAR
   =========================== */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: #0B1D3A;
  color: #fff;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 7px 16px 7px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar-info {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.top-bar-info a, .top-bar-info span {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.2px;
}
.top-bar-info a:hover { color: var(--btn-orange); }
.top-bar-info .icon { color: var(--btn-orange); font-size: 0.95em; }
.top-bar-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.top-bar-social a {
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  font-size: 1.15rem;
  transition: color 0.2s ease;
  padding: 2px;
}
.top-bar-social a:hover {
  color: var(--btn-orange);
}
@media (max-width: 768px) {
  .top-bar { display: none; }
  .navbar, header.navbar, nav.navbar { top: 0; }
}

/* ===========================
   NAVIGATION — all variants
   =========================== */
.navbar, header.navbar, nav.navbar {
  position: fixed;
  top: 38px; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11, 29, 58, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(212, 168, 67, 0.2);
  padding: 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}
.navbar-container, .nav-container, .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 32px 16px 8px;
}
/* Logo */
.navbar-logo, .nav-logo, .logo, .nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-text, .brand-name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.logo-img {
  height: 48px;
  width: auto;
  max-width: none;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s ease;
}
.navbar-logo { margin-right: auto; padding-left: 0; }
.hero-logo {
  display: block;
  max-width: 360px;
  width: 100%;
  height: auto;
  margin: 0 auto 24px;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.4));
}
@media (max-width: 768px) {
  .hero-logo { max-width: 260px; margin-bottom: 16px; }
}
.logo-img:hover { opacity: 0.85; }
.navbar-logo { flex-shrink: 0; }
.navbar-logo a { display: inline-block; line-height: 0; flex-shrink: 0; }
@media (max-width: 992px) {
  .logo-img { height: 42px; }
}
@media (max-width: 768px) {
  .logo-img { height: 50px; }
}
@media (max-width: 480px) {
  .logo-img { height: 46px; }
}
.logo-text span, .brand-name span { color: var(--gold); }
.logo-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.brand-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: block;
}
/* Nav links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  position: relative;
  padding: 10px 18px;
  border-radius: 8px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold) !important;
  background: rgba(212, 168, 67, 0.08);
}
.nav-link:hover::after, .nav-link.active::after { width: 24px; }

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > .nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-dropdown > .nav-link .dropdown-arrow {
  font-size: 0.6em;
  transition: transform var(--transition);
}
.nav-dropdown:hover > .nav-link .dropdown-arrow {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 260px;
  background: rgba(11, 29, 58, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 12px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
  z-index: 1001;
}
.nav-dropdown:hover .dropdown-menu {
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0; right: 0;
  height: 10px;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.dropdown-menu a {
  display: block;
  padding: 11px 16px;
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.dropdown-menu a:hover {
  background: linear-gradient(90deg, rgba(212, 168, 67, 0.18), rgba(212, 168, 67, 0.06));
  color: var(--gold) !important;
  transform: translateX(4px);
}
.dropdown-menu .dropdown-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 6px 16px;
}
.dropdown-menu .dropdown-all {
  font-weight: 700;
  color: var(--gold) !important;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 4px;
  padding-top: 12px;
}

/* Nav right side */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.phone-link, .nav-phone {
  color: var(--gold) !important;
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
}
.cta-button, .nav-cta {
  display: inline-block;
  padding: 10px 24px;
  background: var(--btn-orange);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid var(--btn-orange);
  transition: all var(--transition);
}
.cta-button:hover, .nav-cta:hover {
  background: transparent;
  color: var(--btn-orange) !important;
}
/* Hamburger / mobile toggle */
.hamburger, .nav-toggle, .mobile-toggle, .mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span, .nav-toggle span, .mobile-toggle span, .mobile-nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  padding: 24px;
  gap: 16px;
  border-bottom: 2px solid var(--gold);
}
.mobile-menu.active { display: flex; }
.mobile-nav-link {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mobile-nav-link:hover { color: var(--gold); }

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  min-height: 580px;
  padding: 180px 24px 80px;
  overflow: hidden;
}
/* Video background */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11,29,58,0.75) 0%,
    rgba(11,29,58,0.65) 50%,
    rgba(11,29,58,0.85) 100%
  );
  z-index: 1;
}
/* Fallback gradient when no video */
.hero:not(.hero-video)::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(237,28,36,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(237,28,36,0.15);
  border: 1px solid rgba(237,28,36,0.4);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.1;
}
.hero h1 span { color: var(--gold); }
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-phone-btn {
  font-size: 1.1rem;
  padding: 16px 32px;
}
.hero-phone-btn .btn-icon {
  margin-right: 6px;
}
.hero-trust-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.hero-trust-row span {
  display: flex;
  align-items: center;
  gap: 5px;
}
/* Legacy stat styles (used on other pages) */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
  display: block;
}

/* ===========================
   BUTTONS — all variants
   =========================== */
.button, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}
.button-primary, .btn-primary, .button-gold, .btn-gold {
  background: var(--btn-orange);
  color: var(--white);
  border-color: var(--btn-orange);
}
.button-primary:hover, .btn-primary:hover, .button-gold:hover, .btn-gold:hover {
  background: var(--btn-orange-light);
  border-color: var(--btn-orange-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.button-secondary, .btn-secondary, .button-outline, .btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--btn-orange);
}
/* On light backgrounds, outline buttons need dark text */
.section .button-outline,
.content-narrow .button-outline,
.bg-light .button-outline {
  color: var(--navy);
}
.button-secondary:hover, .btn-secondary:hover, .button-outline:hover, .btn-outline:hover {
  background: var(--btn-orange);
  color: var(--white);
  transform: translateY(-2px);
}
.button-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.button-outline-light:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ===========================
   TRUST BAR
   =========================== */
.trust-bar {
  background: var(--btn-orange);
  padding: 18px 0;
}
.trust-items, .trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #fff;
  font-size: 0.88rem;
  white-space: nowrap;
}
.trust-icon { font-size: 1.2rem; }
.trust-text { font-weight: 700; }

/* ===========================
   SERVICES CARDS
   =========================== */
.services, .services-section {
  padding: 80px 0;
}
.services h2, .services-section h2 {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 12px;
  color: var(--navy);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px;
  background: rgba(237,28,36,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
}
/* Service cards with images */
.service-card.has-image {
  padding: 0;
  display: flex;
  flex-direction: column;
}
.service-card-img {
  height: 180px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card.has-image:hover .service-card-img img {
  transform: scale(1.05);
}
.service-card-body {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body p {
  flex: 1;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--navy);
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 8px;
}
.learn-more, .service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--gold-dark);
  transition: all var(--transition);
}
.learn-more:hover, .service-link:hover { color: var(--gold); gap: 10px; }

/* ===========================
   WHY CHOOSE US / FEATURES
   =========================== */
.why-choose-us, .values-section {
  padding: 80px 0;
  background: var(--off-white);
}
.why-choose-us h2, .values-section h2 {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 12px;
  color: var(--navy);
}
.features-grid, .why-grid, .values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.feature-item, .feature-card, .why-card, .value-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
}
.feature-item:hover, .feature-card:hover, .value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-item .service-icon, .value-icon, .why-icon {
  width: 68px; height: 68px;
  background: rgba(237,28,36,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.8rem;
}
.feature-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.feature-item h3, .feature-card h3, .value-card h3, .why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--navy);
}
.feature-item p, .feature-card p, .value-card p, .why-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner, .cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before, .cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(237,28,36,0.1), transparent 50%);
  pointer-events: none;
}
.cta-content, .cta-inner, .cta-container {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.cta-content h2, .cta-section h2, .cta-banner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--white);
  margin-bottom: 12px;
}
.cta-content p, .cta-section p, .cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 28px;
}
.cta-banner .container {
  position: relative;
  text-align: center;
  max-width: 800px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.cta-phone {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.contact-info-highlight {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 16px;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
  padding: 80px 0;
  background: var(--off-white);
}
.testimonials h2 {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 48px;
  color: var(--navy);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.stars, .testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact, .contact-section {
  padding: 80px 0;
}
.contact h2, .contact-section h2 {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 48px;
  color: var(--navy);
}
.contact-content, .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-content: start;
}
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
}
.contact-info-card > h2 {
  color: var(--white);
  margin-bottom: 28px;
  font-size: 1.5rem;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 16px;
}
.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 4px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.info-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--light-gray);
  text-align: center;
}
.info-item h3 {
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.info-item p {
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.5;
}
.info-item a {
  color: var(--gold);
  font-weight: 600;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.info-item .service-icon {
  width: 44px; height: 44px;
  background: rgba(237,28,36,0.12);
  border-radius: 10px;
  margin-bottom: 0;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-icon {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  width: 26px;
  text-align: center;
  margin-top: 2px;
}
.contact-map {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.contact-map iframe {
  display: block;
  width: 100%;
}
.contact-info-item div strong {
  display: block;
  color: var(--white);
  margin-bottom: 2px;
}
.contact-info-item div p {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}
.contact-info-item div p a { color: #fff; }
.contact-info-item div p a:hover { color: var(--gold); }
.contact-link {
  color: var(--gold) !important;
  font-weight: 600;
}
.contact-link:hover { color: var(--gold-light) !important; }
.contact-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
  padding: 12px;
  background: rgba(237,28,36,0.08);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.small-text {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Contact Form */
.contact-form, .contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label, .form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea,
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(237,28,36,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===========================
   PAGE HEADER (subpages)
   =========================== */
.page-header {
  background: linear-gradient(135deg, #1d4d8a 0%, #0e2750 55%, #1a1a1a 100%);
  padding: 150px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 5px solid var(--gold);
  box-shadow: inset 0 14px 36px rgba(0,0,0,0.5);
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 80%, rgba(237,28,36,0.08), transparent 50%);
  pointer-events: none;
}
.page-header h1, .page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}
.page-header p, .page-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  position: relative;
}
.breadcrumb-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span, .breadcrumb .separator { color: var(--text-muted); }

/* ===========================
   SERVICES DETAIL PAGE
   =========================== */
.service-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--light-gray);
}
.service-section:nth-child(even) { background: var(--off-white); }
.service-section .container,
.service-section > div:not(.container) {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.service-section.reverse .container,
.service-section.reverse > div:not(.container) {
  direction: rtl;
}
.service-section.reverse .container > *,
.service-section.reverse > div > * {
  direction: ltr;
}
.service-content h2 {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.service-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.service-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}
.service-image {
  border-radius: var(--radius-lg);
  height: 340px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-image:hover img {
  transform: scale(1.05);
}

/* ===========================
   ABOUT / STORY
   =========================== */
.story-section {
  padding: 80px 0;
}
.story-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.story-content h2 {
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.story-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 16px 0;
}
.team-card {
  text-align: center;
}
.team-photo {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 5px solid var(--gold);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.team-card:hover .team-photo img {
  transform: scale(1.05);
}
.team-card h3 {
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.team-role {
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; gap: 36px; }
  .team-photo { width: 220px; height: 220px; }
}

/* Timeline */
.timeline-section {
  padding: 80px 0;
  background: var(--off-white);
}
.timeline-container, .timeline-section .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.timeline-section h2 {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 48px;
  color: var(--navy);
}
.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 16px; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  opacity: 0.3;
}
.timeline-item {
  position: relative;
  margin-bottom: 36px;
}
.timeline-marker, .timeline-dot {
  position: absolute;
  left: -32px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--off-white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-content {}
.timeline-content h3, .timeline-year {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}
.timeline-content p, .timeline-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===========================
   FAQ ACCORDION
   =========================== */
.faq-section {
  padding: 80px 0;
}
.faq-section h2 {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
  color: var(--navy);
}
.faq-intro {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 48px;
}
.faq-items, .faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
  background: var(--white);
}
.faq-item:hover { border-color: rgba(237,28,36,0.5); }
.faq-item.active { border-color: var(--gold); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  background: var(--white);
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  transition: all var(--transition);
  gap: 16px;
}
.faq-question:hover { color: var(--gold-dark); }
.faq-toggle {
  width: 28px; height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(237,28,36,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--navy);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 24px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ===========================
   MAP
   =========================== */
.map-section {
  padding: 64px 0;
  background: var(--off-white);
}
.map-section h2 {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 32px;
  color: var(--navy);
}
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--light-gray);
  height: 400px;
  max-width: 1200px;
  margin: 0 auto;
}
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* ===========================
   SERVICE AREAS
   =========================== */
.service-areas-section {
  padding: 64px 0;
}
.service-areas-section h2 {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 32px;
  color: var(--navy);
}
.service-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  column-gap: 16px;
  row-gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}
.service-area-item, .areas-list li {
  padding: 12px 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--navy);
  font-size: 0.93rem;
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
  text-align: center;
}
.service-area-item:hover {
  border-color: var(--gold);
  background: rgba(237,28,36,0.05);
}
.areas-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  padding: 0;
}
.service-areas-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 24px;
}

/* ===========================
   FOOTER
   =========================== */
.footer, footer {
  background: var(--navy);
  color: var(--text-light);
  padding: 64px 0 0;
}
.footer-container, .footer-content, .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-section, .footer-col {}
.footer-section h3, .footer-col h3, .footer-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-section h3 span, .footer-heading span { color: var(--gold); }
.footer-section p, .footer-col p, .footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-section ul, .footer-col ul, .footer-links {
  list-style: none;
  padding: 0;
}
.footer-section ul li, .footer-col ul li, .footer-links li {
  margin-bottom: 10px;
}
.footer-section ul a, .footer-col ul a, .footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-section ul a:hover, .footer-col ul a:hover, .footer-links a:hover {
  color: var(--gold);
}
.payment-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.badge, .payment-badge {
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
}
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-disclaimer p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-bottom: 8px;
}
.footer-disclaimer p:last-child { margin-bottom: 0; }
.footer-disclaimer strong { color: rgba(255,255,255,0.55); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom a { color: var(--gold); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 992px) {
  .contact-content, .contact-grid { grid-template-columns: 1fr; }
  .story-container { grid-template-columns: 1fr; }
  .service-section .container,
  .service-section > div:not(.container) { grid-template-columns: 1fr; }
  .service-section.reverse .container,
  .service-section.reverse > div:not(.container) { direction: ltr; }
  .footer-container, .footer-content, .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-top: 1px solid rgba(237,28,36,0.15);
    z-index: 999;
  }
  .nav-menu.active { display: flex; }
  .hamburger, .nav-toggle, .mobile-toggle, .mobile-nav-toggle { display: flex; }
  .phone-link { display: none; }
  /* Mobile dropdown */
  .nav-dropdown { position: static; }
  .dropdown-menu {
    position: static;
    transform: none;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    display: none;
    background: rgba(255,255,255,0.05);
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin: 4px 0 0;
    padding: 4px 0 4px 16px;
  }
  .dropdown-menu::before { display: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu a { padding: 8px 12px; font-size: 0.82rem; }
  .dropdown-menu a:hover { padding-left: 16px; }
  .cta-button { display: none; }
  .navbar, header.navbar, nav.navbar { top: 0 !important; }
  .hero { padding: 90px 24px 40px; min-height: 400px; }
  .hero h1 { font-size: 1.8rem; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-trust-row { flex-direction: column; gap: 8px; }
  .hero-phone-btn { font-size: 1rem; padding: 14px 24px; }
  .trust-items, .trust-bar-inner { gap: 16px; font-size: 0.8rem; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid, .why-grid, .values-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-container, .footer-content, .footer-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .page-header { padding: 120px 24px 48px; }
  .service-areas-grid, .areas-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .trust-items, .trust-bar-inner { flex-direction: column; gap: 8px; }
  .service-areas-grid, .areas-list { grid-template-columns: 1fr; }
  .location-cards-grid { grid-template-columns: 1fr; }
}

/* ===== Location Pages ===== */
.content-narrow {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}
.content-narrow h2 {
  color: var(--navy);
  margin-bottom: 16px;
}
.content-narrow p {
  margin-bottom: 16px;
  color: var(--text-dark);
}
.highlight-box {
  background: linear-gradient(135deg, rgba(237,28,36,0.1), rgba(237,28,36,0.05));
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--navy) !important;
  font-size: 1rem;
}
.location-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.location-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--light-gray);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.location-card h3 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.location-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 12px;
  line-height: 1.5;
}
.card-link,
.location-card .card-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
}
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
}
.location-grid li {
  display: block;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--light-gray);
  color: var(--navy);
  font-weight: 500;
}
.location-grid li:has(a) { padding: 0; border: 0; background: transparent; }
.location-grid li a {
  display: block;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--light-gray);
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}
.location-grid li a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

@media (max-width: 1024px) {
  .location-cards-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .location-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
