/* ============================================================
   Cabrera's Key Fob Auto Locksmith — styles.css
   ============================================================ */

/* ---------- Google Fonts — loaded via <link> in HTML, not duplicated here ---------- */

/* ---------- CSS Variables ---------- */
:root {
  --blue:      #1B3A6B;
  --blue-dark: #0D1B2A;
  --gold:      #F5A623;
  --gold-dark: #d4891a;
  --white:     #FFFFFF;
  --dark:      #0D1B2A;
  --gray-light:#F4F6FA;
  --gray:      #6B7280;
  --text:      #1a1a2e;
  --border:    #E2E8F0;
  --shadow:    0 4px 20px rgba(0,0,0,0.12);
  --radius:    10px;
  --transition:0.25s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Kill navbar-to-hero gap ---------- */
/* Prevent any browser defaults or stacking context from creating a white
   gap between the sticky nav and the first hero/breadcrumb section.      */
body, html { margin-top: 0; padding-top: 0; }
main, #main-content { display: block; margin-top: 0 !important; padding-top: 0 !important; }
.hero, .page-hero { margin-top: 0 !important; }
.breadcrumbs { margin-top: 0 !important; }

/* ---------- Utilities ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section--dark { background: var(--dark); color: var(--white); }
.section--blue { background: var(--blue); color: var(--white); }
.section--gray { background: var(--gray-light); }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-blue { color: var(--blue); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.5rem; font-weight: 600; }
body { font-size: 1.0625rem; line-height: 1.7; }
p { margin-bottom: 1rem; color: var(--gray); font-size: 1.0625rem; line-height: 1.7; }
.section--dark p, .section--blue p { color: rgba(255,255,255,0.8); }

/* ---------- Section Header ---------- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow, .eyebrow {
  display: inline-block;
  background: rgba(245,166,35,0.15);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section--dark .section-header h2,
.section--blue .section-header h2 { color: var(--white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-gold:hover { background: linear-gradient(135deg, #f7b84e 0%, var(--gold-dark) 60%, #b8740e 100%); border-color: var(--gold-dark); transform: translateY(-2px) scale(1.04); box-shadow: 0 8px 24px rgba(245,166,35,0.45); }
.btn-outline-white:hover { transform: translateY(-2px) scale(1.04); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--dark); transform: translateY(-2px); }
.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover { background: #14305a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(27,58,107,0.4); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
  border-top: 3px solid var(--gold);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img {
  width: auto;
  height: 60px;
  border-radius: 8px;
  object-fit: contain;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text span:first-child { font-weight: 800; font-size: 0.95rem; color: var(--white); }
.nav-logo-text span:last-child { font-size: 0.7rem; color: var(--gold); font-weight: 500; }

/* Desktop Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  border-radius: 2px;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover, .nav-links a.active { color: var(--gold); background: rgba(245,166,35,0.1); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 8px 0;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  border-radius: 0;
}
.dropdown-menu a:hover { color: var(--gold); background: rgba(245,166,35,0.08); padding-left: 24px; }

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-phone {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}
.nav-phone small { font-size: 0.68rem; color: var(--gold); font-weight: 400; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  z-index: 999;
  overflow-y: auto;
  padding: 24px 20px 120px;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav a:hover { color: var(--gold); background: rgba(245,166,35,0.08); }
.mobile-nav .mobile-cta { margin-top: 20px; }

/* ============================================================
   MOBILE BOTTOM STICKY BAR
   ============================================================ */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--dark);
  border-top: 2px solid var(--gold);
  padding: 8px 12px;
  gap: 8px;
}
.mobile-sticky-bar .sticky-btn {
  flex: 1;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 8px;
  padding: 10px 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  text-decoration: none;
  transition: background var(--transition);
}
.mobile-sticky-bar .sticky-btn:hover { background: var(--gold-dark); }
.mobile-sticky-bar .sticky-btn .btn-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.5px; }
.mobile-sticky-bar .sticky-btn .btn-sub { font-size: 0.62rem; font-weight: 400; opacity: 0.85; margin-top: 1px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 50%, rgba(27,58,107,0.6) 100%);
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: #0a1520 url('') center/cover no-repeat;
  z-index: 0;
}
/* Decorative shapes */
.hero::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  max-width: 580px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
}
.badge .badge-icon { font-size: 1rem; }
.hero-image-block {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  z-index: 1;
  overflow: hidden;
}
.hero-image-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--dark) 0%, transparent 40%);
  z-index: 2;
}

