/* ArtFix Plumbing - Precision Teal Theme */
/* Brand: #14B8A6 primary teal | #1E3A5F navy | #142840 dark navy | #F59E0B amber */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@400;600;700;800;900&family=Rubik:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #14B8A6;
  --primary-dark: #0e9e8e;
  --primary-light: #5EEAD4;
  --navy: #1E3A5F;
  --navy-dark: #142840;
  --amber: #F59E0B;
  --white: #ffffff;
  --off-white: #f8fafb;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --text: #1E3A5F;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.16);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: 'Big Shoulders Display', sans-serif;
  line-height: 1.1;
  font-weight: 800;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: .5rem 1rem;
  z-index: 1000;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  padding: .4rem 1rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.top-bar a { color: var(--primary-light); font-weight: 600; }
.top-bar a:hover { color: var(--white); }

/* ========== HEADER / NAV ========== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(20,40,64,.12);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: .75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.logo-wrap img {
  height: 48px;
  width: 48px;
  object-fit: contain;
}
.logo-name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.01em;
}
.logo-name span { color: var(--primary); }
.header-phone {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.header-phone a {
  background: var(--primary);
  color: white;
  padding: .5rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  transition: background .2s, transform .15s;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.header-phone a:hover { background: var(--primary-dark); transform: scale(1.03); }
.header-phone a:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }

nav { display: flex; gap: .25rem; margin-left: 1rem; }
nav a {
  padding: .4rem .75rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: .9rem;
  color: var(--gray-700);
  transition: color .2s, background .2s;
}
nav a:hover, nav a.active {
  color: var(--primary-dark);
  background: rgba(20,184,166,.08);
}
nav a:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  color: var(--navy);
  margin-left: auto;
}
.mobile-nav {
  display: none;
  padding: 1rem 1.5rem;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: .6rem 0;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ========== HERO ========== */
.hero {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
  padding: 5rem 1.5rem 4rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://artfixplumbing.com/og-image.jpg') center/cover no-repeat;
  opacity: .18;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: center;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(20,184,166,.15);
  border: 1px solid rgba(94,234,212,.3);
  color: var(--primary-light);
  font-size: .8rem;
  font-weight: 600;
  padding: .35rem .9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}
.hero h1 span { color: var(--primary); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 2rem;
  max-width: 560px;
  font-weight: 300;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--primary);
  color: white;
  padding: .875rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(20,184,166,.4);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(20,184,166,.5); }
.btn-primary:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: white;
  padding: .875rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,.4);
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,.08); }
.btn-outline:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }
.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.65);
  font-size: .85rem;
}
.trust-icon { color: var(--primary); font-size: 1rem; }

/* Hero card */
.hero-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.hero-card h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: .25rem;
}
.hero-card .subtitle { color: var(--gray-600); font-size: .9rem; margin-bottom: 1.25rem; }
.hero-card-rating {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.stars { color: var(--amber); font-size: 1.1rem; letter-spacing: 2px; }
.rating-text { font-weight: 600; color: var(--navy); }
.rating-sub { font-size: .8rem; color: var(--gray-600); }
.hero-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.5rem;
}
.hero-card-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  color: var(--gray-700);
}
.hero-card-list li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-card-cta {
  display: block;
  background: var(--primary);
  color: white;
  text-align: center;
  padding: .875rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: background .2s;
  border: none;
  cursor: pointer;
  width: 100%;
}
.hero-card-cta:hover { background: var(--primary-dark); }
.hero-card-cta:focus-visible { outline: 3px solid var(--navy); outline-offset: 2px; }

/* ========== STATS BAR ========== */
.stats-bar {
  background: var(--primary);
  padding: 2.5rem 1.5rem;
}
.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-block { color: white; }
.stat-num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 2.75rem;
  font-weight: 900;
  display: block;
  line-height: 1;
  margin-bottom: .25rem;
}
.stat-label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .85;
  font-weight: 500;
}

