/* ── CSS Variables ── */
:root {
  --coral: #ff6b35;
  --sky: #00b4d8;
  --sun: #ffd60a;
  --mint: #06d6a0;
  --plum: #7b2fbe;
  --cream: #fff8f0;
  --ink: #1a1230;
  --ink-80: rgba(26, 18, 48, 0.8);
  --radius: 1.5rem;
  --radius-lg: 2.5rem;
  --shadow-lg: 0 20px 60px rgba(26, 18, 48, 0.15);
  --shadow-xl: 0 30px 80px rgba(26, 18, 48, 0.25);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}
img {
  display: block;
  width: 100%;
  object-fit: cover;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
}
select {
  appearance: none;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--coral);
  border-radius: 99px;
}

/* ── Section Padding ── */
.section-pad {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .section-pad {
    padding: 4rem 0;
  }
}

/* ══════════════════════════════════
   NAVBAR
══════════════════════════════════ */
#navbar {
  background: transparent;
  transition:
    background 0.4s,
    box-shadow 0.4s,
    backdrop-filter 0.4s;
}
#navbar.scrolled {
  background: rgba(255, 248, 240, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(26, 18, 48, 0.08);
}
#navbar.scrolled .nav-link {
  color: var(--ink);
}

#navbar.scrolled .nav-logo-text {
  color: var(--ink);
}

/* Nav link */
.nav-link {
  font-family: "Baloo 2", cursive;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--cream);
  padding: 0.5rem 0.875rem;
  border-radius: 0.75rem;
  transition:
    background 0.2s,
    color 0.2s;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--coral);
  border-radius: 99px;
  transition:
    left 0.3s,
    right 0.3s;
}
.nav-link:hover {
  background: var(--coral) / 10;
  color: var(--coral);
}
.nav-link:hover::after {
  left: 12px;
  right: 12px;
}

/* Buttons */
.btn-coral {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Baloo 2", cursive;
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
  background: var(--coral);
  padding: 0.65rem 1.5rem;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.35);
  white-space: nowrap;
}
.btn-coral:hover {
  background: #e5522a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.45);
}

.btn-coral-lg {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Baloo 2", cursive;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  background: var(--coral);
  padding: 0.9rem 2.2rem;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 6px 30px rgba(255, 107, 53, 0.4);
}
.btn-coral-lg:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.5);
}

.btn-ghost-lg {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Baloo 2", cursive;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.9rem 2.2rem;
  border-radius: 99px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition:
    background 0.2s,
    transform 0.2s;
}
.btn-ghost-lg:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

/* Mobile Menu */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 248, 240, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.mobile-menu.open {
  max-height: 600px;
}
.mobile-link {
  display: block;
  font-family: "Baloo 2", cursive;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  transition:
    background 0.2s,
    color 0.2s;
}
.mobile-link:hover {
  background: var(--coral) / 10;
  color: var(--coral);
}

/* Hamburger */
#hamburger.open .ham-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
#hamburger.open .ham-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
#hamburger.open .ham-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero-section {
  background: var(--ink);
}

/* BG blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
}
.blob-1 {
  width: 600px;
  height: 600px;
  background: var(--coral);
  top: -200px;
  left: -200px;
  animation: blob-move 12s ease-in-out infinite;
}
.blob-2 {
  width: 500px;
  height: 500px;
  background: var(--sky);
  top: 30%;
  right: -150px;
  animation: blob-move 15s ease-in-out infinite reverse;
}
.blob-3 {
  width: 400px;
  height: 400px;
  background: var(--mint);
  bottom: -100px;
  left: 40%;
  animation: blob-move 10s ease-in-out infinite 3s;
}

@keyframes blob-move {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -20px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 30px) scale(0.95);
  }
}
.testi-stars {
  display: flex;
  gap: 3px;
}
/* prog-icon box */
.prog-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  margin-bottom: 1rem;
}
/* cic-icon box */
.cic-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 0.875rem;
  flex-shrink: 0;
}
/* about feature icon */
.af-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* stat-emoji */
.stat-emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
/* footer bottom built-with */
.built-with {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
/* Hero swiper / slide */
.heroSwiper {
  border-radius: 0;
}
.hero-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.swiper-slide-active .hero-slide {
  transform: scale(1);
}
.hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(26, 18, 48, 0.85) 0%,
    rgba(26, 18, 48, 0.5) 60%,
    rgba(255, 107, 53, 0.2) 100%
  );
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Baloo 2", cursive;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sun);
  background: rgba(255, 214, 10, 0.15);
  border: 1px solid rgba(255, 214, 10, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 99px;
  animation: fadeInDown 0.8s ease both 0.5s;
}

