/* ============================================================
   Vital Cleaning Services – Main Stylesheet
   Brand: Blue #1a5fa8 | Green #3db54a | Dark #0d1b2a
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #1a5fa8;
  --blue-dark:  #124487;
  --blue-light: #2d7dd2;
  --green:      #3db54a;
  --green-dark: #2e9139;
  --dark:       #0d1b2a;
  --gray-dark:  #334155;
  --gray:       #64748b;
  --gray-light: #e2e8f0;
  --bg:         #f8fafc;
  --white:      #ffffff;
  --shadow:     0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.14);
  --radius:     10px;
  --radius-lg:  18px;
  --transition: all .25s ease;
  --container:  1200px;
  --font:       'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--gray-dark); }

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .6rem;
}

.section-title { margin-bottom: .75rem; }
.section-subtitle { color: var(--gray); font-size: 1.05rem; max-width: 620px; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section {
  padding-block: 5rem;
}
.section--gray { background: var(--bg); }
.section--dark { background: var(--dark); color: var(--white); }
.section--dark h2, .section--dark h3, .section--dark p { color: var(--white); }
.section--blue { background: var(--blue); color: var(--white); }
.section--blue h2, .section--blue h3, .section--blue p { color: var(--white); }

.text-center { text-align: center; }
.text-center .section-subtitle { margin-inline: auto; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,95,168,.35);
}
.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61,181,74,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--blue);
  transform: translateY(-2px);
}
.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2.4rem; font-size: 1.05rem; }
.btn-sm { padding: .55rem 1.2rem; font-size: .85rem; }

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--blue);
  color: var(--white);
  font-size: .85rem;
  padding: .5rem 0;
  text-align: center;
}
.topbar a { color: var(--white); font-weight: 600; }
.topbar a:hover { text-decoration: underline; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: .9rem;
  gap: 1.5rem;
}

.nav-logo img { height: 64px; width: auto; }
.nav-logo span {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo span em {
  font-style: normal;
  color: var(--green);
  font-size: .7em;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-item { position: relative; }

.nav-link {
  display: block;
  padding: .6rem .9rem;
  font-weight: 600;
  font-size: .9rem;
  color: var(--dark);
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--blue); background: rgba(26,95,168,.07); }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > .nav-link::after {
  content: ' ▾';
  font-size: .7em;
  opacity: .6;
}

.dropdown {
  position: absolute;
  top: calc(100% + .4rem);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 200;
  padding: .5rem;
  border: 1px solid var(--gray-light);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: .6rem .9rem;
  border-radius: 6px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
}
.dropdown a:hover { background: var(--bg); color: var(--blue); }

.nav-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  color: var(--blue);
  font-size: .9rem;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, #1a7ad4 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/Jenks_window_cleaning.jpg') center/cover no-repeat;
  opacity: .18;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50px;
  padding: .4rem 1rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}
.hero h1 span { color: var(--green); }
.hero p {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.2);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--dark);
  padding: 1.25rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  font-weight: 600;
}
.trust-item .icon {
  font-size: 1.2rem;
}

/* ---------- How It Works ---------- */
.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.step-card h3 { margin-bottom: .5rem; }

/* ---------- Service Cards ---------- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-icon {
  font-size: 2rem;
  margin-bottom: .75rem;
}
.service-card h3 { margin-bottom: .6rem; font-size: 1.15rem; }
.service-card p { font-size: .9rem; color: var(--gray); flex: 1; margin-bottom: 1rem; }
.service-card .btn { align-self: flex-start; }

/* ---------- Feature / Why Choose ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.feature-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--green);
  transition: var(--transition);
}
.feature-item:hover { transform: translateY(-3px); }
.feature-icon { font-size: 2rem; margin-bottom: .75rem; }
.feature-item h4 { margin-bottom: .4rem; color: var(--dark); }
.feature-item p { font-size: .88rem; }

/* ---------- City Cards ---------- */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}
.city-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 160px;
  cursor: pointer;
  transition: var(--transition);
}
.city-card:hover { transform: scale(1.03); }
.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.city-card:hover img { transform: scale(1.08); }
.city-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,.75) 40%, transparent);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.city-card-overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--blue);
  position: relative;
}
.testimonial-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: .75rem; }
.testimonial-text {
  font-style: italic;
  color: var(--gray-dark);
  margin-bottom: 1.25rem;
  font-size: .95rem;
  line-height: 1.7;
}
.testimonial-author { font-weight: 700; color: var(--dark); font-size: .9rem; }
.testimonial-role { font-size: .8rem; color: var(--gray); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.04"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
  pointer-events: none;
}
.cta-banner .btn-group { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.8); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-banner .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- FAQ / Accordion ---------- */
.faq-list { max-width: 760px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-light);
  padding: 1.25rem 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark);
  font-size: 1rem;
  gap: 1rem;
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--blue);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
  display: none;
  padding-top: .75rem;
  color: var(--gray-dark);
  font-size: .95rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ---------- Service Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover no-repeat;
  opacity: .15;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1.05rem; max-width: 600px; margin-bottom: 1.5rem; }
