/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #111111;
  --dark:    #1a1a1a;
  --gray:    #555555;
  --light:   #f7f7f7;
  --white:   #ffffff;
  --accent:  #fb8e28;       /* orange — change this to your brand color */
  --accent2: #e07820;
  --font-body: 'Montserrat', sans-serif;
  --font-head: 'Playfair Display', serif;
  --radius:  4px;
  --shadow:  0 4px 20px rgba(0,0,0,0.10);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent2);
  border-color: var(--accent2);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}

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

.btn-full { width: 100%; text-align: center; }

/* ============================================================
   SECTION LABELS & TITLES
   ============================================================ */
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 18px;
  line-height: 1.2;
}

.section-desc {
  max-width: 600px;
  color: var(--gray);
  margin-bottom: 50px;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(17,17,17,0.96);
  backdrop-filter: blur(8px);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 72px;
}

.logo-text {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}
.logo img { height: 52px; width: auto; }

.main-nav ul {
  display: flex;
  gap: 36px;
}
.main-nav a {
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.main-nav a:hover { color: var(--accent); }
.main-nav a:hover::after { width: 100%; }

.nav-phone-btn {
  background: var(--accent);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: background var(--transition);
}
.nav-phone-btn:hover { background: var(--accent2); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.carousel { position: relative; width: 100%; height: 100%; }

.carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.carousel-slide.active { opacity: 1; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.35) 100%);
}

.slide-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  width: 90%;
  max-width: 780px;
}

.slide-sub {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.slide-content h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.slide-content h1 span { color: var(--accent); }

.carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: background var(--transition);
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
}
.carousel-btn:hover { background: var(--accent); border-color: var(--accent); }
.carousel-btn.prev { left: 24px; }
.carousel-btn.next { right: 24px; }

.carousel-dots {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px;
  z-index: 10;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ============================================================
   CREDIBILITY BANNER
   ============================================================ */
.credibility-banner {
  background: var(--dark);
  padding: 30px 0;
  border-top: 3px solid var(--accent);
}

.credibility-text {
  text-align: center;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}

.credibility-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.cred-logo {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  transition: color var(--transition), border-color var(--transition);
}
.cred-logo:hover {
  color: var(--accent);
  border-color: var(--accent);
}
/* If using real logos: .cred-logo img { height: 36px; width: auto; filter: brightness(0) invert(1) opacity(0.6); } */

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  padding: 90px 0;
  background: var(--white);
}

.services-section .container { text-align: center; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  text-align: left;
}

.service-card {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-img { overflow: hidden; height: 220px; }
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img img { transform: scale(1.06); }

.service-body {
  padding: 28px 24px;
}
.service-body h3 {
  font-family: var(--font-head);
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--dark);
}
.service-body p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.7;
}

/* ============================================================
   FEATURED TREATMENT
   ============================================================ */
.featured-treatment {
  padding: 90px 0;
  background: var(--light);
}

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

.featured-image { border-radius: 8px; overflow: hidden; }
.featured-image img {
  width: 100%; height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

.featured-content .section-label { margin-bottom: 8px; }
.featured-content h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 40px);
  margin-bottom: 20px;
  color: var(--dark);
  line-height: 1.2;
}

.featured-desc {
  color: var(--gray);
  margin-bottom: 26px;
  line-height: 1.8;
}

.featured-benefits {
  margin-bottom: 32px;
}
.featured-benefits li {
  font-size: 14px;
  color: var(--dark);
  padding: 7px 0;
  border-bottom: 1px solid #e8e8e8;
  font-weight: 500;
}
.featured-benefits li:last-child { border-bottom: none; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: 90px 0;
  background: var(--white);
}

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

.about-content .section-label { margin-bottom: 8px; }
.about-content h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 40px);
  margin-bottom: 8px;
  color: var(--dark);
}
.about-credentials {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 22px;
}
.about-content p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-content .btn { margin-top: 10px; }

.about-images {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 16px;
}
.about-img-main {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-main img {
  width: 100%; height: 520px;
  object-fit: cover;
}
.about-img-accent {
  width: 220px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}
.about-img-accent img {
  width: 100%; height: 280px;
  object-fit: cover;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--dark);
  padding: 55px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item { padding: 10px; }
.stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: 90px 0;
  background: var(--light);
}
.testimonials-section .container { text-align: center; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  text-align: left;
  margin-bottom: 40px;
}

.review-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.review-card:hover { transform: translateY(-4px); }

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.reviewer-avatar { border-radius: 50%; overflow: hidden; }
.reviewer-avatar img { width: 50px; height: 50px; border-radius: 50%; }

.reviewer-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.stars { color: #f5a623; font-size: 14px; letter-spacing: 2px; }

.review-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 14px;
  font-style: italic;
}
.review-date { font-size: 12px; color: #aaa; }
.reviews-cta { margin-top: 10px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  background: url('https://placehold.co/1920x500/1a1a1a/333333?text=') center / cover no-repeat;
  padding: 90px 0;
  overflow: hidden;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251,142,40,0.92) 0%, rgba(17,17,17,0.90) 100%);
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}
.cta-content h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 16px;
}
.cta-content p {
  font-size: 16px;
  margin-bottom: 36px;
  opacity: 0.9;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: 90px 0;
  background: var(--white);
}
.contact-section .section-label,
.contact-section .section-title { text-align: center; }
.contact-section .section-title { margin-bottom: 50px; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  margin-bottom: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  font-size: 22px;
  min-width: 36px;
  color: var(--accent);
}
.contact-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-item p, .contact-item a {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}
.contact-item a:hover { color: var(--accent); }

