/* ═══════════════════════════════════════════
   ANCHOR PLUMBING & DRAIN — DEMO SITE
   Color palette:
     Navy dark:  #0D1F35
     Navy mid:   #152d4e
     Navy light: #1a3a5c
     Red accent: #C8372D
     Red hover:  #a82e25
     Gold:       #F5A623
     Off-white:  #F8F9FA
     Text grey:  #6B7280
   ═══════════════════════════════════════════ */

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

:root {
  --navy-dark:   #0D1F35;
  --navy-mid:    #152d4e;
  --navy-light:  #1a3a5c;
  --red:         #C8372D;
  --red-hover:   #a82e25;
  --gold:        #F5A623;
  --white:       #FFFFFF;
  --off-white:   #F8F9FA;
  --light-grey:  #EEF1F5;
  --text-dark:   #1a1a2e;
  --text-mid:    #4A5568;
  --text-light:  #6B7280;
  --border:      #E2E8F0;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 8px 24px rgba(0,0,0,.12);
  --shadow-lg:   0 20px 48px rgba(0,0,0,.18);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  all 0.3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ─── UTILITIES ─────────────────────────── */

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.7;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(200,55,45,.1);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

/* ─── BUTTONS ────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(200,55,45,.35);
}
.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200,55,45,.45);
}

.btn-outline {
  border-color: rgba(255,255,255,.5);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
}

.btn-nav {
  background: var(--red);
  color: var(--white);
  padding: 10px 20px;
  font-size: 14px;
}
.btn-nav:hover { background: var(--red-hover); }

.btn-large { padding: 18px 36px; font-size: 17px; }

.btn-full { width: 100%; justify-content: center; }

.btn-ai {
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 16px;
  padding: 16px 32px;
  box-shadow: 0 4px 16px rgba(245,166,35,.4);
}
.btn-ai:hover {
  background: #e8971a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,.5);
}

/* ─── TOP BAR ────────────────────────────── */

.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  font-size: 13px;
  padding: 8px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar a {
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-weight: 600;
}
.top-bar a:hover { color: var(--gold); }

/* ─── NAVBAR ─────────────────────────────── */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 28px;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.2));
}

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

.logo-name {
  font-size: 18px;
  font-weight: 900;
  color: var(--navy-dark);
  letter-spacing: -.01em;
}

.logo-sub {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: .01em;
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  margin-left: auto;
}

.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 6px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--red);
  background: rgba(200,55,45,.06);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── HERO ───────────────────────────────── */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(160deg, #0D1F35 0%, #1a3a5c 45%, #0f2d52 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 50%, rgba(200,55,45,.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 0% 100%, rgba(245,166,35,.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='90' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='2'/%3E%3Ccircle cx='100' cy='100' r='70' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='2'/%3E%3Ccircle cx='100' cy='100' r='50' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='2'/%3E%3C/svg%3E") center/cover;
  pointer-events: none;
}

.hero-overlay { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 100px;
  max-width: 760px;
}

.hero-badge {
  display: inline-block;
  background: rgba(245,166,35,.15);
  border: 1px solid rgba(245,166,35,.35);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}

.hero h1 .accent {
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,.75);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-item {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: 8px 16px;
  border-radius: 100px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.4);
  font-size: 20px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── TRUST BAR ──────────────────────────── */

.trust-bar {
  background: var(--navy-dark);
  padding: 48px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-stat {
  text-align: center;
}

.trust-num {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.trust-label {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}

.trust-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,.15);
}

/* ─── SERVICES ───────────────────────────── */

.services {
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200,55,45,.2);
}

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

.service-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.service-link:hover { gap: 8px; }

/* ─── ABOUT ──────────────────────────────── */

.about {
  background: var(--white);
}

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

.about-image-col {
  position: relative;
}

.about-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-photo-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.photo-icon {
  font-size: 72px;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.3));
}

.photo-caption {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  min-width: 110px;
}

.badge-num {
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.badge-label {
  font-size: 11px;
  font-weight: 600;
  margin-top: 4px;
  opacity: .8;
}

.about-content h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 32px;
  padding: 24px 0;
  margin: 8px 0 28px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-stat {
  font-size: 15px;
  color: var(--text-mid);
}

.about-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--navy-dark);
  line-height: 1;
  margin-bottom: 2px;
}

/* ─── AI RECEPTIONIST ────────────────────── */

.ai-section {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 96px 0;
}

.ai-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 100% 50%, rgba(245,166,35,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 0% 0%, rgba(200,55,45,.1) 0%, transparent 50%);
  pointer-events: none;
}

.ai-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ai-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,166,35,.15);
  border: 1px solid rgba(245,166,35,.3);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.ai-content h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -.01em;
}

.ai-highlight { color: var(--gold); }

.ai-lead {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.ai-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ai-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ai-feature-icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ai-feature strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.ai-feature p {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  margin: 0;
}

/* Phone mockup */

.ai-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.phone-mockup {
  width: 100%;
  max-width: 360px;
  background: #1a1a2e;
  border-radius: 28px;
  border: 2px solid rgba(255,255,255,.1);
  box-shadow:
    0 0 0 8px rgba(255,255,255,.04),
    var(--shadow-lg);
  overflow: hidden;
}

.phone-screen {
  padding: 24px;
}

.call-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 20px;
}

