/* ============================================================
   BYC MAKEUP ACADEMY — Main Stylesheet
   Author  : BYC Academy
   Version : 2.0
   ============================================================ */

/* ------------------------------------------------------------ 
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ------------------------------------------------------------ */
:root {
  /* Brand Palette */
  --color-rose:       #e85d8a;
  --color-coral:      #f4714f;
  --color-gold:       #c9a96e;
  --color-cream:      #fdf6f0;
  --color-soft:       #f7e8ee;
  --color-deep:       #1a0a0f;
  --color-mid:        #3d1f2a;
  --color-white:      #ffffff;

  /* Gradients */
  --grad-brand:       linear-gradient(135deg, #e85d8a 0%, #f4714f 50%, #c9a96e 100%);
  --grad-dark:        linear-gradient(135deg, #1a0a0f 0%, #3d1f2a 100%);

  /* Typography */
  --font-display:     'Cormorant Garamond', Georgia, serif;
  --font-body:        'Jost', 'Segoe UI', sans-serif;

  /* Font Sizes (fluid) */
  --fs-xs:   0.7rem;
  --fs-sm:   0.85rem;
  --fs-base: 1rem;
  --fs-md:   1.1rem;
  --fs-lg:   1.4rem;
  --fs-xl:   1.8rem;
  --fs-2xl:  2.4rem;
  --fs-3xl:  clamp(2.2rem, 5vw, 3.8rem);
  --fs-hero: clamp(3rem, 8vw, 5.5rem);

  /* Spacing */
  --sp-xs:   8px;
  --sp-sm:   16px;
  --sp-md:   24px;
  --sp-lg:   40px;
  --sp-xl:   64px;
  --sp-2xl:  100px;

  /* Borders */
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 4px 20px rgba(26,10,15,0.06);
  --shadow-md:  0 8px 32px rgba(232,93,138,0.18);
  --shadow-lg:  0 20px 60px rgba(232,93,138,0.22);
  --shadow-xl:  0 40px 100px rgba(232,93,138,0.22);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.17, 0.67, 0.47, 1.15);
  --trans-base:  0.3s var(--ease-smooth);
  --trans-slow:  0.6s var(--ease-smooth);

  /* Layout */
  --container-max: 1200px;
  --nav-height:    72px;
}

/* ------------------------------------------------------------ 
   2. RESET & BASE
   ------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  line-height: 1.6;
  background-color: var(--color-cream);
  color: var(--color-deep);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
}

/* ------------------------------------------------------------ 
   3. CUSTOM CURSOR
   ------------------------------------------------------------ */
* { cursor: none; }

.cursor {
  width: 10px;
  height: 10px;
  background: var(--color-rose);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
  transition: transform 0.1s var(--ease-smooth);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--color-rose);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.5;
}

/* ------------------------------------------------------------ 
   4. UTILITY CLASSES
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--sp-lg);
}

.section {
  padding-block: var(--sp-2xl);
}

.section--dark {
  background: var(--grad-dark);
  color: var(--color-white);
}

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

.section--cream {
  background: var(--color-cream);
}

/* Section Labels */
.label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-rose);
  margin-bottom: var(--sp-sm);
}

/* Section Headings */
.heading {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 300;
  line-height: 1.08;
  color: var(--color-deep);
  margin-bottom: var(--sp-sm);
}

.heading--white { color: var(--color-white); }

.heading em {
  font-style: italic;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subheading {
  font-size: var(--fs-base);
  font-weight: 300;
  color: var(--color-mid);
  line-height: 1.75;
  max-width: 520px;
}

.subheading--muted { color: rgba(255,255,255,0.55); }

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--trans-slow), transform var(--trans-slow);
}

.reveal--left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity var(--trans-slow), transform var(--trans-slow);
}

.reveal.is-visible,
.reveal--left.is-visible {
  opacity: 1;
  transform: none;
}

