/* ============================================
   FRIENDSHIP LANE — LANDING PAGE STYLES
   Brand: Playfair Display (headings) + Montserrat (body)
   Primary: #053225 | WhatsApp: #25D366
   ============================================ */

:root {
  --primary: #053225;
  --primary-dark: #031e17;
  --primary-mid: #0a4a33;
  --wa-green: #25D366;
  --wa-dark: #128C7E;
  --accent-gold: #b8924a;
  --accent-lime: #ecf39e;
  --bg-cream: #faf9f4;
  --bg-sage: #eef0e8;
  --text-dark: #1c1c1a;
  --text-muted: #596255;
  --border: #dce0d4;
  --shadow-sm: 0 1px 4px rgba(5, 50, 37, 0.08);
  --shadow-md: 0 4px 18px rgba(5, 50, 37, 0.12);
  --shadow-lg: 0 12px 40px rgba(5, 50, 37, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-cream);
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

#navbar.scrolled {
  background: rgba(30, 30, 30, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.35);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo {
  height: 2.75rem;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.35s ease;
}

#navbar.scrolled .nav-logo {
  filter: brightness(0) invert(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.btn-nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  background: var(--wa-green);
  color: #fff;
  padding: 0.5rem 1.0625rem;
  border-radius: 0.25rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.btn-nav-wa:hover {
  background: var(--wa-dark);
  transform: translateY(-1px);
}

.btn-nav-call {
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1.0625rem;
  border-radius: 0.25rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.btn-nav-call:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

#navbar.scrolled .btn-nav-call {
  background: var(--primary);
}

/* ============================================
   SHARED BUTTON COMPONENTS
   ============================================ */
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5625rem;
  background: var(--wa-green);
  color: #fff;
  padding: 0.875rem 1.875rem;
  border-radius: 0.25rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
}

.btn-wa:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
}

.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5625rem;
  background: var(--primary);
  color: #fff;
  padding: 0.875rem 1.875rem;
  border-radius: 0.25rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
}

.btn-call:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(5, 50, 37, 0.3);
}

/* On dark/primary background — outline call button */
.btn-call-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5625rem;
  background: transparent;
  color: #fff;
  padding: 0.875rem 1.875rem;
  border-radius: 0.25rem;
  border: 2px solid rgba(255, 255, 255, 0.55);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.btn-call-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
  transform: translateY(-2px);
}

/* Size modifiers */
.btn-lg {
  padding: 1rem 2.125rem;
  font-size: 0.9375rem;
}

.btn-xl {
  padding: 1.1875rem 2.625rem;
  font-size: 1rem;
}

/* ============================================
   HERO
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(3, 30, 23, 0.35) 0%,
      rgba(3, 30, 23, 0.15) 40%,
      rgba(3, 30, 23, 0.45) 70%,
      rgba(3, 30, 23, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 52rem;
  padding: 0 1.5rem;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(5, 50, 37, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.4375rem 1.125rem;
  border-radius: 2rem;
  margin-bottom: 1.75rem;
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 5.2vw, 3.8rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.hero-h1 em {
  font-style: italic;
  font-weight: 400;
}

.hero-p {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  max-width: 38rem;
  margin: 0 auto 2.75rem;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  margin-bottom: 3rem;
}

.hero-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-tag-label {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-right: 0.25rem;
}

.hero-tag {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}

.hero-dot {
  color: rgba(255, 255, 255, 0.28);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-section {
  padding: 3rem 1.5rem 3rem;
  background: var(--bg-cream);
}

.gallery-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: 7fr 5fr;
    grid-template-rows: 660px;  /* explicit row track forces correct height */
  }
}

.gallery-main {
  height: 18rem;
}

@media (min-width: 768px) {
  .gallery-main {
    height: 100%;
  }
}

.gallery-main img,
.gallery-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.gallery-sub {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0.875rem;
}

@media (min-width: 768px) {
  .gallery-sub {
    height: 100%;  /* stretch to fill the grid track */
  }
}

.gallery-sub-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  height: 10rem;
}

@media (min-width: 768px) {
  .gallery-sub-top {
    height: 100%;
  }
}

.gallery-sub-bottom {
  height: 10rem;
}

@media (min-width: 768px) {
  .gallery-sub-bottom {
    height: 100%;
  }
}

.gallery-img-wrap {
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  transition: transform 0.65s ease;
}

.gallery-img-wrap:hover img {
  transform: scale(1.04);
}

/* ============================================
   GALLERY TABS
   ============================================ */
