/* ============================================================
   Pressure Point Powerwashing - Main Stylesheet
   Colors: Bright blue, gold/yellow, white
   Font: Nunito (friendly, readable, trustworthy)
   ============================================================ */

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

:root {
  --blue:        #2E8FE3;   /* primary bright blue */
  --blue-dark:   #1A5EA8;   /* nav, footer, headings */
  --blue-deeper: #0F3D72;   /* darkest text on blue */
  --blue-light:  #E8F4FF;   /* section backgrounds */
  --blue-mid:    #B8D9F5;   /* borders, accents */
  --yellow:      #F6C200;   /* CTA accent */
  --yellow-dark: #C89A00;   /* hover */
  --white:       #FFFFFF;
  --text:        #1A2B3C;
  --text-light:  #4A6080;
  --border:      #C8DFF0;
  --radius:      10px;
  --shadow:      0 4px 18px rgba(30, 80, 150, 0.12);
  --shadow-hover:0 8px 32px rgba(30, 80, 150, 0.22);
}

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

/* Hide scrollbar while keeping page scrollable */
html {
  scroll-behavior: smooth;
  font-size: 18px;
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE/Edge */
}
html::-webkit-scrollbar { display: none; } /* Chrome/Safari */

/* Prevent image/link drag globally */
img, a { -webkit-user-drag: none; }

/* Lock selection only on non-content UI elements */
nav, .nav, .nav-links, .nav-hamburger,
.trust-bar, .trust-item,
.btn,
.service-icon, .reason-icon, .review-avatar, .review-stars,
.tag, .hero-badge, .hero-trust,
.ba-wrap, .ba-label-before, .ba-label-after, .ba-divider, .ba-handle,
.gallery-label, .insta-strip i, .stat-num,
.footer-bottom, .social-links,
.nav-logo-text {
  user-select: none;
  -webkit-user-select: none;
}

/* Re-enable selection on all readable content and inputs */
p, h1, h2, h3, h4, h5, h6, li, span, blockquote,
input, textarea, select {
  user-select: text;
  -webkit-user-select: text;
}

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

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

/* ---- UTILITY ---- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-align: center;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--yellow);
  color: var(--blue-deeper);
}
.btn-primary:hover { background: var(--yellow-dark); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2.5px solid var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-blue {
  background: var(--blue);
  color: var(--white);
}
.btn-blue:hover { background: var(--blue-dark); }

.btn-lg { padding: 1rem 2.2rem; font-size: 1.2rem; }

.tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--blue-dark);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--blue-dark);
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.nav-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text .brand-top {
  font-weight: 900;
  font-size: 1rem;
  color: var(--white);
}
.nav-logo-text .brand-bottom {
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--blue-mid);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  color: #B8D9F5;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--yellow);
  color: var(--blue-deeper);
  font-weight: 900;
  font-size: 1rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.15s;
  flex-shrink: 0;
}
.nav-phone:hover { background: var(--yellow-dark); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile drawer */
.nav-drawer {
  display: none;
  background: var(--blue-deeper);
  padding: 1rem 1.25rem;
}
.nav-drawer.open { display: block; }
.nav-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.nav-drawer ul a {
  display: block;
  color: var(--white);
  font-weight: 700;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 1.1rem;
}
.nav-drawer .drawer-phone {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle fill='%23ffffff' fill-opacity='0.04' cx='40' cy='40' r='30'/%3E%3Ccircle fill='%23ffffff' fill-opacity='0.03' cx='40' cy='40' r='18'/%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.14);
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255,255,255,0.2);
}
.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.1rem;
  color: var(--white);
}
.hero h1 span { color: var(--yellow); }
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  max-width: 440px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  font-weight: 600;
}
.hero-trust-item i { color: var(--yellow); font-size: 0.85rem; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual img {
  width: min(340px, 100%);
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.3));

  /* The one header "gimmick" – simple, reads well on all devices */
  animation: heroFadeUp 0.75s ease both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--yellow);
  padding: 0.85rem 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--blue-deeper);
}
.trust-item i { font-size: 1rem; color: var(--blue-dark); }

/* ============================================================
   BEFORE/AFTER GALLERY
   ============================================================ */
.gallery { background: var(--blue-light); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.gallery-label {
  text-align: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--blue-dark);
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}

/* Before/After Slider */
.ba-wrap {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}
.ba-wrap > img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  pointer-events: none;
}
/* Before panel — clips to reveal the before image */
.ba-before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  /* width is set by JS */
}
/* Before image — must always match the FULL wrap width, not just the clipped panel */
.ba-before img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  max-width: none;
  pointer-events: none;
  object-fit: cover;
  /* width is set by JS to match wrap.offsetWidth */
}
.ba-label-before, .ba-label-after {
  position: absolute;
  top: 0.6rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
}
.ba-label-before { left: 0.6rem; background: rgba(0,0,0,0.55); color: #fff; }
.ba-label-after  { right: 0.6rem; background: var(--blue-dark); color: #fff; }
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  width: 3px;
  background: var(--white);
  box-shadow: 0 0 8px rgba(0,0,0,0.4);
  pointer-events: none;
  z-index: 3;
  transform: translateX(-50%);
}
.ba-handle {
  position: absolute;
  top: 50%;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
  font-size: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  pointer-events: none;
  z-index: 4;
  transform: translate(-50%, -50%);
}

/* Photo grid for extra shots */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  max-width: 800px;
}
.photo-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.service-card {
  background: var(--blue-light);
  border: 2px solid var(--blue-mid);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.service-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--blue-dark);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============================================================
   ABOUT / TRUST
   ============================================================ */
