/* ============================================
   Purple Plum Childcare — Global Styles
   ============================================ */

:root {
  --purple-dark: #4b2067;
  --purple: #5e2a86;
  --purple-light: #7c3aed;
  --pink: #ec4899;
  --orange: #f59e0b;
  --yellow: #fbbf24;
  --text: #2d2d2d;
  --white: #ffffff;
  --gradient: linear-gradient(90deg, #ec4899 0%, #f59e0b 100%);
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--purple-dark);
  color: var(--white);
  font-size: 14px;
  padding: 3px 0;
}

.top-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-left,
.top-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.top-left a,
.top-right span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  transition: color 0.25s ease;
}

.top-left a:hover {
  color: var(--yellow);
}

.top-left i {
  color: var(--yellow);
}

.top-right .fa-clock {
  color: var(--yellow);
}

.socials {
  display: flex;
  gap: 16px;
  margin-left: 8px;
}

.socials a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.socials a:hover {
  color: var(--yellow);
  transform: translateY(-2px) scale(1.1);
}

/* ============================================
   NAVBAR
   ============================================ */
/* ===== Header ===== */
.site-header {
  background: #fff;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 6px 30px rgba(138,79,163,.08);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -18px;
  height: 20px;
  background: radial-gradient(circle at 15px 0, #fff 14px, transparent 15px) repeat-x;
  background-size: 30px 20px;
  filter: drop-shadow(0 4px 4px rgba(138,79,163,.08));
  pointer-events: none;
  z-index: 101;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 2px 20px; gap: 20px; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 60px; width: auto; display: block; }
.footer-col .logo img { height: 70px; filter: brightness(0) invert(1); }
.logo-icon { font-size: 36px; animation: wiggle 3s ease-in-out infinite; display: inline-block; }
.logo em { color: var(--yellow-dark); font-style: normal; }
.logo-light { color: #fff; }
.logo-light em { color: var(--yellow); }

.main-nav ul { display: flex; gap: 6px; }
.main-nav a {
  display: block;
  padding: 10px 16px;
  font-weight: 600;
  color: var(--dark);
  transition: color .3s;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--purple) 0%, var(--pink) 50%, var(--yellow) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--purple); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.header-cta { padding: 12px 24px; font-size: 15px; }
.mobile-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--purple); cursor: pointer; }

/* ============================================
   BOOK A TOUR — BLOBS BUTTON
   Inspired by #5 "Blobs button" by Hilary
   from dev.to top-20-css-buttons-animations
   ============================================ */
/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 32px;
  border-radius: 50px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  background: transparent;
  color: var(--purple);
  border: 1px solid var(--purple);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary, .btn-yellow, .btn-outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
  box-shadow: none;
}

/* ===== Blob Button Effect (#5 Blobs) ===== */
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
  transition: color .3s ease;
}
.blob-btn__inner {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  background: transparent;
  z-index: 1;
}
.blob-btn__blobs {
  position: relative;
  display: block;
  height: 100%;
  filter: url('#goo');
}
.blob-btn__blob {
  position: absolute;
  top: 2px;
  width: 25%;
  height: 100%;
  background: var(--purple);
  border-radius: 100%;
  transform: translate3d(0, 150%, 0) scale(1.7);
  transition: transform .45s;
}
.blob-btn__blob:nth-child(1) { left: 0%; }
.blob-btn__blob:nth-child(2) { left: 30%; transition-delay: .08s; }
.blob-btn__blob:nth-child(3) { left: 60%; transition-delay: .16s; }
.blob-btn__blob:nth-child(4) { left: 90%; transition-delay: .24s; }
.btn:hover .blob-btn__blob { transform: translateZ(0) scale(1.7); }

