/* McConnell Plumbing LLC — Brand: #0190c3 blue, #00bb00 green | Fonts: Playfair Display + Hind */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Hind:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #0190c3;
  --primary-dark: #0175a0;
  --primary-light: #e0f4fb;
  --secondary: #00bb00;
  --secondary-dark: #009900;
  --dark: #1a1c1e;
  --gray: #4b5563;
  --light-gray: #9ca3af;
  --bg: #f8fbfe;
  --white: #ffffff;
  --border: #e1eef5;
  --shadow-sm: 0 1px 3px rgba(1, 144, 195, 0.08);
  --shadow-md: 0 4px 16px rgba(1, 144, 195, 0.12);
  --shadow-lg: 0 12px 40px rgba(1, 144, 195, 0.18);
  --radius: 10px;
  --radius-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Hind', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Skip link */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--primary); color: white;
  padding: .5rem 1rem; border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 600; text-decoration: none; z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-label {
  display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--secondary); margin-bottom: .75rem;
}
.section-title { margin-bottom: .75rem; }
.section-intro { font-size: 1.05rem; color: var(--gray); max-width: 640px; line-height: 1.8; }
.text-center { text-align: center; }
.text-center .section-intro { margin: 0 auto; }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 2rem; border-radius: 50px; font-weight: 600; font-size: 1rem;
  border: 2px solid transparent; transition: all .25s ease; text-decoration: none;
  font-family: 'Hind', sans-serif; cursor: pointer;
}
.btn-primary {
  background: var(--primary); color: white; border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: white; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: var(--secondary); color: white; border-color: var(--secondary);
}
.btn-secondary:hover { background: var(--secondary-dark); border-color: var(--secondary-dark); color: white; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent; color: var(--primary); border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.btn-white {
  background: white; color: var(--primary); border-color: white;
}
.btn-white:hover { background: var(--primary-light); border-color: var(--primary-light); color: var(--primary-dark); transform: translateY(-2px); }

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: white; border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-top {
  background: var(--primary); color: white;
  padding: .4rem 0; font-size: .82rem; font-weight: 500;
  text-align: center;
}
.header-top a { color: white; }
.header-top .ht-items { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.header-top .ht-item { display: flex; align-items: center; gap: .4rem; }

.header-main {
  display: flex; align-items: center; justify-content: space-between;
  padding: .875rem 1.5rem; max-width: 1200px; margin: 0 auto;
}
.logo-wrap { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.logo-wrap img { height: 52px; width: auto; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; }
.logo-text .biz-name {
  font-family: 'Playfair Display', serif; font-weight: 800;
  font-size: 1.15rem; color: var(--dark); line-height: 1.1;
}
.logo-text .biz-tagline { font-size: .7rem; color: var(--primary); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-weight: 600; font-size: .9rem; color: var(--dark); text-decoration: none;
  padding: .25rem 0; border-bottom: 2px solid transparent; transition: all .2s;
  text-transform: uppercase; letter-spacing: .5px;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); border-bottom-color: var(--primary); }
.nav-cta { display: flex; align-items: center; gap: .75rem; }
.nav-phone { font-weight: 700; font-size: 1.05rem; color: var(--primary); }

.menu-toggle {
  display: none; background: none; border: none;
  padding: .5rem; color: var(--dark);
}
.mobile-nav {
  display: none; flex-direction: column;
  background: white; border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: .65rem 0; font-weight: 600; border-bottom: 1px solid var(--border); color: var(--dark); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .btn { margin-top: .75rem; justify-content: center; }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center;
  background: var(--dark); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1762810963385-0d91f2539fa2?w=1200&h=600&fit=crop&auto=format');
  background-size: cover; background-position: center;
  opacity: .25;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(1,144,195,.92) 0%, rgba(1,117,160,.7) 50%, rgba(0,0,0,.3) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 5rem 1.5rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.hero-text .badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(0,187,0,.15); border: 1px solid rgba(0,187,0,.4);
  color: #4ade80; padding: .35rem 1rem; border-radius: 50px;
  font-size: .8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-text h1 { color: white; margin-bottom: 1rem; }
.hero-text p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 2rem; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.trust-item { display: flex; align-items: center; gap: .4rem; color: rgba(255,255,255,.8); font-size: .85rem; font-weight: 500; }
.trust-item svg { color: var(--secondary); flex-shrink: 0; }

.hero-card {
  background: white; border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-lg);
  position: relative; z-index: 2;
}
.hero-card h3 { color: var(--primary); margin-bottom: 1.25rem; font-size: 1.3rem; }
.hero-card .form-group { margin-bottom: 1rem; }
.hero-card label { display: block; font-weight: 600; font-size: .85rem; margin-bottom: .4rem; color: var(--dark); }
.hero-card input, .hero-card select, .hero-card textarea {
  width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: inherit; font-size: .95rem; color: var(--dark);
  transition: border-color .2s;
}
.hero-card input:focus, .hero-card select:focus, .hero-card textarea:focus {
  outline: none; border-color: var(--primary);
}
.hero-card textarea { resize: vertical; min-height: 80px; }
.hero-card .btn { width: 100%; justify-content: center; margin-top: .5rem; }
.hero-card .license-note { font-size: .75rem; color: var(--light-gray); text-align: center; margin-top: .75rem; }

/* ============ VALUE BAND ============ */
.value-band {
  background: var(--secondary); color: white;
  padding: 1.5rem 0;
}
.value-band .vb-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
}
.vb-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .5rem; border-right: 1px solid rgba(255,255,255,.3);
}
.vb-item:last-child { border-right: none; }
.vb-icon { width: 40px; height: 40px; background: rgba(255,255,255,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vb-text strong { display: block; font-weight: 700; font-size: .95rem; }
.vb-text span { font-size: .8rem; opacity: .85; }

/* ============ SERVICES SECTION ============ */
.services-section { padding: 5rem 0; background: var(--bg); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem; margin-top: 2.5rem;
}
.service-card {
  background: white; border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem; border: 1.5px solid var(--border);
  transition: all .25s ease; cursor: default;
  display: flex; align-items: flex-start; gap: 1rem;
}
.service-card:hover {
  border-color: var(--primary); box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--primary-light); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.service-card h4 { margin-bottom: .3rem; }
.service-card p { font-size: .88rem; color: var(--gray); line-height: 1.6; }

/* ============ ABOUT SECTION ============ */
.about-section { padding: 5rem 0; }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-image { position: relative; }
.about-image img {
  border-radius: var(--radius-lg); width: 100%; height: 420px; object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--secondary); color: white;
  padding: 1.25rem 1.5rem; border-radius: var(--radius-lg);
  text-align: center; box-shadow: var(--shadow-md);
}
.about-badge .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; line-height: 1; }
.about-badge .label { font-size: .75rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; opacity: .9; }
.about-text p { color: var(--gray); line-height: 1.85; margin-bottom: 1rem; font-size: 1rem; }
.about-features { display: flex; flex-direction: column; gap: .6rem; margin-top: 1.5rem; }
.about-feature { display: flex; align-items: flex-start; gap: .6rem; }
.about-feature svg { color: var(--secondary); margin-top: .15rem; flex-shrink: 0; }
.about-feature span { font-size: .95rem; color: var(--gray); }