.about { background: var(--blue-light); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-reasons { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.reason {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}
.reason-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--blue-dark);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.reason-text strong {
  display: block;
  font-weight: 800;
  font-size: 1rem;
  color: var(--blue-dark);
  margin-bottom: 0.15rem;
}
.reason-text span { font-size: 0.9rem; color: var(--text-light); }

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.about-photo-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-photo-wrap img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue-dark);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 600;
  margin-top: 0.2rem;
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--blue-dark);
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}
.cta-strip h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}
.cta-strip p { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; }
.cta-strip-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.cta-phone-big {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--yellow);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  border: 2px solid var(--yellow);
  transition: background 0.15s;
  margin: 1rem 0 0.5rem;
}
.cta-phone-big:hover { background: rgba(246,194,0,0.12); }
.cta-phone-big i { font-size: 1.4rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--blue-deeper);
  color: rgba(255,255,255,0.85);
  padding: 3rem 0 1.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.footer-brand img {
  width: 64px; height: 64px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 260px;
}
.footer-col h4 {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}
.footer-col ul a:hover { color: var(--yellow); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.6rem;
}
.footer-contact-item i { color: var(--yellow); width: 16px; }
.footer-contact-item a { color: rgba(255,255,255,0.75); transition: color 0.15s; }
.footer-contact-item a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--yellow); }

/* Social icons */
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: background 0.15s, color 0.15s;
}
.social-links a:hover { background: var(--yellow); color: var(--blue-deeper); }

/* ============================================================
   PAGE HEADER (for subpages)
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 3.5rem 0 3rem;
  text-align: center;
}
.page-header h1 {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.page-header p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================================
   FORMS (estimate + contact)
   ============================================================ */
.form-section { background: var(--white); }
.form-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group label {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--blue-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.15s;
  min-height: 48px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--text-light); margin-top: 0.2rem; }
.form-submit { display: flex; justify-content: center; margin-top: 0.5rem; }
.form-submit .btn { min-width: 220px; justify-content: center; }

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.thank-you-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-light);
  text-align: center;
}
.thank-you-box {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 3.5rem 3rem;
  max-width: 520px;
  box-shadow: var(--shadow);
}
.thank-you-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--blue-light);
  border: 3px solid var(--blue-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  color: var(--blue-dark);
  margin: 0 auto 1.5rem;
}
.thank-you-box h1 {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--blue-dark);
  margin-bottom: 0.75rem;
}
.thank-you-box p { color: var(--text-light); margin-bottom: 1rem; font-size: 1.05rem; }
.thank-you-phone {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--blue-dark);
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  margin: 1.25rem 0;
}
.thank-you-phone i { color: var(--yellow); }

/* ============================================================
   INSTAGRAM STRIP
   ============================================================ */
.insta-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-weight: 700;
  color: var(--text-light);
  font-size: 1rem;
}
.insta-strip i {
  font-size: 1.4rem;
  color: #c13584;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.review-card {
  background: var(--blue-light);
  border: 1.5px solid var(--blue-mid);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.review-stars { color: var(--yellow); font-size: 1rem; display: flex; gap: 0.15rem; }
.review-text {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue-dark);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-author strong {
  display: block;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--blue-dark);
  line-height: 1.2;
}
.review-author span {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--blue-light); }
.faq-list {
  max-width: 780px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--blue-dark);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}
.faq-q:hover { background: var(--blue-light); }
.faq-q i {
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--blue);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-item.open .faq-q { background: var(--blue-light); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a p {
  padding: 0 1.4rem 1.2rem;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-section { background: var(--white); border-top: 2px solid var(--border); }
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
}
.areas-grid span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light);
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
}
.areas-grid span i { color: var(--blue); font-size: 0.8rem; }

/* ============================================================
   COMING SOON STRIP
   ============================================================ */
.coming-soon-strip {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  background: var(--blue-light);
  border: 2px solid var(--blue-mid);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.coming-soon-strip img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  flex-shrink: 0;
}
.coming-soon-text {
  padding: 1.25rem 1.5rem 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.coming-soon-text strong {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--blue-dark);
}
.coming-soon-text span {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* ============================================================
   RESPONSIVE — new sections
   ============================================================ */
@media (max-width: 700px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto 2rem; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  html { font-size: 16px; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-hamburger { display: flex; }

  .hero h1 { font-size: 2.2rem; }
  .section-title { font-size: 1.9rem; }

  .gallery-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; }  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .cta-phone-big { font-size: 1.3rem; }
  .trust-bar-inner { gap: 0.5rem 1.25rem; }
  .section-pad { padding: 3.5rem 0; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 1.85rem; }
  .btn-lg { font-size: 1rem; padding: 0.85rem 1.5rem; }
  .photo-grid { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .coming-soon-strip { flex-direction: column; }
  .coming-soon-strip img { width: 100%; height: 140px; }
  .coming-soon-text { padding: 1rem 1.25rem 1.25rem; }
}
