/* =========================================================
   HAIR BOND STUDIO — Google Ads Landing Page
   Brand palette derived from hairbondstudio.com
   ========================================================= */

:root {
  --gold:        #c9a24b;   /* primary brand gold/tan */
  --gold-rich:   #d4af37;   /* richer gold accent */
  --gold-light:  #e8cf8f;   /* soft champagne highlight */
  --gold-dark:   #a5824f;   /* darker gold for hovers */
  --gold-gradient: linear-gradient(135deg, var(--gold-light), var(--gold-rich) 45%, var(--gold-dark));
  --charcoal:    #1a1a1a;   /* near-black brand dark */
  --black:       #000000;
  --text:        #333333;
  --text-gray:   #5a5a5a;   /* body copy gray */
  --cream:       #faf6f0;   /* soft cream background */
  --cream-2:     #f4ede3;
  --white:       #ffffff;
  --wa-green:    #25d366;
  --wa-green-dk: #128c7e;
  --shadow-sm:   0 2px 8px rgba(26,20,10,.05), 0 8px 24px rgba(26,20,10,.05);
  --shadow-md:   0 6px 18px rgba(26,20,10,.07), 0 20px 48px rgba(26,20,10,.1);
  --shadow-none: 0 6px 18px rgba(26,20,10,0), 0 20px 48px rgba(26,20,10,0);
  --shadow-gold: 0 14px 40px rgba(201,162,75,.28);
  --radius:      16px;
  --radius-lg:   22px;
  --ease:        .45s cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--text-gray);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, .navbar-brand { font-family: 'Playfair Display', serif; color: var(--charcoal); letter-spacing: -.01em; }

img { max-width: 100%; height: auto; }

::selection { background: rgba(201,162,75,.22); color: var(--charcoal); }

.text-gold { background: var(--gold-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--gold-rich); }