/* ------------------------------------------------------------ 
   5. BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--radius-full);
  border: none;
  transition: var(--trans-base), box-shadow var(--trans-base), transform 0.2s var(--ease-spring);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--trans-base);
}

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

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--grad-brand);
  color: var(--color-white);
  box-shadow: 0 8px 32px rgba(232,93,138,0.28);
}

.btn--primary:hover {
  box-shadow: 0 14px 44px rgba(232,93,138,0.45);
}

.btn--outline {
  background: transparent;
  color: var(--color-rose);
  border: 1.5px solid var(--color-rose);
}

.btn--outline:hover {
  background: var(--color-rose);
  color: var(--color-white);
}

.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-white);
}

.btn-group {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
}

/* ------------------------------------------------------------ 
   6. NAVIGATION
   ------------------------------------------------------------ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(253,246,240,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232,93,138,0.1);
  transition: transform 0.4s var(--ease-smooth), box-shadow var(--trans-base);
}

.nav.is-hidden {
  transform: translateY(-100%);
}

.nav.is-scrolled {
  box-shadow: 0 4px 30px rgba(26,10,15,0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__logo {
  height: 46px;
  border-radius: var(--radius-sm);
  transition: opacity var(--trans-base);
}

.nav__logo:hover { opacity: 0.85; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
}

.nav__link {
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-deep);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--trans-base);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--grad-brand);
  transition: width 0.35s var(--ease-smooth);
}

.nav__link:hover {
  color: var(--color-rose);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  background: var(--grad-brand);
  color: var(--color-white) !important;
  padding: 9px 22px;
  border-radius: var(--radius-full);
  font-weight: 400 !important;
  font-size: var(--fs-xs) !important;
  letter-spacing: 0.12em !important;
  transition: opacity var(--trans-base), transform 0.2s var(--ease-spring) !important;
  box-shadow: 0 4px 16px rgba(232,93,138,0.22);
}

.nav__cta::after { display: none !important; }

.nav__cta:hover {
  opacity: 0.88;
  transform: translateY(-1px) !important;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-deep);
  border-radius: 2px;
  transition: all 0.35s var(--ease-smooth);
}

/* ------------------------------------------------------------ 
   7. MOBILE MENU
   ------------------------------------------------------------ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(253,246,240,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 800;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--color-deep);
  line-height: 1;
}

.mobile-nav__link {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 300;
  color: var(--color-deep);
  transition: color var(--trans-base);
}

.mobile-nav__link:hover { color: var(--color-rose); }

/* ------------------------------------------------------------ 
   8. HERO SECTION
   ------------------------------------------------------------ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  padding-block: calc(var(--nav-height) + 40px) 80px;
  position: relative;
  overflow: hidden;
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 78% 40%, rgba(232,93,138,0.13) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(244,113,79,0.1) 0%, transparent 60%);
  z-index: 0;
}

.hero__bg-dots {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(201,169,110,0.18) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-xl);
}

.hero__content {
  animation: fadeUp 0.8s var(--ease-smooth) both;
}

.hero__eyebrow {
  font-size: var(--fs-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-rose);
  margin-bottom: 18px;
  animation: fadeUp 0.7s var(--ease-smooth) 0.1s both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 300;
  line-height: 1.05;
  color: var(--color-deep);
  margin-bottom: var(--sp-md);
  animation: fadeUp 0.7s var(--ease-smooth) 0.22s both;
}

.hero__title em {
  font-style: italic;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: var(--fs-md);
  font-weight: 300;
  color: var(--color-mid);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: var(--sp-lg);
  animation: fadeUp 0.7s var(--ease-smooth) 0.38s both;
}

.hero__actions {
  animation: fadeUp 0.7s var(--ease-smooth) 0.52s both;
}

/* Hero Visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1.1s var(--ease-smooth) 0.3s both;
}

.hero__blob {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: var(--grad-brand);
  opacity: 0.07;
  right: -80px;
}

.hero__logo-image {
  width: min(340px, 90%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

/* ------------------------------------------------------------ 
   9. STATS BAR
   ------------------------------------------------------------ */