/* ============================================================
   PLACEHOLDER IMAGE BLOCKS
   ============================================================ */
.img-placeholder {
  background: linear-gradient(135deg, #1e2d40, #2a3f5f);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 500;
  gap: 10px;
  overflow: hidden;
  position: relative;
}
.img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.02) 20px, rgba(255,255,255,0.02) 40px);
}
.img-placeholder .ph-icon { font-size: 3rem; opacity: 0.4; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  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);
  transition: transform var(--transition);
}
.service-card:hover { box-shadow: 0 20px 50px rgba(27,58,107,0.22); transform: translateY(-8px); border-color: var(--gold); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, rgba(27,58,107,0.08), rgba(245,166,35,0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 18px;
}
.service-card h3 { color: var(--blue); margin-bottom: 10px; font-size: 1.1rem; }
.service-card p { font-size: 0.9rem; margin-bottom: 20px; color: var(--gray); }
.service-card .card-link {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.service-card .card-link::after { content: '→'; transition: transform var(--transition); }
.service-card:hover .card-link::after { transform: translateX(4px); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.trust-item {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
}
.trust-item:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.trust-item-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}
.trust-item h3 { color: var(--white); margin-bottom: 10px; font-size: 1.1rem; }
.trust-item p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin: 0; }

/* ============================================================
   CITIES GRID
   ============================================================ */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.city-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.city-card:hover { background: var(--blue); color: var(--white); border-color: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow); }
.city-card:hover .city-name { color: var(--white); }
.city-card:hover .city-sub { color: rgba(255,255,255,0.75); }
.city-icon { font-size: 1.6rem; }
.city-name { font-weight: 700; font-size: 0.95rem; color: var(--blue); }
.city-sub { font-size: 0.75rem; color: var(--gray); }

/* ============================================================
   QUOTE FORM
   ============================================================ */
.quote-section { background: var(--blue); padding: 80px 0; }
.quote-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.quote-info h2 { color: var(--white); margin-bottom: 16px; }
.quote-info p { color: rgba(255,255,255,0.8); }
.quote-info ul { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.quote-info ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
}
.quote-info ul li::before { content: '✓'; color: var(--gold); font-weight: 700; }

