/* =============================================
   ROCKET PLUMBING - Electric Speed Authority
   Brand: #204ce5 (electric blue) + #112337 (deep navy)
   Fonts: Outfit (headings) + Lato (body)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Lato:wght@400;600;700&display=swap');

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

:root {
  --primary:      #204ce5;
  --primary-dark: #1638b8;
  --primary-light:#4a70f7;
  --dark:         #112337;
  --dark-mid:     #1a3252;
  --accent:       #00c4ff;
  --text:         #1e2d3e;
  --muted:        #5a6e80;
  --light:        #f4f7ff;
  --white:        #ffffff;
  --shadow:       0 4px 24px rgba(17,35,55,.15);
  --shadow-lg:    0 8px 48px rgba(17,35,55,.22);
}

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
}

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

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

/* ---- Emergency Bar ---- */
.emergency-bar {
  background: #c0392b;
  color: white;
  text-align: center;
  padding: .45rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.emergency-bar a { color: white; font-weight: 800; }
.emergency-bar .pulse-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  margin-right: .4rem;
  animation: pulse-red 1.4s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes pulse-red {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(1.4); }
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1.25rem;
  max-width: 1160px;
  margin: 0 auto;
}
.site-logo img {
  height: 52px;
  width: auto;
}
.site-logo-fallback {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: white;
  letter-spacing: -.02em;
}
.site-logo-fallback span { color: var(--primary-light); }

.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav a {
  color: rgba(255,255,255,.85);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  letter-spacing: .02em;
  padding: .25rem 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: white;
  border-color: var(--primary-light);
}
.nav-cta {
  background: var(--primary) !important;
  color: white !important;
  border: none !important;
  padding: .6rem 1.4rem !important;
  border-radius: 6px !important;
  transition: background .2s, transform .15s !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  color: white;
}
.hamburger svg { display: block; }

@media (max-width: 768px) {
  .hamburger { display: block; }
  .site-nav {
    display: none;
    flex-direction: column;
    gap: 0;
    background: var(--dark-mid);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 99;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .75rem 1.5rem; width: 100%; border-bottom: none; }
  .nav-cta { margin: .5rem 1.5rem; border-radius: 6px !important; }
}

/* ---- Hero ---- */
.hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, var(--dark) 50%, var(--dark-mid) 100%);
}
/* Diagonal electric accent */
.hero::after {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 480px; height: 120%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  opacity: .12;
  transform: rotate(-8deg);
  border-radius: 20px;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}
.hero-content { color: white; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(32,76,229,.25);
  border: 1px solid rgba(32,76,229,.5);
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  color: white;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  margin-bottom: .75rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--primary-light);
}
.hero-sub {
  font-size: 1.1rem;
  opacity: .85;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--primary);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 2rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(32,76,229,.4);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(32,76,229,.5);
  text-decoration: none;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 2rem;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,.4);
  cursor: pointer;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,.1);
  text-decoration: none;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  opacity: .85;
}
.trust-item svg { color: var(--accent); flex-shrink: 0; }

.hero-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.hero-image-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--primary);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  padding: .55rem 1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: .4rem;
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.25rem;
    gap: 2rem;
  }
  .hero-image-wrap { display: none; }
}

/* ---- Stats Bar ---- */
.stats-bar {
  background: var(--primary);
  padding: 1.75rem 1.25rem;
}
.stats-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3.5rem;
  max-width: 1160px;
  margin: 0 auto;
}
.stat-item { text-align: center; color: white; }
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 2.25rem;
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  opacity: .85;
  margin-top: .2rem;
}

/* ---- Section Headings ---- */
.section-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .5rem;
  display: block;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--dark);
  margin-bottom: .75rem;
}
.section-title.light { color: white; }
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.7;
}
.section-sub.light { color: rgba(255,255,255,.75); }
.section-head { margin-bottom: 3rem; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }

/* ---- Services Preview ---- */
.services-preview {
  padding: 5rem 1.25rem;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--primary);
  border-radius: 4px 0 0 4px;
  transform: scaleY(0);
  transition: transform .25s;
  transform-origin: bottom;
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--primary-light);
}
.service-card:hover::before { transform: scaleY(1); }
.service-card-icon {
  width: 52px; height: 52px;
  background: var(--light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.service-card-icon img {
  width: 30px; height: 30px;
  object-fit: contain;
}
.service-card-icon svg { color: var(--primary); }
.service-card h3 {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: .4rem;
}
.service-card p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
}
.services-cta-row { text-align: center; }

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ---- Why Choose Us ---- */
.why-section {
  background: var(--light);
  padding: 5rem 1.25rem;
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.why-card {
  background: white;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(17,35,55,.07);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.why-icon {
  width: 56px; height: 56px;
  background: var(--primary);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: white;
}
.why-card h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.why-card p { font-size: .9rem; color: var(--muted); line-height: 1.7; }

@media (max-width: 700px) { .why-grid { grid-template-columns: 1fr; } }

/* ---- Testimonials ---- */
.testimonials-section {
  background: var(--dark);
  padding: 5rem 1.25rem;
  position: relative;
}
.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}
.stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: .1em; margin-bottom: .75rem; }
.tc-track { will-change: transform; }
.tc-slide blockquote {
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
  color: rgba(255,255,255,.9);
  margin: 0;
}
.tc-slide cite {
  display: block;
  margin-top: 1.25rem;
  font-style: normal;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--accent);
  font-size: .9rem;
}
.tc-source {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: rgba(255,255,255,.5);
  font-size: .8rem;
  margin-top: .25rem;
}
.tc-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 2rem;
}
.tc-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  transition: background .3s, transform .2s;
}
.tc-dot.active { background: var(--primary-light); transform: scale(1.2); }

/* ---- About Preview ---- */
.about-preview {
  padding: 5rem 1.25rem;
  background: var(--white);
}
.about-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-preview-img {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.about-preview-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: top;
}
.about-preview-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(17,35,55,.3));
}
.about-accent-badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--primary);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  padding: .6rem 1rem;
  border-radius: 8px;
  z-index: 2;
}
.about-content h2 { margin-bottom: 1rem; }
.about-content p { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.about-content .highlight { font-style: italic; color: var(--primary); font-weight: 600; }
.credentials-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
  margin-bottom: 1.75rem;
}
.credential-badge {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: var(--light);
  border: 1px solid #c7d5f5;
  color: var(--dark);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  padding: .4rem .9rem;
  border-radius: 100px;
}
.credential-badge svg { color: var(--primary); }

@media (max-width: 768px) {
  .about-preview-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-preview-img img { height: 300px; }
}

/* ---- Service Areas ---- */
.areas-section {
  background: var(--light);
  padding: 5rem 1.25rem;
}
.areas-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}
.area-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem .75rem;
  background: white;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  color: var(--dark);
  border: 1px solid #e2e8f0;
}
.area-item svg { color: var(--primary); flex-shrink: 0; }
#service-area-map {
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #e2e8f0;
  box-shadow: var(--shadow);
}

@media (max-width: 768px) {
  .areas-inner { grid-template-columns: 1fr; }
  .areas-list { grid-template-columns: repeat(2, 1fr); }
}

/* ---- CTA Band ---- */
.cta-band {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: 4rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::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%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band h2 {
  color: white;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  margin-bottom: .75rem;
}
.cta-band p {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: white;
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  padding: .9rem 2.25rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0,0,0,.28);
  text-decoration: none;
  color: var(--primary-dark);
}

/* ---- Footer ---- */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 3.5rem 1.25rem 1.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  max-width: 1160px;
  margin: 0 auto;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img { height: 44px; margin-bottom: 1rem; filter: brightness(10); opacity: .9; }
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  color: white;
  transition: background .2s;
}
.footer-social a:hover { background: var(--primary); text-decoration: none; }
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul a { color: rgba(255,255,255,.7); font-size: .9rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--primary-light); text-decoration: none; }
.footer-contact-item {
  display: flex; gap: .6rem; align-items: flex-start;
  font-size: .9rem; margin-bottom: .75rem;
}
.footer-contact-item svg { color: var(--primary-light); flex-shrink: 0; margin-top: .15rem; }
.footer-contact-item a { color: rgba(255,255,255,.7); }
.footer-contact-item a:hover { color: white; }
.footer-bottom {
  max-width: 1160px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .82rem;
  opacity: .55;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { justify-content: center; text-align: center; }
}

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

