/* ==========================================================================
   POSH SPA MASSAGE CENTRE — style.css
   Author: (agency)
   NOTE: Change the whole colour theme from the CSS variables below.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. THEME TOKENS  ← edit these to re-skin the entire site
-------------------------------------------------------------------------- */
:root {
  /* Brand palette */
  --brand: #4c2a6e;
  /* deep royal purple (primary)       */
  --brand-dark: #371f52;
  /* darker plum (footer / dark bands) */
  --brand-soft: #f0ebf6;
  /* pale lavender tint (section bg)   */
  --gold: #c9a15a;
  /* brass gold accent (CTA / lines)   */
  --gold-dark: #b08a43;
  /* gold hover                        */
  --sand: #f6f1ea;
  /* warm sand tint (section bg)       */

  /* Neutrals */
  --ink: #2b2434;
  /* main text                         */
  --muted: #6f677a;
  /* secondary text                    */
  --white: #ffffff;
  --line: #e6e1ea;
  /* hairline borders                  */

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", system-ui, -apple-system, sans-serif;

  /* Shape & motion */
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 6px 20px rgba(76, 42, 110, .08);
  --shadow-md: 0 18px 45px rgba(76, 42, 110, .12);
  --shadow-lg: 0 30px 70px rgba(76, 42, 110, .18);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: .45s;

  --header-h: 78px;
}

/* --------------------------------------------------------------------------
   2. BASE / RESET
-------------------------------------------------------------------------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  overflow-x: hidden;
  /* safety net against horizontal scroll */
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  /* guard against accidental horizontal scroll */
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--dur) var(--ease);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: .2px;
}

p {
  margin: 0 0 1rem;
}

.container {
  max-width: 1200px;
}

/* --------------------------------------------------------------------------
   3. SHARED SECTION HELPERS
-------------------------------------------------------------------------- */
.section {
  padding: 100px 0;
  position: relative;
}

.section--sage {
  background: var(--brand-soft);
}

.section--sand {
  background: var(--sand);
}

.section--dark {
  background: var(--brand-dark);
}

.section__head {
  max-width: 680px;
  margin: 0 auto 60px;
}

.section__title {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  margin: 8px 0 18px;
}

.section__title--light {
  color: var(--white);
}

.section__intro {
  color: var(--muted);
  font-size: 1.08rem;
}

/* Eyebrow — a small brand-coloured label with a short rule */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand);
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.section__head.text-center .eyebrow {
  justify-content: center;
}

.eyebrow--light {
  color: #cfe0d7;
}

.lead-text {
  font-size: 1.18rem;
  color: var(--ink);
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   4. BUTTONS  (varied styles / hovers)
-------------------------------------------------------------------------- */
.btn {
  font-family: var(--font-body);
  font-weight: 500;
  border-radius: 50px;
  padding: .7rem 1.6rem;
  transition: all var(--dur) var(--ease);
}

/* Gold — primary CTA, lifts + shine on hover */
.btn-gold {
  background: var(--gold);
  color: #2a2013;
  border: none;
  box-shadow: 0 10px 24px rgba(201, 161, 90, .35);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: var(--gold-dark);
  color: #221a0f;
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(201, 161, 90, .45);
}

/* Green — secondary, fills from left on hover */
.btn-primary-spa {
  position: relative;
  background: var(--brand);
  color: var(--white);
  border: none;
  overflow: hidden;
  z-index: 0;
}

.btn-primary-spa::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--brand-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

.btn-primary-spa:hover::after,
.btn-primary-spa:focus-visible::after {
  transform: scaleX(1);
}

.btn-primary-spa:hover,
.btn-primary-spa:focus-visible {
  color: var(--white);
}

/* Outline light (on hero) — fills white on hover */
.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, .7);
  color: #fff;
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   5. TOP BAR
-------------------------------------------------------------------------- */
.topbar {
  background: var(--brand-dark);
  color: #d8e4de;
  font-size: .85rem;
  padding: 9px 0;
}