.call-avatar {
  font-size: 36px;
  background: rgba(245,166,35,.15);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.call-status {
  font-size: 12px;
  color: var(--gold);
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.call-status::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.chat-bubbles {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.bubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.5;
  position: relative;
}

.bubble-time {
  font-size: 10px;
  opacity: .5;
  margin-top: 6px;
}

.bubble-in {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.9);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.bubble-out {
  background: linear-gradient(135deg, var(--red) 0%, #e84a40 100%);
  color: var(--white);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  text-align: right;
}

.bubble-out .bubble-time { text-align: right; }

.call-bar {
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.25);
  color: #22c55e;
  font-size: 12px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: center;
  justify-content: center;
}

.call-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.5s infinite;
}

.ai-cta-box {
  text-align: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 24px;
  width: 100%;
  max-width: 360px;
}

.ai-cta-box p {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  margin-bottom: 14px;
}

/* ─── TESTIMONIALS ───────────────────────── */

.testimonials {
  background: var(--off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  color: var(--navy-dark);
}

.testimonial-author span {
  font-size: 12px;
  color: var(--text-light);
}

.reviews-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.reviews-cta span {
  font-size: 16px;
  color: var(--text-mid);
  font-weight: 500;
}

.reviews-cta .btn-outline {
  border-color: var(--navy-light);
  color: var(--navy-dark);
}
.reviews-cta .btn-outline:hover {
  background: var(--navy-dark);
  color: var(--white);
  border-color: var(--navy-dark);
}

/* ─── SERVICE AREA ───────────────────────── */

.service-area {
  background: var(--white);
}

.towns-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}

.town {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-dark);
  transition: var(--transition);
}

.town:hover {
  background: var(--navy-dark);
  color: var(--white);
  border-color: var(--navy-dark);
}

.area-note {
  text-align: center;
  font-size: 15px;
  color: var(--text-mid);
}

.area-note a {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
}

/* ─── CONTACT ────────────────────────────── */

.contact {
  background: var(--navy-dark);
  color: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact .section-tag {
  color: var(--gold);
  background: rgba(245,166,35,.15);
}

.contact h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.contact > .container > .contact-info > p,
.contact-info > p {
  color: rgba(255,255,255,.7);
  margin-bottom: 36px;
  font-size: 17px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

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

.contact-item a,
.contact-item span {
  font-size: 16px;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  line-height: 1.5;
}

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

/* Contact form */

.contact-form-wrap {
  position: relative;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,58,92,.1);
}

.form-group textarea { resize: vertical; }

.form-note {
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
}

.form-note a {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
}

/* Success state */
.form-success {
  display: none;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.form-success.visible { display: block; }
.contact-form.hidden { display: none; }

.success-icon { font-size: 56px; margin-bottom: 16px; }
.form-success h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 12px;
}
.form-success p { font-size: 16px; color: var(--text-mid); }
.form-success a { color: var(--red); font-weight: 600; text-decoration: none; }

/* ─── FOOTER ─────────────────────────────── */

.footer {
  background: #070f1a;
  color: rgba(255,255,255,.65);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 64px 24px 48px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-license {
  font-size: 12px;
  color: rgba(255,255,255,.35);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.footer-links ul { list-style: none; }

.footer-links li,
.footer-links ul li {
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}

.footer-links a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-contact a {
  color: var(--gold);
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
}

.footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-ai-note {
  color: var(--gold);
  font-weight: 600;
}

/* ─── FAB ────────────────────────────────── */

.fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 6px 24px rgba(200,55,45,.5);
  text-decoration: none;
  transition: var(--transition);
  animation: fab-bounce 3s ease-in-out infinite;
}

.fab:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(200,55,45,.6);
}

@keyframes fab-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ─── SCROLL REVEAL ──────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Staggered children */
.services-grid .reveal:nth-child(2) { transition-delay: .1s; }
.services-grid .reveal:nth-child(3) { transition-delay: .2s; }
.services-grid .reveal:nth-child(4) { transition-delay: .3s; }
.services-grid .reveal:nth-child(5) { transition-delay: .4s; }
.services-grid .reveal:nth-child(6) { transition-delay: .5s; }

.testimonials-grid .reveal:nth-child(2) { transition-delay: .1s; }
.testimonials-grid .reveal:nth-child(3) { transition-delay: .2s; }
.testimonials-grid .reveal:nth-child(4) { transition-delay: .3s; }
.testimonials-grid .reveal:nth-child(5) { transition-delay: .4s; }
.testimonials-grid .reveal:nth-child(6) { transition-delay: .5s; }

/* ─── RESPONSIVE ─────────────────────────── */

@media (max-width: 900px) {
  .about-inner,
  .ai-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-col { order: -1; }

  .about-photo-placeholder { aspect-ratio: 16/9; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .trust-divider { display: none; }

  .trust-bar-inner { justify-content: center; gap: 40px; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }

  .nav-links { display: none; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    box-shadow: var(--shadow-md);
    z-index: 100;
  }

  .hamburger { display: flex; }

  .btn-nav { display: none; }

  .top-bar-inner {
    justify-content: center;
    gap: 12px;
  }

  .top-bar span:first-child,
  .top-bar span:nth-child(2) { display: none; }

  .hero-ctas { flex-direction: column; }

  .hero-ctas .btn { text-align: center; justify-content: center; }

  .form-row { grid-template-columns: 1fr; }

  .contact-form { padding: 28px 20px; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 24px 32px;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .reviews-cta { flex-direction: column; gap: 16px; }

  .fab { width: 52px; height: 52px; font-size: 20px; bottom: 20px; right: 20px; }
}