/* ============ STATS BAND ============ */
.stats-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 4rem 0; text-align: center; color: white;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  max-width: 900px; margin: 0 auto; padding: 0 1.5rem;
}
.stat-item .counter {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 800; display: block; line-height: 1;
  margin-bottom: .5rem;
}
.stat-item .stat-label {
  font-size: .8rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; opacity: .8;
}
.stat-divider { width: 1px; background: rgba(255,255,255,.2); }

/* ============ TESTIMONIALS ============ */
.testimonials-section { padding: 5rem 0; background: var(--bg); }
.tc-container { position: relative; max-width: 780px; margin: 2.5rem auto 0; }
.tc-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.tc-slide {
  min-width: 100%; padding: 2.5rem;
  background: white; border-radius: var(--radius-lg);
  text-align: center; box-shadow: var(--shadow-md);
}
.tc-stars { color: #f59e0b; font-size: 1.25rem; margin-bottom: 1rem; letter-spacing: 2px; }
.tc-quote {
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
  line-height: 1.8; color: var(--dark); font-style: italic;
  margin-bottom: 1.25rem;
}
.tc-quote::before { content: '\201C'; }
.tc-quote::after { content: '\201D'; }
.tc-cite { font-weight: 700; color: var(--primary); font-size: .9rem; }
.tc-source { font-size: .8rem; color: var(--light-gray); }
.tc-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.25rem; }
.tc-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--primary); opacity: .25; border: none; cursor: pointer; transition: opacity .3s;
}
.tc-dot.active { opacity: 1; }
.tc-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: var(--primary); color: white; border: none;
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); transition: background .2s, transform .2s;
  z-index: 5;
}
.tc-nav:hover { background: var(--primary-dark); transform: translateY(-50%) scale(1.08); }
.tc-prev { left: -1.5rem; }
.tc-next { right: -1.5rem; }
@media (max-width: 700px) {
  .tc-prev { left: .25rem; } .tc-next { right: .25rem; }
}