/* ========== SECTION SHARED ========== */
.section { padding: 5rem 1.5rem; }
.section-alt { background: var(--off-white); }
.section-dark {
  background: var(--navy-dark);
  color: white;
}
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--primary);
  margin-bottom: .5rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-dark .section-title { color: white; }
.section-title span { color: var(--primary); }
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
  margin-bottom: 3rem;
}
.section-dark .section-sub { color: rgba(255,255,255,.7); }

/* ========== SERVICES GRID ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform .25s;
  transform-origin: left;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(20,184,166,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  color: var(--primary);
}
.service-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: .5rem;
}
.service-card p { font-size: .9rem; color: var(--gray-600); line-height: 1.6; }
.service-price {
  display: inline-block;
  margin-top: .75rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(20,184,166,.08);
  padding: .2rem .7rem;
  border-radius: 999px;
}

/* ========== ABOUT STRIP ========== */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--primary);
  color: white;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-family: 'Big Shoulders Display', sans-serif;
}
.about-badge .big { font-size: 2.5rem; font-weight: 900; display: block; line-height: 1; }
.about-badge .small { font-size: .9rem; font-weight: 600; }
.about-text { font-size: .95rem; color: var(--gray-700); line-height: 1.75; margin-bottom: 1.25rem; }
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin: 1.5rem 0;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: var(--gray-700);
}
.highlight-icon {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: .1rem;
  font-size: 1.1rem;
}

/* ========== GUARANTEE BAND ========== */
.guarantee-band {
  background: var(--navy);
  padding: 3rem 1.5rem;
  text-align: center;
  color: white;
}
.guarantee-band .container { display: flex; align-items: center; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.guarantee-icon { font-size: 3rem; color: var(--primary); flex-shrink: 0; }
.guarantee-text h3 { font-size: 1.5rem; color: white; margin-bottom: .5rem; }
.guarantee-text p { color: rgba(255,255,255,.75); max-width: 600px; }

/* ========== TESTIMONIALS ========== */
.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.tc-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.tc-slide {
  min-width: 100%;
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--gray-200);
}
.tc-quote {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}
.tc-quote::before {
  content: '"';
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 5rem;
  color: var(--primary);
  opacity: .2;
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  line-height: 1;
}
.tc-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.tc-avatar {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}
.tc-author-name { font-weight: 600; color: var(--navy); font-size: .95rem; }
.tc-author-loc { font-size: .8rem; color: var(--gray-600); }
.tc-stars { color: var(--amber); font-size: .9rem; }
.tc-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  margin-top: 1.5rem;
}
.tc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--gray-200);
  cursor: pointer;
  transition: background .3s, transform .3s;
  padding: 0;
}
.tc-dot.active { background: var(--primary); transform: scale(1.4); }
.tc-btn {
  background: white;
  border: 1px solid var(--gray-200);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: background .2s, border-color .2s;
}
.tc-btn:hover { background: var(--gray-100); border-color: var(--primary); }
.tc-btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

/* ========== SERVICE AREAS ========== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: .6rem;
  margin-bottom: 2.5rem;
}
.area-tag {
  background: rgba(20,184,166,.1);
  border: 1px solid rgba(20,184,166,.2);
  color: var(--navy);
  padding: .5rem .75rem;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 500;
  text-align: center;
  transition: background .2s, border-color .2s;
}
.area-tag:hover { background: rgba(20,184,166,.2); border-color: var(--primary); }
#service-area-map { height: 380px; border-radius: var(--radius-lg); margin-top: 2rem; border: 2px solid var(--gray-200); }

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

/* ========== CONTACT FORM ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-row { margin-bottom: 1.25rem; }
.form-row label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .4rem;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-family: 'Rubik', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: white;
  transition: border-color .2s;
  outline: none;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--primary);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.submit-btn {
  width: 100%;
  background: var(--primary);
  color: white;
  padding: .875rem;
  border-radius: 999px;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.submit-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
.submit-btn:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--primary-dark);
  font-weight: 600;
}

.contact-info-block { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: white;
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(20,184,166,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 1rem; color: var(--navy); margin-bottom: .25rem; }
.contact-item p, .contact-item a {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.6;
}
.contact-item a:hover { color: var(--primary); }

/* ========== HOURS TABLE ========== */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr:not(:last-child) td { border-bottom: 1px solid var(--gray-100); }
.hours-table td { padding: .6rem .5rem; font-size: .9rem; color: var(--gray-600); }
.hours-table td:first-child { font-weight: 500; color: var(--navy); }
.hours-table td:last-child { text-align: right; color: var(--primary); font-weight: 500; }