/* Unified hover: purple blobs rise, text turns white */
.btn .blob-btn__blob,
.btn-primary .blob-btn__blob,
.btn-yellow .blob-btn__blob,
.btn-outline .blob-btn__blob { background: var(--purple); }
.btn:hover .btn-text { color: #fff; }

/* ============================================
   SCALLOPED BOTTOM EDGE
   ============================================ */
.scallop {
  height: 22px;
  background-image: radial-gradient(circle at 14px 0, #fdf2f8 14px, transparent 15px);
  background-size: 28px 22px;
  background-repeat: repeat-x;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero {
  position: relative;
  background: linear-gradient(180deg, #fff7fb 0%, #fde4ef 45%, #fef3e7 100%);
  overflow: hidden;
  min-height: 680px;
  padding: 70px 20px 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 520px;
  z-index: 2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 40px;
  text-align: left;
  transition: opacity .8s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

/* Left content — children stagger in */
.hero-content {
  max-width: 580px;
}

.hero-content > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1);
}

.hero-slide.active .hero-content > *           { opacity: 1; transform: translateY(0); }
.hero-slide.active .hero-content > *:nth-child(1) { transition-delay: .25s; }
.hero-slide.active .hero-content > *:nth-child(2) { transition-delay: .40s; }
.hero-slide.active .hero-content > *:nth-child(3) { transition-delay: .55s; }
.hero-slide.active .hero-content > *:nth-child(4) { transition-delay: .70s; }

/* Right image — PNG cutout that pops in from the right */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  opacity: 0;
  transform: translateX(80px) scale(.95);
  transition: opacity 1s ease .2s, transform 1.1s cubic-bezier(.2,.8,.2,1) .2s;
  
}

.hero-slide.active .hero-image {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.hero-image img {
  max-width: 100%;
  width: 500px;
  height: 600px;
  object-fit: cover;
  display: block;
  border-top-left-radius: 300px;
  border-top-right-radius: 300px;
  filter: drop-shadow(0 25px 35px rgba(124, 58, 237, .25));
  animation: heroFloat 5s ease-in-out infinite;
}

@keyframes heroFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-14px); }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--purple);
  border: 2px dashed var(--pink);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(124, 58, 237, .08);
}

.hero-tag i { color: var(--pink); }

.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--purple-dark);
  margin-bottom: 22px;
  letter-spacing: -1px;
}