.topbar__link,
.topbar__hours {
  color: #d8e4de;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar__link i,
.topbar__hours i {
  color: var(--gold);
}

.topbar__link:hover {
  color: #fff;
}

.topbar__social {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  transition: all var(--dur) var(--ease);
}

.topbar__social:hover {
  background: var(--gold);
  color: #221a0f;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   6. HEADER / NAV
-------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--dur) var(--ease), padding var(--dur) var(--ease);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.site-header .navbar {
  padding: 0;
  min-height: var(--header-h);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.brand__mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  transition: transform var(--dur) var(--ease);
}

.navbar-brand:hover .brand__mark {
  transform: rotate(-12deg);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--brand);
}

.brand__sub {
  font-size: .68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--ink);
  padding: .6rem 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: transform var(--dur) var(--ease);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--brand);
}

/* Custom hamburger */
.navbar-toggler {
  border: none;
  padding: 6px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.toggler-bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--brand);
  margin: 5px 0;
  transition: all var(--dur) var(--ease);
}

/* --------------------------------------------------------------------------
   7. HERO
-------------------------------------------------------------------------- */
.hero {
  position: relative;
}

.hero__slide {
  position: relative;
  height: clamp(560px, 88vh, 820px);
  background-size: cover;
  background-position: center;
  background-color: var(--brand-dark);
  /* fallback while image loads */
  display: flex;
  align-items: center;
}

/* darker on the left where the text sits, so copy is always readable */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.781) 0%, rgba(0, 0, 0, 0.24) 45%, rgba(0, 0, 0, 0) 100%);
}

.hero__container {
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 620px;
  color: #fff;
}

/* content on the SIDE, not centred */
.hero__eyebrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: .82rem;
  margin-bottom: 18px;
}

.hero__title {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero__text {
  font-size: 1.15rem;
  color: #e7efeb;
  max-width: 520px;
  margin-bottom: 30px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Entrance animation for active slide content */
.carousel-item .hero__eyebrow,
.carousel-item .hero__title,
.carousel-item .hero__text,
.carousel-item .hero__actions {
  opacity: 0;
  transform: translateY(28px);
}

.carousel-item.active .hero__eyebrow {
  animation: heroUp .7s var(--ease) .15s forwards;
}

.carousel-item.active .hero__title {
  animation: heroUp .7s var(--ease) .30s forwards;
}

.carousel-item.active .hero__text {
  animation: heroUp .7s var(--ease) .45s forwards;
}

.carousel-item.active .hero__actions {
  animation: heroUp .7s var(--ease) .60s forwards;
}

@keyframes heroUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Custom round controls */
.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: auto;
  opacity: 1;
}

.hero .carousel-control-prev {
  left: 20px;
}

.hero .carousel-control-next {
  right: 20px;
}

.hero__control {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: #fff;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .35);
  transition: all var(--dur) var(--ease);
}

.hero__control:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #221a0f;
}

.hero__indicators {
  margin-bottom: 26px;
}

.hero__indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, .5);
  opacity: 1;
  transition: all var(--dur) var(--ease);
}

.hero__indicators .active {
  background: var(--gold);
  width: 30px;
  border-radius: 6px;
}

/* --------------------------------------------------------------------------
   8. MARQUEE (seamless infinite scroll)
-------------------------------------------------------------------------- */
.marquee {
  background: var(--brand);
  overflow: hidden;
  padding: 16px 0;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
  /* runs continuously, never stops */
}

.marquee__group {
  display: flex;
  flex-shrink: 0;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #eef4f1;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0 34px;
  white-space: nowrap;
}