/* ========== FOOTER ========== */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.8);
  padding: 4rem 1.5rem 2rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-wrap { margin-bottom: 1rem; }
.footer-brand .logo-name { color: white; }
.footer-brand .logo-name span { color: var(--primary); }
.footer-brand p { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.6); }
.footer-social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background .2s, color .2s;
  font-size: 1rem;
}
.social-btn:hover { background: var(--primary); color: white; }
.social-btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.footer-col h4 {
  font-size: 1rem;
  color: white;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid rgba(20,184,166,.3);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--primary-light); }
.footer-col ul li a:focus-visible { outline: 1px solid var(--primary); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
.footer-badges { display: flex; gap: .75rem; flex-wrap: wrap; }
.footer-badge {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  padding: .25rem .75rem;
  border-radius: 999px;
  font-size: .75rem;
  color: rgba(255,255,255,.6);
}

/* ========== 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(20,184,166,.5);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.floating-cta:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(20,184,166,.6); }
.floating-cta:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

/* ========== SCROLL REVEAL ========== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s 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; }

/* ========== SERVICES PAGE ========== */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-detail-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.service-detail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-detail-header {
  background: var(--navy);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.service-detail-header .icon {
  font-size: 1.75rem;
  color: var(--primary);
}
.service-detail-header h3 {
  font-size: 1.15rem;
  color: white;
}
.service-detail-body { padding: 1.5rem; }
.service-detail-body p { font-size: .9rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 1rem; }
.service-detail-price {
  font-size: .85rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(20,184,166,.08);
  display: inline-block;
  padding: .3rem .9rem;
  border-radius: 999px;
}

/* ========== ABOUT PAGE ========== */
.about-hero-section {
  background: var(--navy-dark);
  padding: 4rem 1.5rem;
  text-align: center;
}
.about-hero-section h1 { font-size: clamp(2rem, 4vw, 3.5rem); color: white; }
.about-hero-section h1 span { color: var(--primary); }
.about-hero-section p { color: rgba(255,255,255,.7); font-size: 1.1rem; max-width: 600px; margin: 1rem auto 0; }
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.story-text h2 { font-size: 2rem; color: var(--navy); margin-bottom: 1rem; }
.story-text p { color: var(--gray-700); line-height: 1.8; margin-bottom: 1rem; font-size: .95rem; }
.story-text blockquote {
  border-left: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  background: rgba(20,184,166,.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--gray-700);
  margin: 1.5rem 0;
}
.license-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.license-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.license-card .lc-icon { font-size: 2rem; color: var(--primary); margin-bottom: .5rem; }
.license-card h4 { font-size: .95rem; color: var(--navy); margin-bottom: .25rem; }
.license-card p { font-size: .8rem; color: var(--gray-600); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.value-card .vc-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; }
.value-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: .5rem; }
.value-card p { font-size: .9rem; color: var(--gray-600); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .stats-bar-inner { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-strip { grid-template-columns: 1fr; }
  .about-image-wrap img { height: 320px; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .header-phone { display: none; }
  .hamburger { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 3.5rem 1.25rem 3rem; }
  .about-highlights { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .services-full-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .license-cards { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline { width: 100%; justify-content: center; }
  .tc-slide { padding: 1.75rem; }
}