/* Hero headline */
.hero-headline {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.05;
  color: white;
  animation: fadeInUp 0.8s ease both 0.8s;
}
.text-stroke {
  -webkit-text-stroke: 3px var(--coral);
  color: transparent;
}

/* Splitting.js chars */
.hero-headline .char {
  display: inline-block;
  opacity: 0;
  animation: charIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes charIn {
  from {
    opacity: 0;
    transform: translateY(20px) rotate(5deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

.hero-sub {
  color: rgba(255, 255, 255, 0.75);
  animation: fadeInUp 0.8s ease both 1.2s;
}

/* Hero stats */
.hero-stats {
  animation: fadeInUp 0.8s ease both 1.5s;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.stat-label {
  font-family: "Nunito", sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

/* Hero floating card */
.hero-floating-card {
  position: relative;
  animation: fadeInRight 0.9s ease both 1s;
}
.hfc-inner {
  width: 360px;
  max-width: 90%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xl);
  border: 3px solid rgba(255, 255, 255, 0.1);
}
.hfc-img {
  height: 420px;
  border-radius: var(--radius-lg);
}
.hfc-badge {
  position: absolute;
  font-family: "Baloo 2", cursive;
  font-weight: 700;
  font-size: 0.8rem;
  background: white;
  color: var(--ink);
  padding: 0.5rem 1rem;
  border-radius: 99px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}
.badge-top-left {
  top: 16px;
  left: 16px;
}
.badge-bottom-right {
  bottom: 16px;
  right: 16px;
  color: var(--coral);
}

/* Scroll indicator */
.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 99px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  margin: 0 auto;
}
.scroll-dot {
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 99px;
  animation: scroll-down 2s ease-in-out infinite;
}
@keyframes scroll-down {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(8px);
    opacity: 0.3;
  }
}

/* ══════════════════════════════════
   ANNOUNCE BAR
══════════════════════════════════ */
.announce-bar {
  background: var(--sun);
}
.announce-track {
  display: inline-flex;
  gap: 3rem;
  white-space: nowrap;
  font-family: "Baloo 2", cursive;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════
   SECTION COMMON
══════════════════════════════════ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Baloo 2", cursive;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--coral);
  background: rgba(255, 107, 53, 0.1);
  padding: 0.35rem 1rem;
  border-radius: 99px;
  margin-bottom: 0.75rem;
}
.eyebrow-light {
  color: rgba(255, 107, 53, 0.9);
  background: rgba(255, 107, 53, 0.15);
}

.section-headline {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1rem;
}
.section-sub {
  font-family: "Nunito", sans-serif;
  font-size: 1.05rem;
  color: rgba(26, 18, 48, 0.6);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}
.highlight-coral {
  color: var(--coral);
  position: relative;
}
.highlight-sky {
  color: var(--sky);
}
.highlight-mint {
  color: var(--mint);
}

/* Decorative blobs */
.section-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}
.section-blob-about {
  width: 500px;
  height: 500px;
  background: var(--coral);
  top: 0;
  right: -200px;
}
.section-blob-classes {
  width: 600px;
  height: 600px;
  background: var(--sky);
  bottom: -100px;
  left: -200px;
}
.section-blob-programs {
  width: 600px;
  height: 600px;
  background: var(--plum);
  top: -100px;
  right: -200px;
}
.section-blob-testi {
  width: 500px;
  height: 500px;
  background: var(--sky);
  top: 50%;
  left: -200px;
}
.section-blob-contact {
  width: 600px;
  height: 600px;
  background: var(--coral);
  bottom: -200px;
  right: -200px;
}

/* ══════════════════════════════════
   ABOUT
══════════════════════════════════ */
.about-collage {
  position: relative;
}
.collage-main {
  width: 85%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.collage-main img {
  height: 480px;
}
.collage-inset {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
}
.collage-inset-1 {
  width: 180px;
  height: 150px;
  bottom: 40px;
  right: 0;
}
.collage-inset-2 {
  width: 140px;
  height: 120px;
  top: 30px;
  right: -20px;
}
.collage-badge {
  position: absolute;
  bottom: -10px;
  left: 20px;
  background: white;
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Baloo 2", cursive;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: white;
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  box-shadow: 0 4px 20px rgba(26, 18, 48, 0.06);
  border: 1px solid rgba(26, 18, 48, 0.05);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.about-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(26, 18, 48, 0.1);
}
.af-icon {
  font-size: 1.5rem;
}
.af-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: "Baloo 2", cursive;
}

/* ══════════════════════════════════
   STATS
══════════════════════════════════ */
.stats-section {
  background: linear-gradient(135deg, var(--ink) 0%, #2d1f5e 100%);
}
.stat-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 60%
  );
}
.stat-card:hover {
  transform: translateY(-6px);
}
.stat-emoji {
  font-size: 2rem;
}
.stat-desc {
  font-family: "Nunito", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ══════════════════════════════════
   CLASSES
══════════════════════════════════ */
.class-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(26, 18, 48, 0.07);
  border: 1px solid rgba(26, 18, 48, 0.05);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.class-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.cc-header {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}
.cc-header::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}
.cc-emoji {
  font-size: 2.5rem;
}
.cc-age {
  font-family: "Baloo 2", cursive;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.cc-body {
  padding: 1.5rem;
}
.cc-title {
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.cc-desc {
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  color: var(--ink) / 60;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: rgba(26, 18, 48, 0.65);
}
.cc-list {
  display: flex;

  gap: 10px;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.cc-list li {
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  color: #1a1230b3;
  display: flex;
  gap: 5px;
  background: #c9caca1e;
  border: 1px solid #c9caca3d;
  padding: 5px 13px;
  border-radius: 30px;
  align-items: center;
}
.cc-btn {
  display: inline-flex;
  font-family: "Baloo 2", cursive;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--coral);
  transition: gap 0.2s;
}
.cc-btn:hover {
  gap: 0.5rem;
}

/* Featured class */
.class-card-feature {
  background: linear-gradient(135deg, var(--ink) 0%, #2d1f5e 100%);
}
.cc-header-feature {
  background: rgba(255, 107, 53, 0.2);
}
.class-card-feature .cc-title {
  color: white;
}
.class-card-feature .cc-desc {
  color: rgba(255, 255, 255, 0.6);
}
.class-card-feature .cc-list li {
  color: rgba(255, 255, 255, 0.65);
}
.cc-btn-dark {
  color: white;
}

/* ══════════════════════════════════
   PROGRAMS
══════════════════════════════════ */
.prog-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition:
    background 0.3s,
    transform 0.3s;
  position: relative;
  overflow: hidden;
}
.prog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--sky));
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.prog-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
}
.prog-card:hover::before {
  transform: scaleX(1);
}
.prog-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.prog-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}
.prog-desc {
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.prog-tag {
  display: inline-flex;
  font-family: "Baloo 2", cursive;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sun);
  background: rgba(255, 214, 10, 0.15);
  border: 1px solid rgba(255, 214, 10, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
}

/* ══════════════════════════════════
   WHY US
══════════════════════════════════ */
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 2px 16px rgba(26, 18, 48, 0.05);
  border: 1px solid rgba(26, 18, 48, 0.05);
  transition: transform 0.2s;
}
.why-item:hover {
  transform: translateX(6px);
}
.why-num {
  width: 48px;
  height: 48px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.why-img-wrap {
  position: relative;
}
.why-img {
  width: 100%;
  height: 500px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.why-badge-float {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: white;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Baloo 2", cursive;
}
@media (max-width: 1024px) {
  .why-badge-float {
    left: 12px;
  }
}

/* ══════════════════════════════════
   GALLERY
══════════════════════════════════ */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gi-tall {
  grid-row: span 2;
}
.gi-wide {
  grid-column: span 2;
}
.gi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 18, 48, 0.7) 0%,
    transparent 60%
  );
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.25rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gi-overlay {
  opacity: 1;
}
.gi-overlay span {
  font-family: "Baloo 2", cursive;
  font-weight: 700;
  color: white;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gi-tall,
  .gi-wide {
    grid-row: span 1;
    grid-column: span 1;
  }
  .gallery-masonry .gallery-item {
    height: 160px;
  }
}

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
.testi-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 4px 30px rgba(26, 18, 48, 0.07);
  border: 1px solid rgba(26, 18, 48, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testi-stars {
  font-size: 1rem;
  letter-spacing: 2px;
}
.testi-quote {
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  color: rgba(26, 18, 48, 0.7);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lilita One", cursive;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testi-name {
  font-family: "Baloo 2", cursive;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}
.testi-role {
  font-family: "Nunito", sans-serif;
  font-size: 0.78rem;
  color: rgba(26, 18, 48, 0.5);
}

.testi-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}
.testi-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(26, 18, 48, 0.2);
  border-radius: 99px;
  cursor: pointer;
  transition:
    background 0.2s,
    width 0.3s;
}
.testi-pagination .swiper-pagination-bullet-active {
  background: var(--coral);
  width: 24px;
}

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
.contact-info-card {
  display: flex;
 
  gap: 1rem;
  background: rgba(255, 255, 255, 0.06);
  
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: background 0.2s;
}
.contact-info-card:hover {
  background: rgba(255, 255, 255, 0.1);
}
.cic-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.cic-label {
  font-family: "Baloo 2", cursive;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}