.contact-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-block;
  padding: 9px 20px;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
}
.social-btn:hover { background: var(--accent); color: var(--white); }

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; }

/* Map */
.map-placeholder { border-radius: 8px; overflow: hidden; }
.map-dummy {
  background: var(--light);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #ddd;
  border-radius: 8px;
  font-size: 15px;
  color: var(--gray);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--accent); }

.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--accent); }

.footer-col address {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.55);
}
.footer-col address a { color: rgba(255,255,255,0.55); }
.footer-col address a:hover { color: var(--accent); }
.footer-hours {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
  line-height: 1.8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  color: rgba(255,255,255,0.3);
  font-size: 13px;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }

/* ============================================================
   PAIN POINTS SECTION
   ============================================================ */
.pain-section {
  padding: 80px 0;
  background: var(--dark);
}

.pain-section .section-label { color: var(--accent); }
.pain-section .section-title {
  color: var(--white);
  margin-bottom: 48px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.pain-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition), border-color var(--transition);
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
}
.pain-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(251,142,40,0.35);
}

.pain-icon {
  font-size: 38px;
  line-height: 1;
  margin-bottom: 18px;
}
.pain-stat {
  font-family: var(--font-head);
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.pain-stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.pain-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.pain-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.pain-footer-text {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  padding: 20px 24px;
  background: rgba(251,142,40,0.08);
  border: 1px solid rgba(251,142,40,0.25);
  border-radius: 8px;
}

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

/* ============================================================
   BOOKING / CALENDAR SECTION
   ============================================================ */
.booking-section {
  padding: 90px 0;
  background: var(--light);
}
.booking-section .container { text-align: center; }

.ghl-embed-block {
  margin-top: 10px;
  min-height: 200px;
}

/* Shown when no embed code is set yet */
.ghl-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 56px 40px;
  border: 2.5px dashed var(--accent);
  border-radius: 10px;
  background: rgba(251,142,40,0.04);
  text-align: center;
  transition: background var(--transition);
}
.ghl-placeholder:hover { background: rgba(251,142,40,0.08); }

.ghl-placeholder-icon {
  font-size: 52px;
  line-height: 1;
  opacity: 0.8;
}
.ghl-placeholder h3 {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--dark);
}
.ghl-placeholder > p {
  font-size: 15px;
  color: var(--gray);
  max-width: 460px;
}
.ghl-placeholder-steps {
  font-size: 13px !important;
  color: var(--gray) !important;
  background: rgba(0,0,0,0.04);
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 14px 20px;
  line-height: 1.8;
  max-width: 460px;
}
.ghl-placeholder-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background var(--transition);
}
.ghl-placeholder-btn:hover { background: var(--accent2); }

/* When real embed is loaded, hide the placeholder */
.ghl-embed-block.has-embed .ghl-placeholder { display: none; }

/* ============================================================
   GHL CHAT WIDGET PLACEHOLDER
   ============================================================ */
.ghl-chat-placeholder {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(251,142,40,0.45);
  transition: background var(--transition), transform var(--transition);
  border: 2.5px dashed rgba(255,255,255,0.6);
}
.ghl-chat-placeholder:hover {
  background: var(--accent2);
  transform: scale(1.04);
}
.ghl-chat-icon { font-size: 20px; line-height: 1; }
.ghl-chat-label { letter-spacing: 1px; text-transform: uppercase; font-size: 12px; }

/* Tooltip on hover */
.ghl-chat-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  background: var(--dark);
  color: var(--white);
  font-size: 12px;
  font-weight: 400;
  padding: 10px 14px;
  border-radius: 6px;
  white-space: nowrap;
  line-height: 1.6;
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition);
  text-transform: none;
  letter-spacing: 0;
}
.ghl-chat-placeholder:hover .ghl-chat-tooltip {
  opacity: 1;
  transform: translateY(0);
}
/* Hide placeholder once real widget is injected */
.ghl-chat-placeholder.hidden { display: none; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-inner { gap: 40px; }
  .featured-inner { gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .main-nav {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--black);
    padding: 20px 0;
    z-index: 999;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: center; gap: 0; }
  .main-nav ul li a {
    display: block;
    padding: 14px 24px;
    font-size: 14px;
  }

  .nav-phone-btn { display: none; }

  .hero { height: 90vh; }

  .featured-inner { grid-template-columns: 1fr; }
  .featured-image img { height: 320px; }

  .about-inner { grid-template-columns: 1fr; }
  .about-images { flex-direction: column; }
  .about-img-main img { height: 380px; }
  .about-img-accent { width: 100%; }
  .about-img-accent img { height: 220px; }

  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .header-inner { padding: 0 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .carousel-btn { width: 38px; height: 38px; font-size: 16px; }
}