.stats {
  background: var(--grad-dark);
  padding-block: var(--sp-sm);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stats__item {
  padding: var(--sp-lg) var(--sp-md);
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stats__item:last-child {
  border-right: none;
}

.stats__number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stats__label {
  font-size: var(--fs-xs);
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ------------------------------------------------------------ 
   10. COURSES SECTION
   ------------------------------------------------------------ */
.courses__header {
  margin-bottom: var(--sp-xl);
}

.courses__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-md);
}

/* Course Card */
.course-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.4s var(--ease-spring),
    box-shadow 0.4s var(--ease-smooth);
  position: relative;
}

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

.course-card__image {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.course-card__image--bridal   { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
.course-card__image--spmu     { background: linear-gradient(135deg, #fff3e0, #ffe0b2); }
.course-card__image--micro    { background: linear-gradient(135deg, #fce4ec, #e1bee7); }

.course-card__emoji {
  font-size: 5rem;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.1));
  transition: transform 0.4s var(--ease-spring);
}

.course-card:hover .course-card__emoji {
  transform: scale(1.1) rotate(-4deg);
}

.course-card__badge {
  position: absolute;
  top: var(--sp-sm);
  right: var(--sp-sm);
  background: var(--grad-brand);
  color: var(--color-white);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.course-card__body {
  padding: var(--sp-lg) var(--sp-lg) var(--sp-md);
}

.course-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--color-deep);
  margin-bottom: var(--sp-xs);
}

.course-card__desc {
  font-size: var(--fs-sm);
  font-weight: 300;
  color: var(--color-mid);
  line-height: 1.65;
  margin-bottom: var(--sp-sm);
}

.course-card__tags {
  display: flex;
  gap: var(--sp-xs);
  flex-wrap: wrap;
  margin-bottom: var(--sp-sm);
}

.tag {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--color-rose);
  background: rgba(232,93,138,0.08);
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.course-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-rose);
  font-size: var(--fs-sm);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: gap var(--trans-base);
}

.course-card__link:hover { gap: 14px; }

/* ------------------------------------------------------------ 
   11. WHY US SECTION
   ------------------------------------------------------------ */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why__features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
  margin-top: var(--sp-lg);
}

/* Feature Item */
.feature {
  display: flex;
  gap: var(--sp-sm);
  align-items: flex-start;
}

.feature__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 24px rgba(232,93,138,0.22);
  transition: transform 0.3s var(--ease-spring);
}

.feature:hover .feature__icon {
  transform: scale(1.08) rotate(-3deg);
}

.feature__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--color-deep);
  margin-bottom: 5px;
}

.feature__desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-mid);
  line-height: 1.65;
}

/* Why Visual */
.why__visual {
  position: relative;
}