/* ---- 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; }

/* ---- Full Services Page ---- */
.page-hero {
  background: var(--dark);
  padding: 3.5rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(32,76,229,.2) 0%, transparent 60%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: white; font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

.services-full-section { padding: 5rem 1.25rem; }
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-full-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.75rem;
  transition: box-shadow .2s, transform .2s;
}
.service-full-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.service-full-card .service-icon {
  width: 56px; height: 56px;
  background: var(--light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.service-full-card .service-icon img { width: 32px; height: 32px; object-fit: contain; }
.service-full-card .service-icon svg { color: var(--primary); }
.service-full-card h3 { font-size: 1rem; color: var(--dark); margin-bottom: .5rem; }
.service-full-card p { font-size: .875rem; color: var(--muted); line-height: 1.7; }

@media (max-width: 900px) { .services-full-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-full-grid { grid-template-columns: 1fr; } }

/* ---- Before/After Slider ---- */
.ba-section { padding: 5rem 1.25rem; background: var(--light); }
.ba-slider {
  position: relative;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 14px;
  aspect-ratio: 16/10;
  user-select: none;
  cursor: ew-resize;
  box-shadow: var(--shadow-lg);
}
.ba-label {
  position: absolute;
  top: 1rem;
  padding: .35rem .75rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: 6px;
  z-index: 3;
  pointer-events: none;
}
.ba-label.before-label { left: 1rem; background: #c0392b; color: white; }
.ba-label.after-label  { right: 1rem; background: var(--primary); color: white; }
.ba-before-label { position: absolute; top: 1rem; left: 1rem; z-index: 3; }
.ba-after-label  { position: absolute; top: 1rem; right: 1rem; z-index: 3; }

/* ---- FAQ ---- */
.faq-section { padding: 5rem 1.25rem; background: white; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid #e2e8f0;
}
.faq-item summary {
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  padding: 1.25rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  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-item > div {
  padding: 0 0 1.25rem;
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ---- About Page ---- */
.about-full-section { padding: 5rem 1.25rem; }
.about-full-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.about-full-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}
.owner-card {
  background: var(--primary);
  color: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.owner-avatar {
  width: 56px; height: 56px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
}
.owner-card h3 { color: white; font-size: 1.1rem; margin-bottom: .1rem; }
.owner-card p { color: rgba(255,255,255,.75); font-size: .85rem; }
.about-full-content p { color: var(--muted); line-height: 1.8; margin-bottom: 1.25rem; }
.about-full-content h2 { margin-bottom: 1.25rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.value-card {
  background: var(--light);
  border-radius: 10px;
  padding: 1.25rem;
}
.value-card h4 { font-size: .95rem; color: var(--dark); margin-bottom: .3rem; }
.value-card p { font-size: .85rem; color: var(--muted); line-height: 1.65; }

@media (max-width: 768px) {
  .about-full-inner { grid-template-columns: 1fr; gap: 2rem; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ---- Contact Page ---- */
.contact-section { padding: 5rem 1.25rem; }
.contact-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form-wrap {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid #e2e8f0;
}
.contact-form-wrap h2 { margin-bottom: .5rem; }
.contact-form-wrap p { color: var(--muted); margin-bottom: 2rem; font-size: .95rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  color: var(--dark);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: white;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(32,76,229,.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.submit-btn {
  width: 100%;
  background: var(--primary);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: .9rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.submit-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success svg { color: #22c55e; margin-bottom: 1rem; }
.form-success h3 { color: var(--dark); margin-bottom: .5rem; }
.form-success p { color: var(--muted); }

.contact-info-col {}
.contact-info-card {
  background: var(--dark);
  color: white;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.contact-info-card h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.contact-info-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item svg { color: var(--primary-light); flex-shrink: 0; margin-top: .1rem; }
.contact-info-item span { font-size: .9rem; line-height: 1.5; }
.contact-info-item a { color: rgba(255,255,255,.8); }
.contact-info-item a:hover { color: white; }
.contact-info-item strong { display: block; color: white; font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; margin-bottom: .2rem; }
#contact-map { height: 280px; border-radius: 12px; overflow: hidden; border: 2px solid #e2e8f0; }

@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---- Credentials Strip ---- */
.credentials-section {
  background: var(--dark);
  padding: 2.5rem 1.25rem;
}
.credentials-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 4rem;
  max-width: 1160px;
  margin: 0 auto;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.8);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .9rem;
}
.cred-item svg { color: var(--primary-light); }

/* ---- Review Stars Badge ---- */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: .4rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  color: white;
}
.rating-badge .star-icon { color: #f59e0b; }

/* ---- Focus Styles ---- */
:focus-visible {
  outline: 3px solid var(--primary-light);
  outline-offset: 2px;
}
button:focus-visible, a:focus-visible { border-radius: 4px; }