.cic-value {
  font-family: "Nunito", sans-serif;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Form */
.contact-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-label {
  font-family: "Baloo 2", cursive;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.875rem;
  padding: 0.8rem 1rem;
  color: white;
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  transition:
    border-color 0.2s,
    background 0.2s;
  outline: none;
}
.form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.form-input:focus {
  border-color: var(--coral);
  background: rgba(255, 255, 255, 0.12);
}
.form-input option {
  background: var(--ink);
  color: white;
}
.form-textarea {
  resize: vertical;
  min-height: 90px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(6, 214, 160, 0.15);
  border: 1px solid rgba(6, 214, 160, 0.3);
  border-radius: 0.875rem;
  padding: 0.875rem 1rem;
  font-family: "Baloo 2", cursive;
  font-weight: 600;
  color: var(--mint);
  font-size: 0.9rem;
}
.form-success.hidden {
  display: none;
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer-heading {
  font-family: "Baloo 2", cursive;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 1rem;
}
.footer-link {
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.footer-link:hover {
  color: var(--coral);
}
.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition:
    background 0.2s,
    transform 0.2s;
}
.footer-social:hover {
  background: rgba(255, 107, 53, 0.2);
  transform: translateY(-3px);
}

/* ══════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════ */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  will-change: transform, opacity;
}

/* ══════════════════════════════════
   KEYFRAMES
══════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ══════════════════════════════════
   RESPONSIVE TWEAKS
══════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-headline {
    font-size: clamp(2.4rem, 6vw, 4rem);
  }
  .hfc-inner {
    width: 300px;
  }
  .hfc-img {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .hero-stats {
    gap: 1.5rem;
  }
  .collage-inset-1,
  .collage-inset-2 {
    display: none;
  }
  .collage-main {
    width: 100%;
  }
  .collage-main img {
    height: 320px;
  }
  .collage-badge {
    position: static;
    margin-top: 1rem;
  }
  .text-stroke {
    -webkit-text-stroke: 2px var(--coral);
  }
}

@media (max-width: 480px) {
  .section-pad {
    padding: 3.5rem 0;
  }
  .hero-badge {
    font-size: 0.75rem;
  }
  .btn-coral-lg,
  .btn-ghost-lg {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}