.why__blob {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.why__blob--1 {
  top: -40px;
  left: -40px;
  background: rgba(232,93,138,0.18);
}

.why__blob--2 {
  bottom: -40px;
  right: -40px;
  background: rgba(244,113,79,0.15);
}

.why__card {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.why__card-inner {
  aspect-ratio: 4 / 5;
  background: var(--grad-brand);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  color: rgba(255,255,255,0.9);
  text-align: center;
  padding: var(--sp-lg);
}

.why__card-emoji {
  font-size: 4.5rem;
}

.why__card-title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 300;
  line-height: 1.3;
}

.why__card-sub {
  font-size: var(--fs-sm);
  font-weight: 300;
  opacity: 0.75;
}

/* ------------------------------------------------------------ 
   12. GALLERY / MARQUEE
   ------------------------------------------------------------ */
.gallery {
  overflow: hidden;
  padding-block: var(--sp-2xl);
}

.gallery__header {
  margin-bottom: var(--sp-xl);
}

.gallery__track-wrap {
  overflow: hidden;
  margin-inline: calc(-1 * var(--sp-lg));
}

.gallery__track {
  display: flex;
  gap: var(--sp-sm);
  width: max-content;
  animation: marquee 20s linear infinite;
}

.gallery__track:hover {
  animation-play-state: paused;
}

.gallery__item {
  width: 220px;
  height: 220px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.35s var(--ease-spring);
  overflow: hidden;
  position: relative;
}

.gallery__item:hover { transform: scale(1.05); }

.gallery__item--1 { background: linear-gradient(135deg, rgba(232,93,138,0.3), rgba(244,113,79,0.3)); }
.gallery__item--2 { background: linear-gradient(135deg, rgba(201,169,110,0.3), rgba(232,93,138,0.2)); }
.gallery__item--3 { background: linear-gradient(135deg, rgba(244,113,79,0.25), rgba(201,169,110,0.3)); }
.gallery__item--4 { background: linear-gradient(135deg, rgba(232,93,138,0.2), rgba(61,31,42,0.5)); }
.gallery__item--5 { background: linear-gradient(135deg, rgba(201,169,110,0.25), rgba(244,113,79,0.2)); }
.gallery__item--6 { background: linear-gradient(135deg, rgba(244,113,79,0.2), rgba(232,93,138,0.3)); }

.gallery__item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 14px;
  background: linear-gradient(0deg, rgba(0,0,0,0.6), transparent);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* ------------------------------------------------------------ 
   13. PROCESS SECTION
   ------------------------------------------------------------ */
.process__header {
  margin-bottom: var(--sp-xl);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-sm);
  position: relative;
  padding-top: var(--sp-sm);
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 44px;
  right: 44px;
  height: 1px;
  background: var(--grad-brand);
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-inline: var(--sp-sm);
  position: relative;
  z-index: 1;
}

.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-sm);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease-spring);
}

.step:hover .step__number {
  transform: scale(1.1);
}

.step__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--color-deep);
  margin-bottom: var(--sp-xs);
}

.step__desc {
  font-size: var(--fs-sm);
  font-weight: 300;
  color: var(--color-mid);
  line-height: 1.6;
}

/* ------------------------------------------------------------ 
   14. TESTIMONIALS SECTION
   ------------------------------------------------------------ */
.testimonials__header {
  margin-bottom: var(--sp-xl);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-md);
}

/* Testimonial Card */
.testi-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-smooth);
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(232,93,138,0.14);
}

.testi-card__stars {
  position: absolute;
  top: var(--sp-lg);
  right: var(--sp-lg);
  color: var(--color-gold);
  font-size: var(--fs-sm);
  letter-spacing: 2px;
}

.testi-card__quote {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--color-rose);
  opacity: 0.35;
  margin-bottom: var(--sp-xs);
  display: block;
}

.testi-card__text {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-mid);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: var(--sp-md);
}

.testi-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.testi-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.testi-card__name {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--color-deep);
}

.testi-card__role {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--color-rose);
  letter-spacing: 0.06em;
}

/* ------------------------------------------------------------ 
   15. ENROLL / CONTACT SECTION
   ------------------------------------------------------------ */
.enroll {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.enroll__bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(232,93,138,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.enroll__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-inline: auto;
}

.enroll__subheading {
  color: rgba(255,255,255,0.55);
  margin-inline: auto;
  margin-bottom: var(--sp-lg);
}

/* Enroll Form */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  max-width: 440px;
  margin-inline: auto;
}

.form__control {
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.07);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  outline: none;
  transition: border-color var(--trans-base);
  -webkit-appearance: none;
}

.form__control::placeholder {
  color: rgba(255,255,255,0.35);
}

.form__control:focus {
  border-color: var(--color-rose);
}

.form__control option {
  background: var(--color-deep);
  color: var(--color-white);
}

.form__submit {
  background: var(--grad-brand);
  color: var(--color-white);
  padding: 16px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: none;
  transition: opacity var(--trans-base), transform 0.2s var(--ease-spring), box-shadow var(--trans-base);
  box-shadow: 0 8px 32px rgba(232,93,138,0.3);
  margin-top: var(--sp-xs);
}

.form__submit:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(232,93,138,0.45);
}

.form__submit.is-success {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  box-shadow: 0 8px 24px rgba(39,174,96,0.3);
  pointer-events: none;
}

