/* American Plumbing and Drain — Quicksand + Work Sans */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Work+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --primary: #1a7efb;
  --primary-dark: #0a5cc7;
  --primary-light: #e8f3ff;
  --secondary: #ff99cc;
  --secondary-dark: #e0709e;
  --secondary-light: #fff5f9;
  --dark: #1c2b33;
  --mid: #4a5568;
  --light: #f0f7ff;
  --bg: #ffffff;
  --border: #e2eaf5;
  --shadow: 0 4px 24px rgba(26,126,251,0.10);
  --shadow-hover: 0 8px 40px rgba(26,126,251,0.18);
  --radius: 14px;
  --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Work Sans', sans-serif;
  color: var(--dark);
  background: var(--bg);
  line-height: 1.7;
  font-size: 1rem;
}

.skip-link {
  position: absolute; top: -40px; left: 1rem;
  background: var(--primary); color: #fff;
  padding: .5rem 1rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none; font-weight: 600; z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ===== NAVIGATION ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 12px rgba(26,126,251,0.06);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.nav-logo img { height: 50px; width: auto; }
.nav-logo-text {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700; font-size: 1rem; color: var(--dark); line-height: 1.2;
}
.nav-links {
  display: flex; align-items: center; gap: 2rem; list-style: none;
}
.nav-links a {
  text-decoration: none; color: var(--mid);
  font-weight: 500; font-size: .95rem;
  transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--primary); transition: width .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--primary) !important; color: #fff !important;
  padding: .5rem 1.25rem; border-radius: 50px; font-weight: 600 !important;
  transition: background .2s, transform .2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .25rem; color: var(--dark); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; flex-direction: column; gap: 0;
    border-bottom: 2px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,.08); padding: 1rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: .75rem 1.5rem; border-bottom: 1px solid var(--border); }
  .nav-links a::after { display: none; }
  .nav-cta { margin: .5rem 1.5rem; text-align: center; }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative; overflow: hidden;
  padding: 5rem 1.5rem 4rem; text-align: center; color: #fff;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255,153,204,0.15) 0%, transparent 60%),
              radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 50%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: .4rem 1rem; border-radius: 50px;
  font-size: .85rem; font-weight: 600; margin-bottom: 1.5rem; color: #fff;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--secondary);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .7; transform: scale(1.3); }
}
.hero-content { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.hero h1 {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700; line-height: 1.15; margin-bottom: 1.25rem;
  animation: fadeUp .6s ease both;
}
.hero h1 .highlight { color: var(--secondary); }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: .92; margin-bottom: 2.5rem; font-weight: 400;
  animation: fadeUp .6s .15s ease both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
  animation: fadeUp .6s .3s ease both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; color: var(--primary);
  padding: .875rem 2rem; border-radius: 50px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,.2); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,0.15); color: #fff;
  padding: .875rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: 1rem; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.4);
  transition: background .2s, transform .2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }
.hero-trust {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem;
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  animation: fadeUp .6s .45s ease both;
}
.trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .9rem; font-weight: 500; opacity: .9;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== STATS BAND ===== */
.stats-band { background: var(--dark); padding: 3rem 1.5rem; color: #fff; }
.stats-grid {
  max-width: 900px; margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem 4rem;
}
.stat-item { text-align: center; }
.counter {
  font-family: 'Quicksand', sans-serif;
  font-size: 3rem; font-weight: 700; color: var(--secondary);
  display: block; line-height: 1;
}
.stat-label {
  text-transform: uppercase; letter-spacing: 2px;
  font-size: .75rem; opacity: .65; margin-top: .4rem; display: block;
}

/* ===== SECTIONS ===== */
section { padding: 5rem 1.5rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--primary); margin-bottom: .75rem;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 2px; background: var(--secondary);
}
h2.section-title {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700; color: var(--dark); line-height: 1.25; margin-bottom: 1rem;
}
.section-desc {
  color: var(--mid); font-size: 1.05rem;
  max-width: 600px; line-height: 1.8; margin-bottom: 3rem;
}