.marquee__item i {
  color: var(--gold);
  font-size: 1rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* --------------------------------------------------------------------------
   9. ABOUT
-------------------------------------------------------------------------- */
.about__gallery {
  position: relative;
  padding: 0 20px 40px 0;
}

.about__img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.about__img--main {
  width: 100%;
  aspect-ratio: 4 / 4;
  object-fit: cover;
}

.about__img--sub {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 6px solid #fff;
}

.about__badge {
  position: absolute;
  top: 24px;
  left: -6px;
  background: var(--gold);
  color: #2a2013;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about__badge-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 1;
}

.about__badge-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about__points {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
}

.about__points li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
}

.about__points i {
  color: var(--brand);
  font-size: 1.25rem;
}

/* floating decorative icon */
.float-icon {
  position: absolute;
  color: var(--gold);
  opacity: .5;
  animation: floaty 6s ease-in-out infinite;
}

.float-icon--leaf {
  bottom: 0;
  left: 30px;
  font-size: 2rem;
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-14px) rotate(8deg);
  }
}

/* Stats strip */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 70px;
  background: var(--brand);
  border-radius: var(--radius);
  padding: 38px 24px;
  box-shadow: var(--shadow-md);
}

.stat {
  text-align: center;
  color: #fff;
  position: relative;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  height: 46px;
  width: 1px;
  background: rgba(255, 255, 255, .18);
}

.stat__num,
.stat__plus {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--gold);
}

.stat__label {
  display: block;
  font-size: .9rem;
  color: #dce7e2;
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   10. SERVICES  (image cards, staggered hover — distinct from other blocks)
-------------------------------------------------------------------------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--brand-soft);
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.service-card:hover .service-card__media img {
  transform: scale(1.08);
}

.service-card__num {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .9);
  color: var(--brand);
}

.service-card__body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card__title {
  font-size: 1.42rem;
  margin-bottom: 8px;
}

.service-card__body p {
  color: var(--muted);
  font-size: .96rem;
  flex-grow: 1;
}

.service-card__link {
  color: var(--brand);
  font-weight: 600;
  font-size: .92rem;
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
}

.service-card__link i {
  transition: transform var(--dur) var(--ease);
}

.service-card__link:hover {
  color: var(--gold-dark);
}

.service-card__link:hover i {
  transform: translateX(5px);
}

/* --------------------------------------------------------------------------
   11. WHY CHOOSE US  (sequential colour-wave cards)
-------------------------------------------------------------------------- */
.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.why-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

/* the animated top bar that lights up one card after another (wave) */
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  animation: waveBar 3.2s ease-in-out infinite;
  animation-delay: calc(var(--i) * .4s);
  /* staggered: card 1 → 2 → 3 → 4 */
}

@keyframes waveBar {

  0%,
  100% {
    transform: scaleX(0);
  }

  15%,
  40% {
    transform: scaleX(1);
  }

  55% {
    transform: scaleX(0);
    transform-origin: right;
  }
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.why-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 1.6rem;
  margin-bottom: 16px;
  transition: all var(--dur) var(--ease);
}

.why-card:hover .why-card__icon {
  background: var(--brand);
  color: var(--gold);
  transform: rotate(-6deg);
}

.why-card__title {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.why-card p {
  color: var(--muted);
  font-size: .95rem;
  margin: 0;
}

/* --------------------------------------------------------------------------
   12. HOW IT WORKS  (timeline / stepper on dark band)
-------------------------------------------------------------------------- */
.how .steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.how .steps__line {
  position: absolute;
  top: 26px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 16px);
  opacity: .5;
}

.step {
  text-align: center;
  position: relative;
}

.step__dot {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #221a0f;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 8px var(--brand-dark);
}