.quote-form-box {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.quote-form-box h3 { color: var(--blue); margin-bottom: 24px; font-size: 1.2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--blue); letter-spacing: 0.3px; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  width: 100%;
}
.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(245,166,35,0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-error { font-size: 0.78rem; color: #e53e3e; display: none; }
.form-group.has-error input,
.form-group.has-error select { border-color: #e53e3e; }
.form-group.has-error .form-error { display: block; }
.form-submit { width: 100%; margin-top: 8px; justify-content: center; font-size: 1rem; padding: 16px; }
.form-success {
  display: none;
  background: #f0fff4;
  border: 2px solid #38a169;
  border-radius: 8px;
  padding: 16px;
  color: #276749;
  text-align: center;
  font-weight: 600;
  margin-top: 16px;
}

/* Inline quote form for service/city pages */
.inline-quote { background: var(--gray-light); padding: 60px 0; }
.inline-quote-inner { max-width: 680px; margin: 0 auto; }
.inline-quote .quote-form-box { box-shadow: var(--shadow); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
}
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card p { color: rgba(255,255,255,0.8); font-size: 0.92rem; font-style: italic; margin-bottom: 18px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px;
  height: 44px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: 0.9rem; color: var(--white); }
.reviewer-date { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { max-width: 300px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo img { width: 52px; height: 52px; border-radius: 50%; }
.footer-logo-text span { display: block; }
.footer-logo-text .brand { font-weight: 800; font-size: 1rem; color: var(--white); }
.footer-logo-text .tagline { font-size: 0.72rem; color: var(--gold); }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.7; }
.footer-nap { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.footer-nap a, .footer-nap span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-nap a:hover { color: var(--gold); }

.footer-col h4 { color: var(--white); font-size: 0.95rem; font-weight: 700; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 32px; height: 2px; background: var(--gold); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.86rem; color: rgba(255,255,255,0.65); transition: color var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col ul li a::before { content: '›'; color: var(--gold); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.social-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  background: var(--gray-light);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 0.82rem;
}
.breadcrumb-list li { display: flex; align-items: center; gap: 6px; color: var(--gray); }
.breadcrumb-list li a { color: var(--blue); }
.breadcrumb-list li a:hover { color: var(--gold-dark); }
.breadcrumb-list li:not(:last-child)::after { content: '/'; color: var(--gray); }
.breadcrumb-list li:last-child { color: var(--text); font-weight: 600; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 640px; margin: 0 auto; font-size: 1.05rem; line-height: 1.7; }
.page-hero .hero-btns { justify-content: center; margin-top: 28px; }
.page-hero .hero-eyebrow { margin-bottom: 18px; }

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */
.service-detail { padding: 72px 0; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}
.service-detail-content h2 { color: var(--blue); margin-bottom: 16px; margin-top: 36px; font-size: 1.5rem; }
.service-detail-content h2:first-child { margin-top: 0; }
.service-detail-content p { color: var(--gray); line-height: 1.8; }
.benefits-list { display: flex; flex-direction: column; gap: 14px; margin: 20px 0; }
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--gray-light);
  border-radius: 8px;
  border-left: 4px solid var(--gold);
}
.benefit-icon { font-size: 1.4rem; flex-shrink: 0; }
.benefit-item h4 { color: var(--blue); font-size: 0.92rem; margin-bottom: 4px; }
.benefit-item p { font-size: 0.85rem; margin: 0; color: var(--gray); }

.service-sidebar {}
.sidebar-cta {
  background: var(--blue);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: sticky;
  top: 88px;
}
.sidebar-cta h3 { color: var(--white); margin-bottom: 12px; }
.sidebar-cta p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 20px; }
.sidebar-cta .btn { width: 100%; justify-content: center; margin-bottom: 12px; }
.sidebar-phone {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  display: block;
  margin-top: 8px;
}

/* Cities served links */
.cities-served { margin-top: 36px; }
.cities-served h3 { color: var(--blue); margin-bottom: 14px; }
.cities-tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.city-tag {
  background: var(--gray-light);
  color: var(--blue);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.city-tag:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { padding: 64px 0; }
.faq-section.on-dark { background: transparent; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.faq-item.on-dark-bg {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color var(--transition);
}
.faq-item.on-dark-bg .faq-question { color: var(--white); }
.faq-question::after { content: '+'; font-size: 1.4rem; font-weight: 300; flex-shrink: 0; color: var(--gold); transition: transform var(--transition); }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}
.faq-item.on-dark-bg .faq-answer-inner { color: rgba(255,255,255,0.7); }

/* ============================================================
   CITY PAGE SPECIFICS
   ============================================================ */
.city-intro { padding: 64px 0 40px; }
.city-intro-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}
.city-intro-content h2 { color: var(--blue); margin-bottom: 16px; }
.city-intro-content p { color: var(--gray); line-height: 1.8; }
.city-services-list { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.city-service-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all var(--transition);
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9rem;
}
.city-service-link:hover { background: var(--blue); color: var(--white); border-color: var(--blue); box-shadow: var(--shadow); }
.city-service-link .svc-icon { font-size: 1.4rem; }
.city-service-link .svc-arrow { margin-left: auto; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 72px 0;
}
.about-content h2 { color: var(--blue); margin-bottom: 16px; }
.about-content p { color: var(--gray); line-height: 1.8; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.stat-box {
  background: var(--blue);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  color: var(--white);
}
.stat-box .stat-num { font-size: 2.2rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-box .stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.75); margin-top: 6px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 72px 0;
}
.contact-info h2 { color: var(--blue); margin-bottom: 20px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--gray-light);
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.contact-detail-icon { font-size: 1.8rem; flex-shrink: 0; }
.contact-detail h4 { color: var(--blue); font-size: 0.9rem; margin-bottom: 4px; }
.contact-detail p, .contact-detail a { font-size: 0.9rem; color: var(--gray); margin: 0; }
.contact-detail a:hover { color: var(--gold-dark); }

/* ============================================================
   SERVICES OVERVIEW PAGE
   ============================================================ */
.services-overview-intro { padding: 48px 0 16px; }
.services-overview-intro p { max-width: 700px; margin: 0 auto; text-align: center; font-size: 1.05rem; color: var(--gray); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablets */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; max-width: none; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .sidebar-cta { position: static; }
  .city-intro-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .quote-wrap { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
  /* Nav */
  .nav-links, .nav-phone, .nav-right .btn { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero { min-height: auto; padding: 80px 0 60px; }
  .hero-image-block { display: none; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }

  /* Sticky bottom bar */
  .mobile-sticky-bar { display: flex; }

  /* Grid adjustments */
  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .cities-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .quote-wrap { grid-template-columns: 1fr; }
  .quote-form-box { padding: 28px 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-stats { grid-template-columns: 1fr 1fr; }

  /* Section padding */
  .section { padding: 56px 0; }

  body { padding-bottom: 80px; } /* space for sticky bar */
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   MOBILE MENU DIVIDER
   ============================================================ */
.mobile-menu-divider {
  border-top: 1px solid rgba(255,255,255,0.18);
  margin: 8px 0 4px;
  padding: 8px 16px 4px;
}
.mobile-menu-divider span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
}

/* ============================================================
   TRUST ICON (homepage Why Choose Us)
   ============================================================ */
.trust-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   SECTION DIVIDERS (homepage)
   ============================================================ */
.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
  opacity: 0.35;
  margin: 0;
  border: none;
}

/* ============================================================
   TRUST BADGES (hero) — pill style
   ============================================================ */
.badge {
  background: var(--blue) !important;
  border-color: rgba(245,166,35,0.3) !important;
}

/* ============================================================
   SERVICE DESCRIPTION LEAD (service pages)
   ============================================================ */
.service-lead {
  background: linear-gradient(135deg, #eef2f9 0%, #f9fafb 100%);
  border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 32px;
  margin-bottom: 36px;
}
.service-lead p {
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.85;
  margin: 0;
}
.service-lead p + p { margin-top: 14px; }

/* ============================================================
   FOOTER — full responsive control
   ============================================================ */
.footer-col h3 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--gold);
}
.footer-col .footer-heading {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
  display: block;
}
.footer-col .footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--gold);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-col--brand, .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HERO BG IMAGE VARIANT
   ============================================================ */
.hero--bg-image::before {
  background: rgba(0,0,0,0.55) !important;
}
.hero--bg-image .hero-image-block { display: none; }

/* ============================================================
   QUOTE MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.is-open { display: flex; }
.modal-box {
  background: #fff;
  border-radius: 14px;
  max-width: 660px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  padding: 40px 40px 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
  animation: modalIn 0.22s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(-18px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none; border: none;
  font-size: 2rem; line-height: 1;
  cursor: pointer; color: var(--gray);
  padding: 4px 8px; border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.modal-close:hover { color: var(--dark); background: var(--gray-light); }
.modal-header { margin-bottom: 24px; padding-right: 32px; }
.modal-header h2 { font-size: 1.6rem; color: var(--blue); margin-bottom: 6px; font-weight: 800; }
.modal-header p { color: var(--gray); font-size: 0.93rem; }
.modal-divider { height: 3px; background: linear-gradient(90deg, var(--gold) 0%, var(--blue) 100%); border-radius: 2px; margin-bottom: 24px; }
.modal-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) {
  .modal-box { padding: 28px 20px 24px; }
  .modal-header h2 { font-size: 1.3rem; }
  .modal-form .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* Quote CTA strip */
.quote-cta-strip { text-align: center; }
.quote-cta-strip h2 { margin-bottom: 12px; }
.quote-cta-strip p { color: var(--gray); margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ============================================================
   TASK 8 — SECTION ALTERNATION COLOR CLASSES
   ============================================================ */
.section--gold {
  background: var(--gold);
  color: var(--dark);
}
.section--gold h2, .section--gold h3 { color: var(--dark); }
.section--gold p { color: rgba(13,27,42,0.8); }
.section--gold .eyebrow { background: rgba(0,0,0,0.12); color: var(--dark); }
.section--gold .btn-gold { background: var(--dark); color: var(--gold); border-color: var(--dark); }
.section--gold .btn-gold:hover { background: #0a1628; }

/* ============================================================
   TASK 2 — GOOGLE REVIEWS BAR
   ============================================================ */
.reviews-bar {
  background: #0D1B2A;
  text-align: center;
  padding: 12px 20px;
  border-top: 1px solid rgba(245,166,35,0.2);
  border-bottom: 1px solid rgba(245,166,35,0.2);
}
.reviews-bar a.reviews-bar-inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  flex-wrap: wrap;
  justify-content: center;
}
.reviews-bar .reviews-stars { color: var(--gold); font-size: 1rem; letter-spacing: 1px; }
.reviews-bar .reviews-text { color: rgba(255,255,255,0.9); }
.reviews-bar .reviews-link {
  color: var(--gold);
  font-weight: 700;
  transition: color var(--transition);
}
.reviews-bar a.reviews-bar-inner:hover .reviews-link { color: #f7cb6a; text-decoration: underline; }
@media (max-width: 480px) {
  .reviews-bar a.reviews-bar-inner { font-size: 0.78rem; gap: 6px; }
}

/* ============================================================
   TASK 1 — HERO SPLIT (2-column)
   ============================================================ */
.hero-split {
  background: linear-gradient(135deg, #0D1B2A 0%, #0a1628 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-split::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-split::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,58,107,0.4) 0%, transparent 70%);
  pointer-events: none;
}
.hero-split-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-split-text { padding-right: 20px; }
.hero-split-text .hero-eyebrow { margin-bottom: 20px; }
.hero-split-text h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero-split-text h1 span { color: var(--gold); }
.hero-split-text .hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-split-text .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-split-image {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-split-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  display: block;
  position: relative;
  z-index: 2;
}
.hero-img-glow {
  position: absolute;
  inset: -4px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--gold), var(--blue), var(--gold), #f7cb6a);
  background-size: 300% 300%;
  z-index: 1;
  animation: glowRotate 4s linear infinite;
  opacity: 0.75;
}
@keyframes glowRotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@media (max-width: 900px) {
  .hero-split-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-split-text { padding-right: 0; text-align: center; }
  .hero-split-text .hero-btns { justify-content: center; }
  .hero-split-text .trust-badges { justify-content: center; }
  .hero-split-image img { height: 320px; }
  .hero-img-glow { display: none; }
}
@media (max-width: 480px) {
  .hero-split { padding: 60px 0 40px; min-height: auto; }
  .hero-split-image img { height: 240px; }
}

/* ============================================================
   TASK 5 — HOW IT WORKS
   ============================================================ */
.how-it-works { text-align: center; }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  margin-top: 56px;
}
.step-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px 28px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3);
}
.step-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 12px;
}
.step-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}
.step-item h3 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}
.step-arrow {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.7;
  padding: 0 16px;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .step-arrow { transform: rotate(90deg); font-size: 1.5rem; padding: 0; }
}