.hero h1 .highlight {
  background: linear-gradient(90deg, #ec4899 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

.hero h1 .highlight::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 8px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' fill='none'><path d='M2 8 Q50 -2 100 6 T198 4' stroke='%23fbbf24' stroke-width='4' stroke-linecap='round'/></svg>") no-repeat center / 100% 100%;
}

.hero p {
  font-size: 18px;
  color: #5b5070;
  max-width: 620px;
  margin: 0 auto 32px;
}

.hero-buttons {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero p { margin: 0 0 32px; }

/* Bottom wave */
.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 120px;
  display: block;
  z-index: 2;
  pointer-events: none;
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.hero-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(124, 58, 237, .25);
  cursor: pointer;
  transition: all .3s ease;
}

.hero-dots .dot.active {
  width: 36px;
  border-radius: 6px;
  background: var(--gradient);
}

/* ============================================
   HERO DECORATIVE DOODLES
   ============================================ */
.hero-decor { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.decor { position: absolute; }
.decor svg { width: 100%; height: 100%; display: block; }

.decor-bee       { top: 12%;  left: 8%;   width: 90px;  animation: float 5s ease-in-out infinite, bee-path 14s linear infinite; }
.decor-rainbow   { top: 18%;  right: 6%;  width: 150px; animation: float 6s ease-in-out infinite; }
.decor-pencil    { bottom: 18%; left: 5%; width: 170px; animation: tilt 4s ease-in-out infinite; }
.decor-cloud     { top: 8%;   left: 42%;  width: 110px; animation: drift 8s ease-in-out infinite; }
.decor-star      { bottom: 22%; right: 10%; width: 60px; animation: spin 10s linear infinite, float 4s ease-in-out infinite; }
.decor-squiggle  { bottom: 30%; left: 38%; width: 110px; opacity: .8; animation: float 5s ease-in-out infinite reverse; }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-18px); }
}
@keyframes drift {
  0%,100% { transform: translateX(0); }
  50%     { transform: translateX(30px); }
}
@keyframes tilt {
  0%,100% { transform: rotate(-8deg); }
  50%     { transform: rotate(4deg); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes bee-path {
  0%,100% { translate: 0 0; }
  25%     { translate: 30px -15px; }
  50%     { translate: 60px 10px; }
  75%     { translate: 20px 25px; }
}

@media (max-width: 900px) {
  .hero-slide { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .hero-content { margin: 0 auto; }
  .hero-buttons { justify-content: center; }
  .hero-image img { width: 320px; }
  .decor-cloud, .decor-squiggle { display: none; }
  .decor-bee     { width: 60px; }
  .decor-rainbow { width: 100px; }
  .decor-pencil  { width: 120px; }
  .hero { padding: 60px 16px 140px; min-height: 520px; }
}

/* ============================================
   SHARED / UTILITIES
   ============================================ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--purple);
  border: 2px dashed var(--pink);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(124, 58, 237, .08);
}

.section-tag i { color: var(--pink); }

.section-header h2 {
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 700;
  color: var(--purple-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-header h2 .highlight {
  background: linear-gradient(90deg, #ec4899 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-desc {
  font-size: 17px;
  color: #5b5070;
  max-width: 600px;
  margin: 0 auto;
}

/* Scroll reveal base */
.highlight-card, .program-card, .why-item, .gallery-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1);
}
.highlight-card.revealed, .program-card.revealed, .why-item.revealed, .gallery-item.revealed {
  opacity: 1;
  transform: translateY(0);
}
.highlight-card:nth-child(2), .program-card:nth-child(2), .why-item:nth-child(2), .gallery-item:nth-child(2) { transition-delay: .1s; }
.highlight-card:nth-child(3), .program-card:nth-child(3), .why-item:nth-child(3), .gallery-item:nth-child(3) { transition-delay: .2s; }
.highlight-card:nth-child(4), .program-card:nth-child(4), .why-item:nth-child(4), .gallery-item:nth-child(4) { transition-delay: .3s; }
.gallery-item:nth-child(5) { transition-delay: .4s; }
.gallery-item:nth-child(6) { transition-delay: .5s; }

/* ============================================
   CENTRE HIGHLIGHTS — Circle Ring Design
   ============================================ */
.highlights {
  padding: 100px 0 80px;
  background: #fff;
}

.highlights-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
  max-width: 1400px;
}

.highlight-card {
  position: relative;
  text-align: center;
  background: transparent;
  flex: 0 0 auto;
  margin-left: -55px;
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1);
}

.highlight-card:first-child { margin-left: 0; }

/* Outer ring — white fill creates Venn lens on overlap */
.highlight-ring {
  position: relative;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 40px 40px 50px;
}