/* ===== SERVICE CARDS ===== */
.services-bg { background: var(--light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: #fff; border-radius: var(--radius);
  padding: 2rem; border: 1.5px solid var(--border);
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.service-card:hover {
  border-color: var(--primary); box-shadow: var(--shadow-hover); transform: translateY(-4px);
}
.service-icon-wrap {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.service-icon-wrap img { width: 34px; height: 34px; object-fit: contain; }
.service-card h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: .6rem;
}
.service-card p { font-size: .9rem; color: var(--mid); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonial-carousel {
  position: relative; max-width: 750px; margin: 0 auto;
  overflow: hidden; border-radius: var(--radius);
}
.tc-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.tc-slide {
  min-width: 100%; padding: 2.5rem;
  background: var(--light); border: 1.5px solid var(--border); border-radius: var(--radius);
}
.tc-quote-mark {
  font-family: Georgia, serif; font-size: 4rem; color: var(--secondary);
  line-height: .8; margin-bottom: 1rem; display: block;
}
.tc-slide blockquote {
  font-size: 1.05rem; line-height: 1.8; color: var(--dark);
  font-style: italic; margin-bottom: 1.5rem;
}
.tc-attribution { display: flex; align-items: center; gap: .75rem; }
.tc-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.tc-name { font-weight: 700; color: var(--dark); }
.tc-stars { color: #fbbf24; font-size: .8rem; }
.tc-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.5rem; }
.tc-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--primary); opacity: .3; border: none; cursor: pointer;
  transition: opacity .3s, transform .3s;
}
.tc-dot.active { opacity: 1; transform: scale(1.2); }

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--secondary-light); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 2rem; } }
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: 0 16px 48px rgba(26,126,251,0.12); position: relative; }
.about-img img { width: 100%; height: 380px; object-fit: cover; display: block; }
.about-img-badge {
  position: absolute; bottom: 1.25rem; left: 1.25rem;
  background: var(--primary); color: #fff;
  padding: .75rem 1.25rem; border-radius: var(--radius-sm);
  font-family: 'Quicksand', sans-serif; font-weight: 700;
}
.about-img-badge .num { font-size: 1.5rem; display: block; line-height: 1; }
.about-img-badge .txt { font-size: .75rem; opacity: .85; }
.about-content h2 { margin-bottom: 1rem; }
.about-text { color: var(--mid); font-size: 1rem; line-height: 1.8; margin-bottom: 1.5rem; }
.about-values { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.about-value { display: flex; align-items: flex-start; gap: .75rem; }
.value-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--primary-light); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.value-text strong { display: block; font-weight: 600; color: var(--dark); font-size: .95rem; }
.value-text span { font-size: .875rem; color: var(--mid); }

/* ===== BUTTONS ===== */
.btn-blue {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--primary); color: #fff;
  padding: .875rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: .95rem; text-decoration: none;
  transition: background .2s, transform .2s;
}
.btn-blue:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--primary);
  padding: .875rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: .95rem; text-decoration: none;
  border: 2px solid var(--primary);
  transition: background .2s, color .2s, transform .2s;
}
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff; text-align: center; padding: 4.5rem 1.5rem;
}
.cta-band h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; margin-bottom: 1rem;
}
.cta-band p { opacity: .9; font-size: 1.05rem; margin-bottom: 2rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ===== SERVICE AREA MAP ===== */
.map-section { background: var(--light); }
#service-area-map, #contact-map {
  height: 380px; border-radius: var(--radius);
  border: 1.5px solid var(--border); box-shadow: var(--shadow);
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: .75rem;
}
.gallery-img {
  width: 100%; height: 220px; object-fit: cover;
  border-radius: var(--radius-sm); cursor: pointer;
  transition: transform .3s, box-shadow .3s; display: block;
}
.gallery-img:hover { transform: scale(1.03); box-shadow: 0 8px 32px rgba(26,126,251,0.2); }

#lightbox {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.92); align-items: center; justify-content: center; cursor: zoom-out;
}
#lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius-sm); }
#lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: #fff;
  font-size: 2.5rem; cursor: pointer; line-height: 1; transition: opacity .2s;
}
#lightbox-close:hover { opacity: .7; }