.step__icon {
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.step__title {
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.step__text {
  color: #bcd0c8;
  font-size: .95rem;
  margin: 0;
}

/* --------------------------------------------------------------------------
   13. GALLERY  (4 per row desktop / 2 per row mobile)
-------------------------------------------------------------------------- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery__item {
  position: relative;
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-sm);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(55, 31, 82, .55), transparent 60%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.gallery__zoom {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #221a0f;
  font-size: 1.1rem;
  opacity: 0;
  transform: scale(.5);
  transition: all var(--dur) var(--ease);
  z-index: 2;
}

.gallery__item:hover img {
  transform: scale(1.1);
}

.gallery__item:hover::after {
  opacity: 1;
}

.gallery__item:hover .gallery__zoom {
  opacity: 1;
  transform: scale(1);
}

/* --------------------------------------------------------------------------
   14. FAQ  (custom accordion)
-------------------------------------------------------------------------- */
.faq__accordion .accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 14px;
  overflow: hidden;
  background: #fff;
}

.faq__accordion .accordion-button {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.08rem;
  color: var(--ink);
  padding: 20px 22px;
  background: #fff;
}

.faq__accordion .accordion-button:not(.collapsed) {
  color: var(--brand);
  background: var(--brand-soft);
  box-shadow: none;
}

.faq__accordion .accordion-button:focus {
  box-shadow: none;
  border: none;
}

/* CSS-drawn "+" marker (two crossing lines) — rotates to an "x" when open.
   Drawn with gradients so it never depends on an icon font. */
.faq__accordion .accordion-button::after {
  background-image:
    linear-gradient(var(--gold), var(--gold)),
    linear-gradient(var(--gold), var(--gold));
  background-size: 14px 2px, 2px 14px;
  background-position: center, center;
  background-repeat: no-repeat;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
}

.faq__accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(135deg);
}

.faq__accordion .accordion-body {
  padding: 4px 22px 22px;
  color: var(--muted);
}

.faq__call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-weight: 600;
  color: var(--brand);
  font-size: 1.15rem;
}

.faq__call i {
  color: var(--gold);
}

.faq__call:hover {
  color: var(--gold-dark);
}

/* --------------------------------------------------------------------------
   15. TESTIMONIALS
-------------------------------------------------------------------------- */
.testi {
  max-width: 820px;
  margin: 0 auto;
}

.testi__card {
  background: #fff;
  border-radius: var(--radius);
  padding: 46px 44px 40px;
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  margin-bottom: 46px;
  border: 1px solid var(--line);
}

.testi__quote {
  position: absolute;
  top: 22px;
  left: 30px;
  font-size: 3.4rem;
  color: var(--brand-soft);
}

.testi__stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.testi__text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
}

.testi__person {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.testi__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}

.testi__name {
  display: block;
  font-weight: 600;
  color: var(--brand);
}

.testi__role {
  display: block;
  font-size: .85rem;
  color: var(--muted);
}

.testi__indicators {
  position: static;
  margin: 0;
}

.testi__indicators [data-bs-target] {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  background: #c9d6d0;
  opacity: 1;
  transition: all var(--dur) var(--ease);
}

.testi__indicators .active {
  background: var(--gold);
  width: 28px;
  border-radius: 6px;
}

/* --------------------------------------------------------------------------
   16. CONTACT
-------------------------------------------------------------------------- */
.contact__info {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}

.contact__info li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.contact__ico {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--brand);
  font-size: 1.15rem;
  box-shadow: var(--shadow-sm);
}

.contact__info a:hover {
  color: var(--gold-dark);
}

.contact__socials {
  display: flex;
  gap: 12px;
}

.contact__socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  transition: all var(--dur) var(--ease);
}

.contact__socials a:hover {
  background: var(--gold);
  color: #221a0f;
  transform: translateY(-3px);
}

.contact__form {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.form-label {
  font-weight: 500;
  font-size: .92rem;
  margin-bottom: 6px;
}

.form-label .opt {
  color: var(--muted);
  font-weight: 400;
}

.contact__form .form-control,
.contact__form .form-select {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .75rem 1rem;
  font-size: .96rem;
}

.contact__form .form-control:focus,
.contact__form .form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 .2rem rgba(76, 42, 110, .12);
}

.form-note {
  font-size: .92rem;
  font-weight: 500;
}

.form-note.ok {
  color: var(--brand);
}

.form-note.err {
  color: #b5462f;
}