/* ============ BEFORE/AFTER SLIDER ============ */
.ba-section { padding: 5rem 0; }
.ba-wrapper { max-width: 780px; margin: 2.5rem auto 0; }
.ba-labels { display: flex; justify-content: space-between; margin-bottom: .5rem; }
.ba-labels span { font-weight: 700; font-size: .8rem; letter-spacing: 1px; text-transform: uppercase; color: var(--gray); }

/* ============ SERVICE AREA MAP ============ */
.map-section { padding: 5rem 0; background: var(--bg); }
.map-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 2.5rem; align-items: start; margin-top: 2.5rem; }
.map-areas { }
.area-list { display: flex; flex-direction: column; gap: .6rem; margin-top: 1rem; }
.area-item { display: flex; align-items: center; gap: .6rem; font-weight: 500; color: var(--gray); }
.area-item svg { color: var(--secondary); flex-shrink: 0; }
#service-area-map { height: 380px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

/* ============ FAQ ACCORDION ============ */
.faq-section { padding: 5rem 0; }
.faq-list { max-width: 720px; margin: 2.5rem auto 0; }
.faq-item {
  border-bottom: 1.5px solid var(--border); padding: 1rem 0;
}
.faq-item summary {
  cursor: pointer; font-weight: 600; font-size: 1rem; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--dark); padding: .25rem 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-chevron { transition: transform .3s; flex-shrink: 0; margin-left: 1rem; color: var(--primary); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item[open] summary { color: var(--primary); }
.faq-body { padding: .875rem 0 .25rem; line-height: 1.8; color: var(--gray); font-size: .95rem; }

/* ============ COUPON SECTION ============ */
.coupons-section { padding: 4rem 0; background: var(--primary); }
.coupons-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.coupon-card {
  background: white; border-radius: var(--radius-lg);
  padding: 1.75rem; text-align: center; position: relative; overflow: hidden;
}
.coupon-card::before {
  content: ''; position: absolute; left: -12px; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px; background: var(--primary); border-radius: 50%;
}
.coupon-card::after {
  content: ''; position: absolute; right: -12px; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px; background: var(--primary); border-radius: 50%;
}
.coupon-border { border: 2px dashed var(--border); border-radius: var(--radius); padding: 1.25rem; }
.coupon-value { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 800; color: var(--secondary); line-height: 1; }
.coupon-title { font-weight: 700; font-size: 1rem; color: var(--dark); margin: .5rem 0 .3rem; }
.coupon-desc { font-size: .85rem; color: var(--gray); line-height: 1.5; }
.coupon-terms { font-size: .7rem; color: var(--light-gray); margin-top: .75rem; }

/* ============ CTA BAND ============ */
.cta-band { padding: 4rem 0; background: var(--dark); }
.cta-band-inner { text-align: center; color: white; }
.cta-band h2 { margin-bottom: .75rem; }
.cta-band p { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-band .btn-group { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* ============ CONTACT FORM ============ */
.contact-form-section { padding: 5rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; margin-top: 2.5rem; }
.contact-info-card {
  background: var(--bg); border-radius: var(--radius-lg); padding: 2.5rem;
  border: 1.5px solid var(--border);
}
.ci-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.ci-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--primary-light); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.ci-content strong { display: block; font-weight: 700; margin-bottom: .2rem; color: var(--dark); }
.ci-content p, .ci-content a { color: var(--gray); font-size: .95rem; }
.ci-content a:hover { color: var(--primary); }
.social-links { display: flex; gap: .75rem; margin-top: .5rem; }
.social-link {
  width: 36px; height: 36px; background: var(--primary-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--primary); transition: all .2s;
}
.social-link:hover { background: var(--primary); color: white; }

.contact-form-card {
  background: white; border-radius: var(--radius-lg); padding: 2.5rem;
  border: 1.5px solid var(--border); box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: .875rem; margin-bottom: .4rem; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .8rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: inherit; font-size: .95rem;
  color: var(--dark); background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(1,144,195,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none; background: #f0fdf4; border: 1.5px solid #86efac;
  border-radius: var(--radius); padding: 1.25rem; text-align: center;
  color: #166534; font-weight: 600; margin-top: 1rem;
}

/* ============ HERO PAGES (inner) ============ */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 4rem 1.5rem; text-align: center; color: white;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .breadcrumb { font-size: .85rem; opacity: .7; margin-bottom: 1rem; }
.page-hero .breadcrumb a { color: white; }
.page-hero h1 { position: relative; margin-bottom: .75rem; }
.page-hero p { position: relative; opacity: .85; font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: .75rem; margin-top: 2rem;
}
.gallery-img {
  width: 100%; height: 220px; object-fit: cover;
  border-radius: var(--radius); cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}
.gallery-img:hover { transform: scale(1.03); box-shadow: var(--shadow-md); }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--dark); color: rgba(255,255,255,.75);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 2.5rem;
}
.footer-brand .biz-name { color: white; font-size: 1.1rem; margin-bottom: .5rem; }
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-brand .social-links { justify-content: flex-start; }
.footer-col h5 { color: white; font-weight: 700; font-size: .9rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { color: rgba(255,255,255,.65); font-size: .88rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--secondary); }
.footer-col address { font-style: normal; font-size: .88rem; line-height: 1.8; }
.footer-col address a { color: rgba(255,255,255,.65); }
.footer-col address a:hover { color: var(--secondary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: .75rem;
  font-size: .82rem;
}
.footer-bottom .license { color: var(--secondary); font-weight: 600; }

/* ============ REVEAL ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }
.reveal:nth-child(5) { transition-delay: .4s; }
.reveal:nth-child(6) { transition-delay: .5s; }
.reveal:nth-child(7) { transition-delay: .6s; }

/* ============ FLOATING CTA ============ */
.floating-cta {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  background: var(--secondary); color: white;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,187,0,.35);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.floating-cta:hover { color: white; transform: scale(1.1); box-shadow: 0 6px 28px rgba(0,187,0,.45); }
@media (min-width: 768px) { .floating-cta { width: 64px; height: 64px; bottom: 2rem; right: 2rem; } }

/* ============ LIGHTBOX ============ */
#lightbox {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.92); align-items: center; justify-content: center; cursor: zoom-out;
}
#lightbox.open { display: flex; }
#lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 6px; }
#lightbox-close {
  position: absolute; top: 1rem; right: 1.25rem;
  background: none; border: none; color: white; font-size: 2.5rem; cursor: pointer;
  line-height: 1; opacity: .7; transition: opacity .2s;
}
#lightbox-close:hover { opacity: 1; }