/* ===== BEFORE/AFTER ===== */
.ba-slider {
  position: relative; overflow: hidden; max-width: 700px; margin: 0 auto;
  border-radius: var(--radius); aspect-ratio: 16/10; user-select: none; box-shadow: var(--shadow);
}
.ba-before { position: absolute; top: 0; left: 0; width: 50%; height: 100%; overflow: hidden; }
.ba-before img { height: 100%; object-fit: cover; display: block; }
.ba-handle {
  position: absolute; top: 0; left: 50%; width: 4px; height: 100%;
  background: #fff; cursor: ew-resize; transform: translateX(-50%); z-index: 2;
  box-shadow: 0 0 8px rgba(0,0,0,.3);
}
.ba-handle-icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 40px; height: 40px; background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.25); font-size: 18px; color: var(--primary);
}
.ba-label {
  position: absolute; top: 1rem; padding: .25rem .75rem; border-radius: 50px;
  font-size: .75rem; font-weight: 700; letter-spacing: 1px; pointer-events: none;
}
.ba-label-before { left: 1rem; background: rgba(0,0,0,.6); color: #fff; }
.ba-label-after { right: 1rem; background: var(--primary); color: #fff; }

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

/* ===== CONTACT ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.contact-info-card {
  background: var(--light); border-radius: var(--radius);
  padding: 2.5rem; border: 1.5px solid var(--border);
}
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.75rem; }
.contact-info-item:last-child { margin-bottom: 0; }
.info-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-text strong { display: block; font-weight: 700; color: var(--dark); margin-bottom: .2rem; }
.info-text a { color: var(--primary); text-decoration: none; }
.info-text a:hover { text-decoration: underline; }
.info-text span { color: var(--mid); font-size: .9rem; }
.hours-table { font-size: .875rem; width: 100%; border-collapse: collapse; margin-top: .5rem; }
.hours-table td { padding: .25rem .5rem .25rem 0; color: var(--mid); }
.hours-table td:first-child { font-weight: 600; color: var(--dark); width: 50%; }
.payment-methods { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: .5rem; }
.payment-pill {
  background: #fff; border: 1.5px solid var(--border);
  padding: .3rem .85rem; border-radius: 50px;
  font-size: .8rem; font-weight: 600; color: var(--mid);
}
.form-card {
  background: var(--bg); border-radius: var(--radius);
  padding: 2.5rem; border: 1.5px solid var(--border); box-shadow: var(--shadow);
}
.form-card h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem; font-weight: 700; margin-bottom: 1.75rem; color: var(--dark);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-weight: 600; font-size: .875rem; color: var(--dark); margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Work Sans', sans-serif; font-size: .95rem; color: var(--dark); background: #fff;
  transition: border-color .2s, box-shadow .2s; outline: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,126,251,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.btn-submit {
  width: 100%; padding: .9rem;
  background: var(--primary); color: #fff;
  border: none; border-radius: 50px;
  font-family: 'Work Sans', sans-serif; font-weight: 700; font-size: 1rem; cursor: pointer;
  transition: background .2s, transform .2s;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.btn-submit:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-submit:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; }
.form-success {
  display: none; text-align: center; padding: 2rem;
  background: #f0fdf4; border-radius: var(--radius); border: 1.5px solid #86efac;
}
.form-success h4 {
  font-family: 'Quicksand', sans-serif; color: #166534; font-size: 1.25rem; margin-bottom: .5rem;
}
.form-success p { color: #15803d; font-size: .95rem; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff; padding: 4rem 1.5rem; text-align: center;
}
.page-hero h1 {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: .75rem;
}
.page-hero p { opacity: .9; font-size: 1.1rem; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem; font-size: .85rem; opacity: .75; margin-bottom: 1rem;
}
.breadcrumb a { color: #fff; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== SERVICES FULL PAGE ===== */
.services-full-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.75rem;
}
.service-full-card {
  background: #fff; border-radius: var(--radius);
  padding: 2rem; border: 1.5px solid var(--border);
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.service-full-card:hover {
  border-color: var(--primary); box-shadow: var(--shadow-hover); transform: translateY(-4px);
}
.service-full-card .svc-num {
  font-family: 'Quicksand', sans-serif;
  font-size: .8rem; font-weight: 700; letter-spacing: 2px;
  color: var(--secondary); margin-bottom: .75rem; text-transform: uppercase;
}
.service-full-card h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: .6rem;
}
.service-full-card p { font-size: .9rem; color: var(--mid); line-height: 1.65; }

/* ===== LICENSED BAND ===== */
.licensed-band {
  background: var(--secondary-light); padding: 1.5rem;
  border-top: 1px solid rgba(255,153,204,.3); border-bottom: 1px solid rgba(255,153,204,.3);
}
.licensed-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2rem;
}
.licensed-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .875rem; font-weight: 600; color: var(--dark);
}
.licensed-item svg { color: var(--primary); }

/* ===== FOOTER ===== */
.site-footer { background: var(--dark); color: rgba(255,255,255,.75); padding: 3.5rem 1.5rem 1.5rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-brand img { height: 44px; margin-bottom: .75rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .875rem; line-height: 1.6; max-width: 280px; margin-top: .5rem; }
.footer-heading {
  font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: .95rem;
  color: #fff; margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { color: rgba(255,255,255,.65); text-decoration: none; font-size: .875rem; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-contact-item {
  display: flex; gap: .5rem; align-items: flex-start;
  font-size: .875rem; margin-bottom: .75rem;
}
.footer-contact-item a { color: var(--secondary); text-decoration: none; }
.footer-contact-item a:hover { text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: .75rem;
  justify-content: space-between; align-items: center;
  font-size: .8rem; opacity: .55;
}
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: background .2s;
}
.footer-social a:hover { background: var(--primary); }

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  background: var(--primary); color: white;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(26,126,251,.4);
  transition: transform .2s, box-shadow .2s; text-decoration: none;
}
.floating-cta:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(26,126,251,.5); }
.floating-cta:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; }
@media (min-width: 768px) { .floating-cta { bottom: 2rem; right: 2rem; width: 64px; height: 64px; } }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); 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; }

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  .hero { padding: 3.5rem 1rem 3rem; }
  section { padding: 3.5rem 1rem; }
  .tc-slide { padding: 1.75rem; }
  .form-card, .contact-info-card { padding: 1.75rem; }
}

a:focus-visible, button:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; }