/* --------------------------------------------------------------------------
   17. FOOTER
-------------------------------------------------------------------------- */
.footer {
  background: var(--brand-dark);
  color: #b9cbc4;
  padding: 70px 0 26px;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer__brand .brand__name {
  color: #fff;
}

.footer__brand .brand__sub {
  color: #8ba79d;
}

.footer__brand .brand__mark {
  background: rgba(255, 255, 255, .08);
}

.footer__about {
  font-size: .95rem;
  line-height: 1.7;
  max-width: 340px;
}

.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer__socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  transition: all var(--dur) var(--ease);
}

.footer__socials a:hover {
  background: var(--gold);
  color: #221a0f;
  transform: translateY(-3px);
}

.footer__title {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.footer__links,
.footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: .95rem;
}

.footer__links a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer__contact li {
  display: flex;
  gap: 10px;
  font-size: .93rem;
  margin-bottom: 12px;
  line-height: 1.55;
}

.footer__contact i {
  color: var(--gold);
  margin-top: 4px;
}

.footer__contact a:hover {
  color: var(--gold);
}

.footer__bottom {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: .88rem;
}

.footer__bottom p {
  margin: 0;
}

.footer__credit {
  color: #8ba79d;
}

/* --------------------------------------------------------------------------
   18. FLOATING BUTTONS + BACK TO TOP
-------------------------------------------------------------------------- */
.float-btn {
  position: fixed;
  bottom: 26px;
  z-index: 1040;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur) var(--ease);
}

.float-btn::after {
  /* pulsing ring */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: -1;
  animation: pulse 2s ease-out infinite;
}

.float-btn:hover {
  transform: scale(1.1);
  color: #fff;
}

.float-btn--whatsapp {
  left: 22px;
  background: #25d366;
}

.float-btn--whatsapp::after {
  background: #25d366;
}

.float-btn--call {
  right: 22px;
  background: var(--brand);
}

.float-btn--call::after {
  background: var(--brand);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: .6;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

.to-top {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 1039;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--gold);
  color: #221a0f;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur) var(--ease);
}

.to-top.show {
  opacity: 1;
  visibility: visible;
}

.to-top:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   19. SCROLL-REVEAL (IntersectionObserver adds .is-visible)
-------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   20. RESPONSIVE
-------------------------------------------------------------------------- */
@media (max-width: 1199.98px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991.98px) {
  .section {
    padding: 72px 0;
  }

  .site-header .navbar-collapse {
    background: #fff;
    margin-top: 10px;
    padding: 14px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .navbar-nav .btn-gold {
    display: inline-block;
    margin-top: 8px;
  }

  .hero__overlay {
    background: linear-gradient(90deg, rgba(15, 32, 28, .85) 0%, rgba(15, 32, 28, .55) 100%);
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  .how .steps__line {
    display: none;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }

  .stat:nth-child(2)::after {
    display: none;
  }

  .about__gallery {
    max-width: 460px;
    margin: 0 auto;
  }
}

@media (max-width: 575.98px) {
  .section {
    padding: 60px 0;
  }

  /* Wide gutters (g-5) use -24px row margins that exceed the fluid
     container's 12px padding below 576px. Cap horizontal gutter here;
     vertical gutter (row-gap for stacked columns) is untouched. */
  .row {
    --bs-gutter-x: 1.5rem;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .why__grid {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 2 per row on mobile */
  .how .steps {
    grid-template-columns: 1fr;
  }

  .testi__card {
    padding: 38px 24px 32px;
  }

  .testi__text {
    font-size: 1.25rem;
  }

  .contact__form {
    padding: 24px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .marquee__item {
    font-size: 1.2rem;
    padding: 0 22px;
  }

  .stat__num,
  .stat__plus {
    font-size: 2.1rem;
  }
}

/* --------------------------------------------------------------------------
   21. ACCESSIBILITY — respect reduced motion
-------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .marquee__track {
    animation: none;
  }
}

/* Visible keyboard focus */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}