.breadcrumb {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: var(--white); }

/* ---------- Service List ---------- */
.service-list-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--gray-light);
}
.service-list-item:last-child { border-bottom: none; }
.service-list-item.reverse { direction: rtl; }
.service-list-item.reverse > * { direction: ltr; }
.service-list-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service-list-img img { width: 100%; height: 280px; object-fit: cover; }
.service-list-body h3 { margin-bottom: .75rem; }
.service-list-body p { margin-bottom: 1rem; font-size: .95rem; }
.check-list { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.25rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: var(--gray-dark);
}
.check-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .05rem;
}

/* ---------- City Page Extras ---------- */
.city-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.city-intro-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.city-intro-img img { width: 100%; height: 340px; object-fit: cover; }

/* ---------- Contact / Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(26,95,168,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  color: var(--blue);
}
.contact-info-item h4 { margin-bottom: .25rem; font-size: .95rem; }
.contact-info-item p { font-size: .9rem; }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: .95rem;
  transition: var(--transition);
  background: var(--bg);
  color: var(--dark);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-top: .75rem; max-width: 280px; color: rgba(255,255,255,.88); }
.footer-logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
}
.footer-logo-text span { color: var(--green); }
.footer-col h5 {
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  padding: .25rem 0;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .82rem;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--white); }

.vet-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  padding: .4rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 1rem;
}

/* ---------- Mobile ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding-block: 3.5rem; }

  .nav-menu {
    display: none;
    position: fixed;
    inset: 0;
    top: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 1.5rem 2rem;
    gap: 0;
    overflow-y: auto;
    z-index: 99;
  }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; z-index: 100; }
  .nav-link { padding: .9rem .5rem; font-size: 1rem; width: 100%; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--bg);
    padding: .25rem 0 .25rem 1rem;
    border-radius: 8px;
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .nav-phone { display: none; }

  .hero { min-height: 70vh; padding: 3rem 0; }
  .hero-stats { gap: 1.5rem; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .city-intro { grid-template-columns: 1fr; }
  .service-list-item { grid-template-columns: 1fr; }
  .service-list-item.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 1.25rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; justify-content: center; }
  .cta-banner .btn-group { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
}

/* ---------- Utilities ---------- */
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-2 { gap: 1rem; }

/* ---------- Scroll fade-in ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Additional Responsive Fixes ---------- */

/* Prevent any element from overflowing on mobile */
.container, section, .site-header, .site-footer {
  max-width: 100%;
}

/* GHL iframe mobile */
@media (max-width: 768px) {
  iframe[data-form-id] {
    height: 820px !important;
  }
}

/* Smooth image load */
img {
  transition: opacity .3s ease;
}

/* Better touch targets on mobile */
@media (max-width: 768px) {
  .btn { min-height: 48px; }
  .nav-link { min-height: 44px; display: flex; align-items: center; }
  .faq-question { min-height: 48px; }
}

/* Hero mobile polish */
@media (max-width: 480px) {
  .hero { min-height: 90vh; }
  .hero-badge { font-size: .72rem; }
  .hero-stat-num { font-size: 1.6rem; }
  .trust-item { font-size: .78rem; }
  .service-card-img { height: 180px; }
}

/* City card touch improvement */
@media (max-width: 768px) {
  .city-card { height: 140px; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Before/after image heights on mobile */
@media (max-width: 768px) {
  .grid-2 img[style*="height:320px"] {
    height: 220px !important;
  }
}

/* Section label spacing consistency */
.section-label + .section-title { margin-top: 0; }

/* Testimonial card hover */
.testimonial-card {
  transition: transform .25s ease, box-shadow .25s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Active nav indicator */
.nav-link.active {
  color: var(--blue);
  background: rgba(26,95,168,.08);
  border-radius: 6px;
}

/* Print styles */
@media print {
  .site-header, .site-footer, .cta-banner, .trust-bar { display: none; }
  body { font-size: 12pt; }
}