/* ---------- Buttons ---------- */
.btn { position: relative; overflow: hidden; font-family: 'Poppins', sans-serif; font-weight: 600; border-radius: 50px; padding: .8rem 1.9rem; transition: var(--ease); border: none; letter-spacing: .3px; z-index: 0; }
.btn::before { content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,.4), transparent); transform: skewX(-18deg); transition: left .6s ease; z-index: 1; pointer-events: none; }
.btn:hover::before { left: 130%; }
.btn-gold { background: linear-gradient(135deg, var(--gold-rich), var(--gold-dark)); color: #fff; box-shadow: 0 10px 24px rgba(201,162,75,.35); }
.btn-gold:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold-rich)); color: #3a2c12; transform: translateY(-3px); box-shadow: 0 16px 34px rgba(201,162,75,.48); }
.btn-light-gold { background: #fff; color: var(--charcoal); font-weight: 700; box-shadow: var(--shadow-md); }
.btn-light-gold:hover { background: var(--cream); color: var(--gold-dark); transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.btn-wa { background: var(--wa-green); color: #fff; }
.btn-wa:hover { background: var(--wa-green-dk); color: #fff; transform: translateY(-3px); }
.btn-lg { padding: 1rem 2.6rem; font-size: 1.05rem; }

/* ---------- Section scaffolding ---------- */
.section { padding: 104px 0; }
.section-head { max-width: 760px; margin: 0 auto 60px; }
.eyebrow, .hero-eyebrow { display: inline-block; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .76rem; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 16px; position: relative; }
.section-head.text-center .eyebrow::before, .section-head.text-center .eyebrow::after { content: ''; position: absolute; top: 50%; width: 28px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.section-head.text-center .eyebrow::before { right: 100%; margin-right: 14px; transform: scaleX(-1); }
.section-head.text-center .eyebrow::after { left: 100%; margin-left: 14px; }
.section-title { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 700; margin-bottom: 18px; line-height: 1.18; letter-spacing: -.02em; }
.section-lead { color: var(--text-gray); font-size: 1.06rem; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header { position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 1030; background: transparent; border-bottom: 1px solid transparent; box-shadow: none; transition: background .4s ease, box-shadow .4s ease, border-color .4s ease, backdrop-filter .4s ease; }
.site-header.scrolled { background: rgba(10,10,10,.78); backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%); border-bottom-color: rgba(212,175,55,.22); box-shadow: 0 8px 30px rgba(0,0,0,.4); }
.site-header .navbar { padding: .6rem 0; }
.navbar-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark { height: 46px; width: auto; object-fit: contain; display: block; }
.brand-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.25rem; letter-spacing: .5px; color: var(--gold); line-height: 1; white-space: nowrap; }
.logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.15rem; letter-spacing: 2px; color: var(--charcoal); line-height: 1; }
.logo-text em { font-style: normal; color: var(--gold-dark); display: block; font-size: .82rem; letter-spacing: 5px; }
.navbar-nav .nav-link { font-weight: 500; color: rgba(255,255,255,.82); padding: .5rem 1rem; position: relative; }
.navbar-nav .nav-link::after { content: ''; position: absolute; left: 1rem; right: 1rem; bottom: .35rem; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: var(--ease); }
.navbar-nav .nav-link:hover { color: var(--gold); }
.navbar-nav .nav-link:hover::after { transform: scaleX(1); }
.navbar-toggler { border-color: rgba(255,255,255,.35); }
.navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(212,175,55,.35); }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
.header-cta { padding: .55rem 1.4rem; font-size: .95rem; }

/* =========================================================
   SECTION 1 — HERO
   ========================================================= */
.hero { position: relative; min-height: 650px; display: flex; align-items: center; padding: 110px 0 70px; background: linear-gradient(120deg, rgba(18,15,10,.5) 0%, rgba(24,20,14,.5) 45%, rgba(26,26,26,.3) 100%), url('../assets/Hair-Bond-Banner.png') center/cover no-repeat; background-attachment: fixed; }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(circle at 78% 25%, rgba(201,162,75,.22), transparent 50%); pointer-events: none; }
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero-copy { color: #fff; }
.hero-eyebrow { color: var(--gold); }
.hero-title { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 800; line-height: 1.22; margin-bottom: 26px; }
.hero-title .text-gold { color: var(--gold); }
.hero-usps { margin-bottom: 26px; }
.hero-usps li { display: flex; align-items: center; gap: 12px; font-size: 1.1rem; font-weight: 500; color: #f3ede4; margin-bottom: 12px; }
.hero-usps li i { color: var(--gold); font-size: .95rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.18); }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; font-size: .88rem; color: #e5ddd2; }
.hero-trust i { color: var(--gold); }

/* Lead form card */
.lead-form-card { position: relative; width: 100%; max-width: 380px; margin-left: auto; background: #fff; border-radius: 2px; padding: 28px 26px; box-shadow: 0 30px 70px rgba(0,0,0,.4); border-top: 4px solid transparent; background-image: linear-gradient(#fff, #fff), var(--gold-gradient); background-origin: border-box; background-clip: padding-box, border-box; }
.form-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 4px; }
.form-sub { font-size: .88rem; color: var(--text-gray); margin-bottom: 18px; }
.form-field { position: relative; margin-bottom: 13px; }
.field-icon { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--gold-dark); font-size: .95rem; }
.form-field .form-control { height: 46px; padding-left: 42px; border: 1.5px solid #e6e0d6; border-radius: 11px; font-size: .92rem; background: var(--cream); transition: var(--ease); }
.form-field .form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(200,164,126,.15); background: #fff; }
.form-field .form-control.is-invalid { border-color: #dc3545; background: #fff5f5; }
.location-toggle { display: flex; gap: 10px; margin-bottom: 13px; }
.loc-radio { flex: 1; display: flex; align-items: center;  gap: 7px;  font-size: .85rem; color: var(--text-gray); cursor: pointer; transition: var(--ease); }
.loc-radio input { accent-color: var(--gold); margin: 0; cursor: pointer; }
.loc-radio:has(input:checked) {  color: var(--gold-dark); font-weight: 600;  }
.city-field { z-index: 5; }
.city-suggestions { position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 20; margin: 0; padding: 4px; list-style: none; max-height: 232px; overflow-y: auto; background: #fff; border: 1.5px solid #e6e0d6; border-radius: 11px; box-shadow: 0 18px 40px rgba(0,0,0,.18); }
.city-option { padding: 9px 12px; border-radius: 8px; font-size: .9rem; color: #3a3a3a; cursor: pointer; transition: var(--ease); }
.city-option:hover, .city-option.is-active { background: var(--cream); color: var(--gold-dark); }
.form-submit { height: 48px; font-size: .98rem; margin-top: 4px; }
.form-note { font-size: .76rem; color: #9a9a9a; text-align: center; margin: 12px 0 0; }
.form-note i { color: var(--gold-dark); }
.form-success { display: block; margin-top: 14px; padding: 12px; background: #eaf7ee; color: #1c7c3f; border-radius: 10px; font-size: .88rem; text-align: center; font-weight: 500; }

/* =========================================================
   SECTION 2 — WHY CHOOSE (cards)
   ========================================================= */
.why-section { background: var(--cream); }
.feature-card { display: flex; align-items: center; gap: 18px; padding: 18px 22px; border-radius: 2px; height: 100%; background: #fff; box-shadow: var(--shadow-none); border: 1px solid #efe7da; transition: var(--ease); }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-img { flex-shrink: 0; width: 88px; height: 88px; border-radius: 12px; overflow: hidden; }
.feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.feature-card:hover .feature-img img { transform: scale(1.07); }
.feature-card h3 { margin: 0; font-size: 1.02rem; font-weight: 600; line-height: 1.38; transition: var(--ease); }
.feature-card:hover h3 { color: var(--gold-dark); }

/* =========================================================
   SECTION 3 — TRANSFORMATIONS
   ========================================================= */
.transformations-section { background: #fff; }
.transform-card { margin: 0; border-radius: 2px; overflow: hidden; box-shadow: var(--shadow-none); background: var(--cream); transition: var(--ease); }
.transform-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.transform-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.transform-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.transform-card:hover .transform-img img { transform: scale(1.06); }
.transform-img::after { content: attr(data-label); position: absolute; top: 14px; left: 14px; background: rgba(26,26,26,.78); color: var(--gold); font-family: 'Poppins',sans-serif; font-size: .72rem; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 12px; border-radius: 30px; }
.transform-card figcaption { padding: 16px 20px; font-family: 'Poppins',sans-serif; font-weight: 500; color: var(--charcoal); text-align: center; font-size: .95rem; }

/* Transformations Slick slider */
.transformations-slider { margin: 0 -12px 20px; }
.transformations-slider .slick-track { display: flex; }
.transformations-slider .slick-slide { height: auto; }
.transformations-slider .slick-slide > div { height: 100%; }
.transform-slide { padding: 12px; height: 100%; }
.transformations-slider .slick-prev, .transformations-slider .slick-next { width: 44px; height: 44px; z-index: 2; }
.transformations-slider .slick-prev { left: -8px; }
.transformations-slider .slick-next { right: -8px; }
.transformations-slider .slick-prev::before, .transformations-slider .slick-next::before { color: var(--gold-dark); font-size: 40px; opacity: .9; }
.transformations-slider .slick-dots { bottom: -34px; }
.transformations-slider .slick-dots li button::before { color: var(--gold-dark); font-size: 10px; opacity: .4; }
.transformations-slider .slick-dots li.slick-active button::before { color: var(--gold-dark); opacity: 1; }
.privacy-note { max-width: 760px; margin: 34px auto 0; text-align: center; font-size: .85rem; color: #8a8a8a; background: var(--cream); padding: 14px 20px; border-radius: 10px; border: 1px dashed #ddd0bd; }
.privacy-note i { color: var(--gold-dark); }
.mid-cta { position: relative; overflow: hidden; margin-top: 55px; padding: 52px 24px; background: linear-gradient(135deg, var(--charcoal), #2c2620); border-radius: var(--radius-lg); }
.mid-cta::before { content: ''; position: absolute; top: -50%; left: -10%; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(201,162,75,.2), transparent 60%); pointer-events: none; }
.mid-cta > * { position: relative; z-index: 1; }
.mid-cta h3 { color: #fff; font-size: 1.85rem; font-weight: 700; margin-bottom: 22px; }

/* =========================================================
   SECTION 4 — SOLUTIONS + MEDICAL
   ========================================================= */
.solutions-section { background: var(--cream); }
.solution-card { position: relative; border-radius: 2px; overflow: hidden; height: 100%; min-height: 380px; box-shadow: var(--shadow-none); border: 1px solid #efe7da; transition: var(--ease); }
.solution-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.solution-img { position: absolute; inset: 0; }
.solution-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.solution-card:hover .solution-img img { transform: scale(1.06); }
.solution-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,14,8,0) 30%, rgba(20,14,8,.45) 60%, rgba(20,14,8,.85) 100%); }
.solution-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 24px 22px 26px; text-align: left; color: #fff; }
.solution-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; color: #fff; }
.solution-card p { font-size: .88rem; margin: 0; color: rgba(255,255,255,.9); }
.medical-head { margin-top: 80px; }
.medical-card { background: #fff; border-radius: 2px; padding: 30px 24px; height: 100%; box-shadow: var(--shadow-none); border-left: 4px solid var(--gold); transition: var(--ease); }
.medical-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-left-color: var(--gold-dark); }
.medical-icon { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 14px; background: rgba(200,164,126,.14); color: var(--gold-dark); font-size: 1.5rem; margin-bottom: 16px; }
.medical-card h3 { font-size: 1.12rem; font-weight: 600; margin-bottom: 8px; }
.medical-card p { font-size: .88rem; margin: 0; }

/* =========================================================
   SECTION 5 — JOURNEY
   ========================================================= */
.journey-section { background: linear-gradient(180deg, #fff, var(--cream)); }

/* ---- Scroll-walkthrough timeline ---- */
.journey-timeline { position: relative; max-width: 860px; margin: 0 auto; padding: 10px 0; }

/* Central spine + scroll-driven fill */
.journey-progress { position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%); width: 4px; background: #e7ddcd; border-radius: 4px; overflow: hidden; }
.journey-progress-fill { position: absolute; top: 0; left: 0; width: 100%; height: var(--journey-fill, 0%); background: linear-gradient(180deg, var(--gold-rich), var(--gold-dark)); border-radius: 4px; transition: height .15s linear; }

/* Steps alternate left / right of the spine */
.journey-step { position: relative; width: 50%; padding: 0 52px; margin-bottom: 46px; }
.journey-step:last-child { margin-bottom: 0; }
.journey-step:nth-child(even) { left: 0; text-align: right; }              /* left side  */
.journey-step:nth-child(odd)  { margin-left: 50%; text-align: left; }       /* right side */

/* Node marker sitting on the spine */
.journey-node { position: absolute; top: 6px; z-index: 2; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: #fff; border: 3px solid #e7ddcd; box-shadow: 0 6px 16px rgba(26,26,26,.08); transition: var(--ease); }
.journey-step:nth-child(even) .journey-node { right: -27px; }
.journey-step:nth-child(odd)  .journey-node { left: -27px; }
.journey-node .step-num { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.15rem; color: #b9ab93; transition: var(--ease); }
.journey-step.is-active .journey-node { border-color: var(--gold-rich); background: linear-gradient(135deg, var(--gold-rich), var(--gold-dark)); transform: scale(1.08); box-shadow: 0 10px 24px rgba(212,175,55,.42); }
.journey-step.is-active .journey-node .step-num { color: #fff; }

/* Card */
.journey-card { position: relative; display: inline-block; text-align: left; background: #fff; border-radius: 2px; padding: 26px 26px 24px; box-shadow: var(--shadow-none); border: 1px solid #efe7da; transition: var(--ease); }
.journey-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.journey-step.is-active .journey-card { border-color: var(--gold); }
.step-icon { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--cream); color: var(--gold-dark); font-size: 1.55rem; margin-bottom: 14px; transition: var(--ease); }
.journey-step.is-active .step-icon { background: linear-gradient(135deg, var(--gold-rich), var(--gold-dark)); color: #fff; box-shadow: 0 8px 18px rgba(212,175,55,.35); }
.journey-card h3 { font-size: 1.14rem; font-weight: 600; margin-bottom: 8px; }
.journey-card p { font-size: .9rem; margin: 0; }

/* Reveal from the correct side */
.journey-step.reveal { opacity: 0; transition: opacity .7s ease, transform .7s ease; }
.journey-step:nth-child(even).reveal { transform: translateX(-40px); }
.journey-step:nth-child(odd).reveal  { transform: translateX(40px); }
.journey-step.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 767.98px) {
  .journey-progress { left: 26px; transform: none; }
  .journey-step,
  .journey-step:nth-child(even),
  .journey-step:nth-child(odd) { width: 100%; margin-left: 0; left: 0; text-align: left; padding: 0 0 0 70px; }
  .journey-step:nth-child(even) .journey-node,
  .journey-step:nth-child(odd) .journey-node { left: 0; right: auto; }
  .journey-step:nth-child(even).reveal,
  .journey-step:nth-child(odd).reveal { transform: translateY(34px); }
  .journey-step.reveal.visible { transform: none; }
}

/* =========================================================
   SECTION 6 — SUCCESS STORIES
   ========================================================= */
.stories-section { background: var(--charcoal); }
.stories-section .section-title, .stories-section .section-lead { color: #fff; }
.stories-section { background: radial-gradient(circle at 50% 0%, #262626, var(--charcoal) 70%); }
.story-card { position: relative; background: linear-gradient(160deg, #262626, #1e1e1e); border-radius: 2px; padding: 40px 30px 32px; height: 100%; box-shadow: 0 24px 50px rgba(0,0,0,0); border: 1px solid #333; transition: var(--ease); }
.story-card::before { content: '\201C'; position: absolute; top: 6px; right: 24px; font-family: 'Playfair Display', serif; font-size: 5rem; line-height: 1; color: rgba(201,162,75,.16); pointer-events: none; }
.story-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 24px 50px rgba(0,0,0,.5); }
.stars { color: var(--gold-rich); font-size: .95rem; margin-bottom: 16px; letter-spacing: 2px; }
.story-text { color: #d8d2c8; font-size: .96rem; font-style: italic; margin-bottom: 22px; position: relative; z-index: 1; }
.story-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--gold-rich), var(--gold-dark)); color: #fff; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.2rem; }
.story-author strong { display: block; color: #fff; font-family: 'Poppins',sans-serif; font-size: .98rem; }
.story-author small { color: var(--gold); font-size: .8rem; }

/* Testimonials Slick slider */
.testimonials-slider { margin: 0 -12px; }
.testimonials-slider .slick-track { display: flex; }
.testimonials-slider .slick-slide { height: auto; }
.testimonials-slider .slick-slide > div { height: 100%; }
.story-slide { padding: 12px; height: 100%; }
.testimonials-slider .slick-prev, .testimonials-slider .slick-next { width: 44px; height: 44px; z-index: 2; }
.testimonials-slider .slick-prev { left: -8px; }
.testimonials-slider .slick-next { right: -8px; }
.testimonials-slider .slick-prev::before, .testimonials-slider .slick-next::before { color: var(--gold); font-size: 40px; opacity: .9; }
.testimonials-slider .slick-dots { bottom: -40px; }
.testimonials-slider .slick-dots li button::before { color: var(--gold); font-size: 10px; opacity: .4; }
.testimonials-slider .slick-dots li.slick-active button::before { color: var(--gold); opacity: 1; }
.stories-section { padding-bottom: 90px; }

/* =========================================================
   SECTION 7 — FAQ
   ========================================================= */
.faq-section { background: var(--cream); }
.faq-accordion .accordion-item { border: 1px solid #ece3d4; border-radius: 12px !important; margin-bottom: 14px; overflow: hidden; box-shadow: var(--shadow-sm); background: #fff; }
.faq-accordion .accordion-button { font-family: 'Poppins',sans-serif; font-weight: 600; font-size: 1.05rem; color: var(--charcoal); padding: 20px 24px; background: #fff; }
.faq-accordion .accordion-button:not(.collapsed) { background: var(--cream); color: var(--gold-dark); box-shadow: none; }
.faq-accordion .accordion-button:focus { box-shadow: 0 0 0 3px rgba(200,164,126,.2); border-color: var(--gold); }
.faq-accordion .accordion-button::after { background-image: none; content: '\002B'; font-size: 1.4rem; line-height: 1; width: auto; height: auto; transform: none; color: var(--gold-dark); font-weight: 300; }
.faq-accordion .accordion-button:not(.collapsed)::after { content: '\2212'; transform: none; }
.faq-accordion .accordion-body { padding: 6px 24px 22px; font-size: .95rem; color: var(--text-gray); }

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta { position: relative; overflow: hidden; padding: 92px 0; background: linear-gradient(135deg, #8a6a3c, var(--gold-dark) 40%, var(--gold-rich)); color: #fff; }
.final-cta::before { content: ''; position: absolute; top: -40%; right: -10%; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.18), transparent 60%); pointer-events: none; }
.final-cta::after { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='%23ffffff' opacity='.06'/%3E%3C/svg%3E"); pointer-events: none; }
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 700; margin-bottom: 14px; }
.final-cta p { color: rgba(255,255,255,.94); font-size: 1.08rem; margin-bottom: 32px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--charcoal); color: #b8b2a8; padding: 64px 0 26px; }
.footer-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-bottom: 18px; }
.footer-brand .logo-text { color: #fff; }
.footer-about { font-size: .9rem; color: #a49e93; max-width: 340px; }
.footer-heading { color: #fff; font-family: 'Poppins',sans-serif; font-weight: 600; font-size: 1.05rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-heading::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px; background: var(--gold); }
.footer-contact li, .footer-links li { margin-bottom: 12px; font-size: .92rem; display: flex; align-items: center; gap: 10px; }
.footer-contact i { color: var(--gold); }
.footer-contact a, .footer-links a { color: #b8b2a8; text-decoration: none; transition: var(--ease); }
.footer-contact a:hover, .footer-links a:hover { color: var(--gold); }
.footer-links a { position: relative; padding-left: 16px; }
.footer-links a::before { content: '\203A'; position: absolute; left: 0; color: var(--gold); }
.social-icons { display: flex; gap: 12px; margin-top: 8px; }
.social-icons a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: #2b2b2b; color: #cfc9bd; font-size: 1.05rem; transition: var(--ease); }
.social-icons a:hover { background: var(--gold-dark); color: #fff; transform: translateY(-3px); }
.footer-bottom { text-align: center; margin-top: 44px; padding-top: 22px; border-top: 1px solid #333; font-size: .84rem; color: #8a8479; }
.footer-bottom p { margin: 0; }

/* =========================================================
   FLOATING BUTTONS + WHATSAPP POPUP
   ========================================================= */
.floating-actions { position: fixed; right: 20px; bottom: 22px; z-index: 1040; display: flex; flex-direction: column; gap: 14px; }
.float-btn { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 1.5rem; text-decoration: none; box-shadow: 0 8px 22px rgba(0,0,0,.28); transition: var(--ease); }
.float-call { background: var(--gold-dark); }
.float-call:hover { background: var(--gold-rich); color: #fff; transform: scale(1.08); }
.float-wa { background: var(--wa-green); animation: waPulse 2.2s infinite; }
.float-wa:hover { background: var(--wa-green-dk); color: #fff; transform: scale(1.08); }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

.wa-popup { position: fixed; right: 20px; bottom: 92px; z-index: 1041; width: 320px; max-width: calc(100vw - 40px); background: #fff; border-radius: 18px; box-shadow: 0 20px 50px rgba(0,0,0,.28); overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(24px) scale(.96); transition: var(--ease); }
.wa-popup.show { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.wa-popup-close { position: absolute; top: 8px; right: 10px; background: none; border: none; color: rgba(255,255,255,.9); font-size: 1.5rem; line-height: 1; cursor: pointer; z-index: 2; }
.wa-popup-head { background: var(--wa-green-dk); color: #fff; padding: 16px 18px; display: flex; align-items: center; gap: 12px; }
.wa-popup-avatar { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.18); display: grid; place-items: center; font-size: 1.5rem; }
.wa-popup-head strong { display: block; font-family: 'Poppins',sans-serif; font-size: .98rem; }
.wa-popup-head small { font-size: .78rem; opacity: .9; display: flex; align-items: center; gap: 6px; }
.online-dot { width: 8px; height: 8px; border-radius: 50%; background: #7ee89b; display: inline-block; box-shadow: 0 0 0 3px rgba(126,232,155,.3); }
.wa-popup-body { padding: 20px 18px 10px; background: #e6ddd3 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' opacity='.04'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/svg%3E"); }
.wa-bubble { background: #fff; padding: 10px 14px; border-radius: 10px; font-size: .9rem; color: #333; margin-bottom: 10px; box-shadow: 0 1px 2px rgba(0,0,0,.08); position: relative; }
.wa-bubble:first-child::before { content: ''; position: absolute; left: -6px; top: 10px; border: 6px solid transparent; border-right-color: #fff; border-left: 0; }
.wa-popup .btn-wa { margin: 12px 18px 18px; width: calc(100% - 36px); border-radius: 12px; }

/* =========================================================
   POPUP LEAD FORM (MODAL)
   ========================================================= */
.popup-overlay { position: fixed; inset: 0; background: rgba(26,26,26,.72); backdrop-filter: blur(3px); z-index: 1050; opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s ease; }
.popup-overlay.show { opacity: 1; visibility: visible; }

.popup-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -46%) scale(.96); z-index: 1051; width: 420px; max-width: calc(100vw - 32px); max-height: calc(100vh - 32px); overflow: auto; background: #fff; border-radius: 20px; box-shadow: 0 30px 80px rgba(0,0,0,.45); opacity: 0; visibility: hidden; transition: var(--ease); }
.popup-modal.show { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.popup-close { position: absolute; top: 12px; right: 16px; z-index: 3; background: rgba(255,255,255,.85); border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 1.6rem; line-height: 1; color: var(--charcoal); cursor: pointer; box-shadow: var(--shadow-sm); transition: var(--ease); }
.popup-close:hover { background: var(--gold-rich); color: #fff; transform: rotate(90deg); }

/* Content panel */
.popup-form-wrap { padding: 34px 34px 40px; text-align: center; }
.popup-img { width: 100%; height: 180px; object-fit: cover; border-radius: 14px; margin-bottom: 22px; }
.popup-title { font-size: 1.55rem; font-weight: 700; margin-bottom: 6px; }
.popup-sub { font-size: .9rem; color: var(--text-gray); margin-bottom: 22px; }
.popup-wa-btn { padding: 14px 20px; font-size: 1.05rem; border-radius: 12px; margin-bottom: 14px; }

@media (max-width: 640px) {
  .popup-form-wrap { padding: 30px 24px; }
  .popup-img { height: 150px; }
}

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991.98px) {
  .hero { background-attachment: scroll; padding: 110px 0 70px; }
  .navbar-nav { margin: 14px 0; }
  .header-cta { display: inline-flex; width: fit-content; }
  .lead-form-card { margin: 34px auto 0; }
  .section { padding: 70px 0; }
}
@media (max-width: 575.98px) {
  .hero-usps li { font-size: 1rem; }
  .logo-text { font-size: 1rem; }
  .logo-text em { font-size: .7rem; letter-spacing: 3px; }
  .mid-cta h3 { font-size: 1.4rem; }
  .floating-actions { right: 14px; bottom: 16px; }
  .wa-popup { right: 14px; bottom: 84px; }
  .lead-form-card { padding: 26px 20px; }
  .logo-mark {
    height: 30px; 
}
.brand-name { 
    font-size: .95rem; 
}
.header-cta { 
    font-size: .65rem;
        padding: .55rem .74rem;
}
.header-cta i { 
     margin-right:5px;
}


}

/* =========================================================
   LEAD FORM — submission states + reCAPTCHA badge
   ========================================================= */
.form-error { display: block; margin-top: 14px; padding: 12px; background: #fdecea; color: #b3261e; border-radius: 10px; font-size: .88rem; text-align: center; font-weight: 500; }
.form-submit:disabled { opacity: .75; cursor: not-allowed; }
.form-submit.is-loading { pointer-events: none; }

/* Hide the v3 badge — Google's branding requirement is met by the
   .recaptcha-legal text shown inside the form instead. */
.grecaptcha-badge { visibility: hidden !important; opacity: 0 !important; pointer-events: none !important; }

/* Required reCAPTCHA attribution shown in place of the badge. */
.recaptcha-legal { margin: 12px 0 0; font-size: .72rem; line-height: 1.5; text-align: center; color: #8a8a8a; }
.recaptcha-legal a { color: inherit; text-decoration: underline; }
.recaptcha-legal a:hover { color: #c9a24b; }

/* =========================================================
   THANK YOU PAGE — banner as full-screen background
   ========================================================= */
.thankyou-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  text-align: center;
  background: linear-gradient(120deg, rgba(18,15,10,.72) 0%, rgba(24,20,14,.66) 45%, rgba(26,26,26,.6) 100%),
              url('../assets/Hair-Bond-Banner.png') center/cover no-repeat;
}
.thankyou-overlay { position: absolute; inset: 0; background: radial-gradient(circle at 50% 30%, rgba(201,162,75,.22), transparent 55%); pointer-events: none; }
.thankyou-content { position: relative; z-index: 2; max-width: 620px; }
.thankyou-logo { display: inline-block; margin-bottom: 30px; }
.thankyou-logo img { height: 52px; width: auto; }
.thankyou-check {
  display: grid; place-items: center;
  width: 78px; height: 78px; margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-rich), var(--gold-dark));
  color: #fff; font-size: 2.4rem;
  box-shadow: var(--shadow-gold);
}
.thankyou-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  font-weight: 800; color: #fff;
  margin: 0 0 16px; line-height: 1.2;
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
}
.thankyou-title .text-gold { color: var(--gold); }
.thankyou-sub {
  font-size: clamp(.95rem, 1.6vw, 1.1rem);
  color: #f3ede4;
  margin: 0 auto 34px; max-width: 460px;
  text-shadow: 0 1px 12px rgba(0,0,0,.4);
}
.thankyou-btn { display: inline-flex; align-items: center; gap: 8px; }

@media (max-width: 575.98px) {
  .thankyou-hero { padding: 48px 18px; background-attachment: scroll; }
  .thankyou-logo { margin-bottom: 22px; }
  .thankyou-logo img { height: 42px; }
  .thankyou-check { width: 66px; height: 66px; font-size: 2rem; margin-bottom: 20px; }
  .thankyou-sub { margin-bottom: 28px; }
}