/* ============================================================
   TASK 6 — PHOTO GALLERY
   ============================================================ */
.gallery-section { }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 3px solid transparent;
  transition: border-color 0.3s ease;
  pointer-events: none;
  z-index: 2;
}
.gallery-item:hover::after { border-color: var(--gold); }
.gallery-caption {
  margin: 10px 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray);
  text-align: center;
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .gallery-item img { height: 200px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { height: 240px; }
}

/* ============================================================
   TASK 3 — REVIEWS CAROUSEL
   ============================================================ */
.reviews-section { background: var(--blue); }
.reviews-section .section-header h2,
.reviews-section .section-header p { color: var(--white); }
.reviews-stars-big {
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 3px;
  display: block;
  margin-bottom: 8px;
}
.reviews-track-wrapper {
  overflow: hidden;
}
.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #0D1B2A;
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: 16px;
  padding: 28px 24px;
  color: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  border-color: rgba(245,166,35,0.4);
}
.review-card .stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 14px;
}
.review-card blockquote p {
  color: rgba(255,255,255,0.85);
  font-size: 0.96rem;
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 18px;
}
.review-card .review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--dark);
  flex-shrink: 0;
}
.review-author-info strong {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
}
.review-author-info span {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}
/* Mobile: horizontal scroll carousel */
@media (max-width: 900px) {
  .reviews-track-wrapper { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .reviews-track-wrapper::-webkit-scrollbar { display: none; }
  .reviews-track { grid-template-columns: repeat(5, 85vw); flex-wrap: nowrap; overflow: visible; }
  .review-card { scroll-snap-align: start; min-width: 0; }
  .reviews-carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
  .reviews-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: background 0.3s; border: none; padding: 0; }
  .reviews-dot.active { background: var(--gold); }
}
@media (min-width: 901px) {
  .reviews-carousel-dots { display: none; }
  .reviews-track { grid-template-columns: repeat(3, 1fr); }
}