.gtabs-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.gtab {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 0.875rem 2rem;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}

.gtab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.gtab:hover { color: var(--primary); }

.gtab.active {
  color: var(--primary);
}

.gtab.active::after {
  transform: scaleX(1);
}

.gallery-panel {
  display: none;
}

.gallery-panel.active {
  display: block;
  animation: gtab-in 0.3s ease;
}

@keyframes gtab-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   CTA STRIP — DARK (primary bg)
   ============================================ */
.cta-strip-dark {
  background: var(--primary);
  padding: 4rem 1.5rem;
  text-align: center;
}

.cta-strip-dark .strip-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-lime);
  margin-bottom: 0.75rem;
}

.cta-strip-dark .strip-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.625rem, 4vw, 2.375rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.625rem;
}

.cta-strip-dark .strip-sub {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.strip-actions {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   CTA STRIP — LIGHT (sage bg)
   ============================================ */
.cta-strip-light {
  background: var(--bg-sage);
  padding: 4rem 1.5rem;
  text-align: center;
}

.cta-strip-light .strip-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.625rem, 4vw, 2.375rem);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.625rem;
}

.cta-strip-light .strip-sub {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   SECTION HEADER UTILITY
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: block;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.625rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.875rem, 4vw, 2.625rem);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-rule {
  width: 3rem;
  height: 2px;
  background: linear-gradient(to right, var(--accent-gold), transparent);
  margin: 0 auto;
}

/* ============================================
   WHY SECTION (FEATURES)
   ============================================ */
.why-section {
  padding: 5rem 1.5rem;
  background: var(--bg-sage);
}

.features-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1.5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-icon {
  width: 3.875rem;
  height: 3.875rem;
  border-radius: 50%;
  background: rgba(5, 50, 37, 0.07);
  border: 1px solid rgba(5, 50, 37, 0.11);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.875rem;
  transition: background 0.2s, transform 0.2s;
}

.feature-item:hover .feature-icon {
  background: rgba(5, 50, 37, 0.14);
  transform: translateY(-3px);
}

.feature-icon .material-symbols-outlined {
  font-size: 1.625rem;
  color: var(--primary);
}

.feature-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.why-inline-cta {
  max-width: 1280px;
  margin: 3.5rem auto 0;
  text-align: center;
}

.why-inline-cta p {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.why-inline-cta .strip-actions {
  justify-content: center;
}

/* ============================================
   PERFECT FOR (icon cards — no images)
   ============================================ */
.for-section {
  padding: 5rem 1.5rem;
  background: var(--bg-cream);
}

.for-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .for-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .for-cards-grid { grid-template-columns: repeat(4, 1fr); } }

.for-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.for-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--primary-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.for-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.for-card:hover::before { transform: scaleX(1); }

.for-card-num {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-style: italic;
  font-weight: 700;
  color: rgba(5, 50, 37, 0.06);
  line-height: 1;
  user-select: none;
}

.for-card-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: rgba(5, 50, 37, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.2s;
}
.for-card:hover .for-card-icon { background: rgba(5, 50, 37, 0.14); }
.for-card-icon .material-symbols-outlined { font-size: 1.5rem; color: var(--primary); }

.for-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.for-card-sub {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
}

.for-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.for-card-list li {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 1.125rem;
  position: relative;
}
.for-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-gold);
}

.for-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--wa-green);
  color: #fff;
  padding: 0.6875rem 1.25rem;
  border-radius: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
}
.for-card-cta:hover {
  background: var(--wa-dark);
  transform: translateY(-1px);
}

/* ============================================
   EXPERIENCE SECTION
   ============================================ */
.experience-section {
  padding: 5rem 1.5rem;
  background: var(--primary);
  overflow: hidden;
}

.experience-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .experience-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.exp-eyebrow {
  display: block;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.875rem;
}

.exp-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.375rem, 5vw, 3.375rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 2.75rem;
}

.exp-heading em {
  font-style: italic;
  font-weight: 400;
}

.exp-items {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  margin-bottom: 2.75rem;
}

.exp-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.exp-num {
  flex-shrink: 0;
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.9375rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
}

.exp-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.375rem;
}

.exp-item p {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

.exp-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.exp-image-wrap {
  position: relative;
}

.exp-image-wrap img {
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-lg);
}

.exp-quote {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: #fff;
  padding: 1.375rem 1.5rem;
  border-radius: 0.625rem;
  max-width: 56%;
  box-shadow: var(--shadow-lg);
  z-index: 10;
}

.exp-quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-dark);
}