/* ============ SERVICES PAGE ============ */
.services-full { padding: 4rem 0; }
.services-full-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 2rem;
}
.service-full-card {
  background: white; border-radius: var(--radius-lg);
  padding: 2rem; border: 1.5px solid var(--border);
  transition: all .25s ease;
}
.service-full-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-full-card .svc-num {
  font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800;
  color: var(--primary-light); line-height: 1; margin-bottom: .5rem;
}
.service-full-card h3 { margin-bottom: .5rem; font-size: 1.2rem; color: var(--dark); }
.service-full-card p { font-size: .9rem; color: var(--gray); line-height: 1.7; }

/* ============ ABOUT PAGE ============ */
.about-full { padding: 4rem 0; }
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem; margin-top: 2rem;
}
.value-card {
  background: var(--bg); border-radius: var(--radius-lg);
  padding: 2rem 1.5rem; text-align: center;
  border: 1.5px solid var(--border); transition: all .25s ease;
}
.value-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.value-icon { width: 56px; height: 56px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); margin: 0 auto 1rem; }
.value-card h4 { margin-bottom: .4rem; }
.value-card p { font-size: .88rem; color: var(--gray); line-height: 1.6; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-divider { display: none; }
}
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .about-badge { right: 0; bottom: -1rem; }
  .map-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .value-band .vb-grid { grid-template-columns: repeat(2, 1fr); }
  .vb-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.3); }
  .vb-item:nth-child(2n) { border-bottom-color: transparent; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .header-main { padding: .75rem 1rem; }
  .hero { min-height: auto; }
  .hero-content { padding: 3rem 1rem 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .tc-prev { left: 0; } .tc-next { right: 0; }
  .tc-slide { padding: 1.75rem 1rem; }
  .coupons-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