/* Extra review cards 4 & 5 on desktop flow into second row */
@media (min-width: 901px) {
  .reviews-track { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
  .review-card:nth-child(4), .review-card:nth-child(5) { }
  .reviews-track-wrapper { overflow: visible; }
}

/* ============================================================
   TASK 4 — ENHANCED ANIMATIONS
   ============================================================ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes countUp {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-in.delay-1 { transition-delay: 0.1s; }
.animate-in.delay-2 { transition-delay: 0.2s; }
.animate-in.delay-3 { transition-delay: 0.3s; }
.animate-in.delay-4 { transition-delay: 0.4s; }
.animate-in.delay-5 { transition-delay: 0.5s; }

.stat-number {
  display: inline-block;
  transition: transform 0.3s ease;
}
.stat-number.counting { animation: countUp 0.4s ease both; }

/* Service cards enhanced hover */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12), 0 0 0 2px var(--gold);
  border-color: var(--gold);
}

/* Mobile responsive for mobile typography */
@media (max-width: 768px) {
  h1 { font-size: clamp(2.25rem, 8vw, 2.25rem); }
  h2 { font-size: clamp(1.75rem, 6vw, 1.75rem); }
  h3 { font-size: 1.25rem; }
  .step-number { font-size: 2.5rem; }
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 96px;
  right: 20px;
  width: 54px;
  height: 54px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 998;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
  color: #fff;
}
.whatsapp-float svg { display: block; }
@media (min-width: 769px) {
  .whatsapp-float { bottom: 32px; right: 28px; width: 58px; height: 58px; }
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.pricing-card:hover {
  box-shadow: 0 12px 36px rgba(27,58,107,0.15);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.pricing-card .pricing-icon { font-size: 2.2rem; margin-bottom: 12px; display: block; }
.pricing-card h3 { font-size: 0.95rem; color: var(--blue); margin-bottom: 10px; font-weight: 600; }
.pricing-from { font-size: 0.75rem; color: var(--gray); margin-bottom: 2px; }
.pricing-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-price sup { font-size: 1rem; font-weight: 600; vertical-align: super; }
.pricing-note { font-size: 0.78rem; color: var(--gray); margin: 0; }
.pricing-disclaimer {
  text-align: center;
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--gray);
}
.pricing-disclaimer a { color: var(--gold-dark); font-weight: 600; }
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pricing-card { padding: 20px 12px; }
  .pricing-price { font-size: 1.8rem; }
}