/* ------------------------------------------------------------ 
   16. LOCATION SECTION
   ------------------------------------------------------------ */
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

.location__info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  margin-top: var(--sp-md);
}

.loc-item {
  display: flex;
  gap: var(--sp-sm);
  align-items: flex-start;
}

.loc-item__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(232,93,138,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background var(--trans-base), transform 0.3s var(--ease-spring);
}

.loc-item:hover .loc-item__icon {
  background: rgba(232,93,138,0.18);
  transform: scale(1.05);
}

.loc-item__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--color-deep);
  margin-bottom: 3px;
}

.loc-item__text {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-mid);
  line-height: 1.6;
}

.map-card {
  background: linear-gradient(135deg, var(--color-soft), rgba(232,93,138,0.1));
  border-radius: var(--radius-xl);
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  border: 2px dashed rgba(232,93,138,0.25);
  transition: border-color var(--trans-base);
}

.map-card:hover {
  border-color: rgba(232,93,138,0.45);
}

.map-card__emoji { font-size: 3.5rem; }

.map-card__text {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 300;
  color: var(--color-mid);
  text-align: center;
  padding-inline: var(--sp-sm);
}

/* ------------------------------------------------------------ 
   17. FOOTER
   ------------------------------------------------------------ */
.footer {
  background: var(--color-mid);
  color: rgba(255,255,255,0.6);
  padding-top: var(--sp-xl);
  padding-bottom: var(--sp-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--sp-xl);
  margin-bottom: var(--sp-xl);
}

.footer__brand-logo {
  height: 44px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--sp-sm);
}

.footer__brand-desc {
  font-size: var(--fs-sm);
  font-weight: 300;
  line-height: 1.7;
  max-width: 260px;
}

.footer__col-title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--sp-sm);
}

.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col-link {
  font-size: var(--fs-sm);
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  transition: color var(--trans-base);
}

.footer__col-link:hover { color: var(--color-rose); }

/* Footer Bottom */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--sp-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

.footer__copy {
  font-size: 0.8rem;
  font-weight: 300;
}

.social-links {
  display: flex;
  gap: var(--sp-sm);
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  transition: all var(--trans-base);
}

.social-link:hover {
  background: var(--color-rose);
  border-color: var(--color-rose);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* ------------------------------------------------------------ 
   18. WHATSAPP FLOAT BUTTON
   ------------------------------------------------------------ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
  z-index: 500;
  transition: transform var(--trans-base), box-shadow var(--trans-base);
  animation: pulsate 2.5s ease infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37,211,102,0.55);
  animation: none;
}

/* ------------------------------------------------------------ 
   19. KEYFRAME ANIMATIONS
   ------------------------------------------------------------ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes pulsate {
  0%, 100% { box-shadow: 0 8px 28px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 8px 28px rgba(37,211,102,0.7), 0 0 0 14px rgba(37,211,102,0.1); }
}

/* ------------------------------------------------------------ 
   20. RESPONSIVE — TABLET (≤ 960px)
   ------------------------------------------------------------ */
@media (max-width: 960px) {

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

  .hero__visual { display: none; }

  .hero__title { font-size: clamp(2.6rem, 9vw, 4rem); }

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

  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-lg);
  }

  .process__steps::before { display: none; }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
  }

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

  .stats__item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .stats__item:last-child { border-bottom: none; }
}

/* ------------------------------------------------------------ 
   21. RESPONSIVE — MOBILE (≤ 640px)
   ------------------------------------------------------------ */
@media (max-width: 640px) {

  :root {
    --sp-2xl: 72px;
    --sp-xl:  48px;
    --sp-lg:  24px;
  }

  .container { padding-inline: var(--sp-sm); }

  .nav__menu { display: none; }
  .nav__hamburger { display: flex; }

  .nav__inner { padding-inline: var(--sp-sm); }

  .hero { padding-inline: var(--sp-sm); }

  .stats { padding-inline: var(--sp-sm); }

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

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
}