@media (max-width: 767px) {
  .exp-quote {
    display: none;
  }
}

/* ============================================
   TESTIMONIALS — SLIDER
   ============================================ */
.testimonials-section {
  padding: 5rem 1.5rem;
  background: var(--bg-cream);
}

/* Outer wrapper */
.reviews-slider-wrap {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3.5rem;
}

/* Clipping window */
.reviews-slider { overflow: hidden; }

/* Sliding track — flex row */
.reviews-track {
  display: flex;
  align-items: stretch;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Slide wrapper: controls how many cards show per view */
.slide-item {
  flex: 0 0 100%;          /* mobile: 1 per view */
  padding: 0 0.625rem;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .slide-item { flex: 0 0 50%; }   /* tablet: 2 per view */
}
@media (min-width: 1024px) {
  .slide-item { flex: 0 0 33.333%; } /* desktop: 3 per view */
}

/* Card styling — fills the slide wrapper */
.testimonial-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* Arrow buttons */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--primary);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  z-index: 10;
}
.slider-arrow:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.slider-prev { left: 0; }
.slider-next { right: 0; }
.slider-arrow:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

/* Dot indicators */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}
.slider-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.slider-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

@media (max-width: 639px) {
  .reviews-slider-wrap { padding: 0 2.5rem; }
  .testimonial-card { padding: 1.75rem 1.5rem; }
}

.stars {
  display: flex;
  gap: 0.25rem;
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
}

.testimonial-card>blockquote {
  flex: 1;                  /* grow to push reviewer to bottom */
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 1.75rem;
  border: none;
  padding: 0;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.reviewer-avatar {
  width: 2.375rem;
  height: 2.375rem;
  border-radius: 50%;
  background: rgba(5, 50, 37, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
}

.reviewer-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
  display: block;
}

.reviewer-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.cta-final {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-mid) 100%);
  padding: 5.5rem 1.5rem;
  text-align: center;
}

.cta-final-pill {
  display: inline-block;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-lime);
  background: rgba(236, 243, 158, 0.1);
  border: 1px solid rgba(236, 243, 158, 0.28);
  padding: 0.4375rem 1.125rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.cta-final-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.875rem;
}

.cta-final-sub {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 2.625rem;
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.625rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8125rem;
  font-weight: 600;
}

.trust-badge .material-symbols-outlined {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ============================================
   FOOTER (COPYRIGHT ONLY)
   ============================================ */
.site-footer {
  background: var(--primary-dark);
  padding: 1.375rem 1.5rem;
  text-align: center;
}

.site-footer p {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   FLOATING WHATSAPP BUTTON (desktop)
   ============================================ */
.float-wa {
  position: fixed;
  bottom: 2rem;
  right: 1.75rem;
  z-index: 200;
  width: 3.375rem;
  height: 3.375rem;
  background: var(--wa-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.55), 0 2px 8px rgba(0, 0, 0, 0.15);
  animation: wa-pulse 2.8s infinite;
  transition: transform 0.2s, box-shadow 0.2s;
}

.float-wa:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.72);
  animation: none;
}

@keyframes wa-pulse {

  0%,
  100% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.55), 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  50% {
    box-shadow: 0 4px 36px rgba(37, 211, 102, 0.8), 0 2px 12px rgba(0, 0, 0, 0.2);
  }
}

/* ============================================
   MOBILE STICKY BAR
   ============================================ */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 199;
}

.mob-wa,
.mob-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
}

.mob-wa {
  background: var(--wa-green);
}

.mob-wa:hover {
  background: var(--wa-dark);
}

.mob-call {
  background: var(--primary);
}

.mob-call:hover {
  background: var(--primary-dark);
}

@media (max-width: 767px) {
  .mobile-sticky {
    display: flex;
  }

  .float-wa {
    display: none;
  }

  body {
    padding-bottom: 3.75rem;
  }
}

/* ============================================
   RESPONSIVE TWEAKS
   ============================================ */
@media (max-width: 639px) {
  .strip-actions {
    flex-direction: column;
    align-items: center;
  }

  .strip-actions .btn-wa,
  .strip-actions .btn-call,
  .strip-actions .btn-call-outline {
    width: 100%;
    max-width: 22rem;
  }

  .exp-ctas {
    flex-direction: column;
  }

  .exp-ctas .btn-wa,
  .exp-ctas .btn-call-outline {
    width: 100%;
    max-width: 22rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn-wa,
  .hero-ctas .btn-call {
    width: 100%;
    max-width: 22rem;
  }
}