.card-pink .highlight-ring   { border: 2px solid #ec4899; }
.card-green .highlight-ring  { border: 2px solid #22c55e; }
.card-yellow .highlight-ring { border: 2px solid #f59e0b; }
.card-purple .highlight-ring { border: 2px solid #7c3aed; }

/* Icon — upper portion of circle */
.highlight-icon {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: transform .4s ease;
}

.highlight-card:hover .highlight-icon {
  transform: scale(1.1);
}

.card-pink .highlight-icon   { background: #ec4899; }
.card-green .highlight-icon  { background: #22c55e; }
.card-yellow .highlight-icon { background: #f59e0b; }
.card-purple .highlight-icon { background: #7c3aed; }

/* Text — lower portion of circle */
.highlight-text {
  position: relative;
  z-index: 2;
  text-align: center;
}

.highlight-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 8px;
}

.highlight-card p {
  font-size: 14px;
  color: #5b5070;
  line-height: 1.5;
}

/* ============================================
   PROGRAMS OVERVIEW
   ============================================ */
.programs {
  padding: 100px 0;
  background: linear-gradient(180deg, #eef1fb 0%, #f5f0ff 50%, #fef6ee 100%);
  position: relative;
}

/* Outer dashed container */
.programs-outer {
  position: relative;
  background: #f8f8fc;
  border: 2px dashed #d5c8e8;
  border-radius: 40px;
  padding: 50px 45px;
}

/* Side dot indicators */
.programs-dots-side {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.side-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #d5c8e8;
  background: transparent;
  transition: all .3s ease;
}

.side-dot.active {
  background: #f4a77c;
  border-color: #f4a77c;
}

/* Cards grid */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Individual card */
.program-card {
  position: relative;
  border-radius: 30px 30px 60px 30px;
  padding: 24px 22px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 6px 25px rgba(0,0,0,.04);
  transition: transform .4s ease, box-shadow .4s ease, opacity .7s ease;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 45px rgba(0,0,0,.1);
}

/* Card color variants */
.pcard-blue     { background: #e7f0fa; }
.pcard-lavender { background: #ede7f6; }
.pcard-beige    { background: #fef5e7; }

/* Image wrapper with badge */
.program-img-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}

.program-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  transition: transform .5s ease;
}

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

/* Age badge — overlaps image bottom center */
.program-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: #f4a77c;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(244,167,124,.35);
}

/* Body */
.program-body {
  padding: 14px 4px 4px;
}

.program-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 10px;
}

.program-body > p {
  font-size: 14px;
  color: #6b6b8a;
  line-height: 1.65;
  margin-bottom: 16px;
}

/* Duration pill */
.program-duration {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-dark);
  background: rgba(255,255,255,.7);
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(0,0,0,.06);
}

/* Arrow circle button */
.program-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.65);
  color: #8b8ba3;
  font-size: 15px;
  margin-top: 14px;
  border: 1px solid rgba(0,0,0,.06);
  transition: background .3s ease, color .3s ease, transform .3s ease;
}

.program-card:hover .program-arrow {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
  transform: scale(1.08);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
  padding: 100px 0;
  background: #fff;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us-content .section-tag { margin-bottom: 18px; }

.why-us-content h2 {
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.why-us-content h2 .highlight {
  background: linear-gradient(90deg, #ec4899 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.why-us-content > p {
  font-size: 17px;
  color: #5b5070;
  margin-bottom: 36px;
}

.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
}

.icon-pink   { background: linear-gradient(135deg, #ec4899, #f472b6); }
.icon-yellow { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.icon-green  { background: linear-gradient(135deg, #22c55e, #4ade80); }
.icon-purple { background: linear-gradient(135deg, #7c3aed, #a78bfa); }

.why-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 4px;
}

.why-item p {
  font-size: 14px;
  color: #5b5070;
  line-height: 1.5;
}

.why-us-image {
  position: relative;
}

.why-us-image img {
  width: 100%;
  border-radius: 200px 200px 30px 30px;
  box-shadow: 0 25px 60px rgba(124, 58, 237, .2);
}

.why-us-badge {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: var(--gradient);
  color: #fff;
  padding: 20px 28px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(236, 72, 153, .3);
  animation: float 4s ease-in-out infinite;
}

.badge-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-size: 13px;
  font-weight: 500;
  opacity: .9;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(180deg, #f3e8ff 0%, #fde4ef 50%, #fef3e7 100%);
  position: relative;
}

.testimonials-slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  min-height: 280px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: 28px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(124, 58, 237, .1);
  opacity: 0;
  transform: translateY(20px) scale(.97);
  transition: opacity .6s ease, transform .6s ease;
  pointer-events: none;
}

.testimonial-card:first-child { position: relative; }

.testimonial-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  position: relative;
}

.testimonial-stars {
  margin-bottom: 18px;
}

.testimonial-stars i {
  color: #fbbf24;
  font-size: 20px;
  margin: 0 2px;
}

.testimonial-text {
  font-size: 17px;
  color: #5b5070;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-author strong {
  display: block;
  font-size: 16px;
  color: var(--purple-dark);
}

.testimonial-author span {
  font-size: 13px;
  color: #8b7a9e;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.t-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(124, 58, 237, .2);
  cursor: pointer;
  transition: all .3s ease;
}

.t-dot.active {
  width: 36px;
  border-radius: 6px;
  background: var(--gradient);
}

/* ============================================
   GALLERY PREVIEW
   ============================================ */
.gallery-preview {
  padding: 100px 0;
  background: #fff;
}

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

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  height: 260px;
  position: relative;
  cursor: pointer;
}

.gallery-item::after {
  content: "\f065";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(94, 42, 134, .4);
  color: #fff;
  font-size: 28px;
  opacity: 0;
  transition: opacity .4s ease;
  border-radius: 20px;
}

.gallery-item:hover::after { opacity: 1; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-cta {
  text-align: center;
}

/* ============================================
   BOOK A TOUR CTA
   ============================================ */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #f59e0b 100%);
  padding: 80px 20px;
  overflow: hidden;
}

.cta-decor { position: absolute; inset: 0; pointer-events: none; }
.cta-decor .decor { animation: float 5s ease-in-out infinite; }

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-content h2 {
  font-size: clamp(26px, 4vw, 40px);
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-content p {
  font-size: 17px;
  color: rgba(255,255,255,.9);
  max-width: 540px;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-yellow {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-yellow:hover .btn-text { color: var(--purple); }
.btn-yellow .blob-btn__blob { background: #fff; }

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  transition: opacity .3s ease;
}

.cta-phone:hover { opacity: .8; }
.cta-phone i { font-size: 16px; }

/* ============================================
   FOOTER
   ============================================ */
.footer-wave {
  line-height: 0;
}

.footer-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

.footer-main {
  background: var(--purple-dark);
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
}

.footer-col p {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
}

.footer-col h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  border-radius: 3px;
  background: var(--gradient);
}

.footer-col ul li {
  padding: 6px 0;
}

.footer-col ul li a,
.footer-col ul li {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: color .3s ease;
}

.footer-col ul li a:hover { color: var(--yellow); }

.footer-col ul li i {
  font-size: 11px;
  margin-top: 5px;
  color: var(--pink);
}

.footer-contact li i {
  font-size: 14px !important;
  min-width: 18px;
  color: var(--yellow) !important;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 16px;
  transition: all .3s ease;
}

.footer-socials a:hover {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  background: rgba(0,0,0,.15);
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  color: rgba(255,255,255,.5);
  font-size: 13px;
}

.footer-bottom a {
  color: var(--yellow);
  transition: opacity .3s;
}

.footer-bottom a:hover { opacity: .8; }

/* ============================================
   RESPONSIVE — ALL SECTIONS
   ============================================ */
@media (max-width: 1100px) {
  .highlights-grid { flex-wrap: wrap; }
  .highlight-card { margin-left: -30px; }
  .highlight-card:first-child, .highlight-card:nth-child(3) { margin-left: 0; }
  .highlight-ring { width: 280px; height: 280px; padding: 35px 35px 45px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .top-bar-inner { padding: 0 24px; }
}

@media (max-width: 900px) {
  .programs-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .programs-outer { padding: 30px 20px; border-radius: 28px; }
  .programs-dots-side { display: none; }
  .why-us-grid { grid-template-columns: 1fr; text-align: center; }
  .why-us-image { order: -1; }
  .why-us-image img { max-width: 400px; margin: 0 auto; display: block; }
  .why-us-badge { left: 50%; transform: translateX(-50%); bottom: -15px; }
  .why-item { text-align: left; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .top-left, .top-right { gap: 16px; font-size: 12px; }
}

@media (max-width: 600px) {
  .highlight-card { margin-left: 0 !important; }
  .highlight-ring { width: 260px; height: 260px; padding: 30px 30px 40px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
}