/* ============================================================
   CONTACT PAGE — embedded form column
   ============================================================ */
.contact-form-col .quote-form-box {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  border: 1px solid var(--border);
}
.contact-form-col .quote-form-box h3 { color: var(--blue); margin-bottom: 6px; font-size: 1.2rem; }
.contact-form-col .quote-form-box > p { color: var(--gray); font-size: 0.9rem; margin-bottom: 22px; }
.contact-form-call { margin-top: 14px; text-align: center; font-size: 0.85rem; color: var(--gray); }
.contact-form-call a { color: var(--gold-dark); font-weight: 700; }
.contact-form-col .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 600px) {
  .contact-form-col .form-row { grid-template-columns: 1fr; }
  .contact-form-col .quote-form-box { padding: 24px 16px; }
}

/* ============================================================
   GOOGLE MAP EMBED
   ============================================================ */
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 32px;
  border: 1px solid var(--border);
}
.map-embed iframe { display: block; width: 100%; height: 260px; border: none; }

/* ============================================================
   404 PAGE
   ============================================================ */
.not-found-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
}
.not-found-inner { max-width: 600px; margin: 0 auto; }
.not-found-code {
  font-size: clamp(6rem, 18vw, 10rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.9;
}
.not-found-section h1 { color: var(--white); font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 16px; }
.not-found-section p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 36px; }
.not-found-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

