:root {
  --bg: #f8f0ff;
  --surface: #faf6ff;
  --ink: #2d1b4a;
  --muted: #6b4a8f;
  --primary: #be29ec;
  --primary-strong: #9521b3;
  --accent: #d896ff;
  --ring: rgba(190, 41, 236, 0.25);
  --radius: 18px;
  --shadow: 0 18px 40px rgba(190, 41, 236, 0.12);
  --shadow-deep: 0 28px 54px rgba(190, 41, 236, 0.16);
  --glass: rgba(250, 246, 255, 0.85);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  position: relative;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(190, 41, 236, 0.18), transparent 38%),
    radial-gradient(circle at 100% 20%, rgba(216, 150, 255, 0.14), transparent 42%),
    var(--bg);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 35%, rgba(255, 255, 255, 0.26), transparent 38%),
    radial-gradient(circle at 78% 62%, rgba(255, 255, 255, 0.2), transparent 40%);
  mix-blend-mode: soft-light;
  z-index: 0;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section {
  padding: 72px 0;
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.2;
  margin-top: 0;
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 20px;
}

.hero {
  min-height: 100dvh;
  position: relative;
  background-image: linear-gradient(120deg, rgba(20, 14, 8, 0.78), rgba(43, 19, 14, 0.6)), url("./assets/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  color: #fff7ee;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(13, 10, 8, 0.45));
}

.top-nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  width: auto;
  height: clamp(120px, 13vw, 205px);
  max-width: min(700px, 86vw);
}

.nav-cta {
  background: transparent;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 10px 16px;
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
  transition: background-color 220ms ease, color 220ms ease;
}

.nav-cta:hover {
  background: #fff7ee;
  color: #2f1a13;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 18px 0 42px;
  max-width: 760px;
}

.eyebrow {
  display: inline-block;
  background: rgba(255, 247, 238, 0.18);
  border: 1px solid rgba(255, 247, 238, 0.42);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2rem, 4.2vw, 4rem);
  margin-bottom: 18px;
}

.subheadline {
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  margin-bottom: 12px;
  color: #e8bfff;
}

.hero-body {
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, var(--primary), #d896ff);
  color: #fff;
  border: 0;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  padding: 14px 24px;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(190, 41, 236, 0.3);
  transition: transform 200ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(190, 41, 236, 0.42);
}

.about {
  position: relative;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}


.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 26px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-copy {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 36px;
  background: linear-gradient(150deg, rgba(250, 246, 255, 0.95), rgba(239, 187, 255, 0.65));
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  box-shadow: var(--shadow-deep);
}

.about-copy::before,
.about-copy::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.about-copy::before {
  inset: -30% -18% auto auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(190, 41, 236, 0.16) 0%, rgba(190, 41, 236, 0) 72%);
}

.about-copy::after {
  inset: auto auto -28% -14%;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 150, 255, 0.12) 0%, rgba(216, 150, 255, 0) 72%);
}

.about-copy h2,
.about-copy p {
  position: relative;
  z-index: 1;
}

.about-copy h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  margin-bottom: 14px;
}

.about-copy ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  display: grid;
  gap: 10px;
  font-weight: 600;
}

.about-media {
  margin: 0;
  align-self: stretch;
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 34px rgba(190, 41, 236, 0.15);
}

.features {
  background:
    linear-gradient(180deg, rgba(250, 246, 255, 0.7), rgba(250, 246, 255, 0.95)),
    repeating-linear-gradient(-45deg, rgba(190, 41, 236, 0.04) 0 6px, rgba(255, 255, 255, 0) 6px 18px);
}

.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  perspective: 1200px;
}

.feature-card {
  background: linear-gradient(160deg, rgba(253, 248, 255, 0.9), rgba(246, 228, 255, 0.8));
  border: 1px solid rgba(216, 150, 255, 0.5);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-deep);
  transform: translateZ(0) rotateX(0) rotateY(0);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.feature-card:hover {
  transform: translateY(-8px) rotateX(4deg) rotateY(-3deg);
  box-shadow: 0 34px 56px rgba(17, 13, 10, 0.28);
}

.feature-card h3 {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1rem;
  margin: 0;
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(190, 41, 236, 0.12);
  margin-bottom: 12px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  perspective: 1000px;
}

.column-card {
  background: linear-gradient(165deg, rgba(253, 251, 255, 0.92), rgba(239, 215, 255, 0.82));
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-deep);
  border: 1px solid rgba(216, 150, 255, 0.5);
  transition: transform 240ms ease;
}

.column-card:hover {
  transform: translateY(-6px) rotateX(3deg);
}

.column-card h3 {
  margin-bottom: 10px;
}

.column-card ul {
  margin: 0;
  padding-left: 18px;
}

.event-showcase {
  background:
    radial-gradient(circle at 15% 20%, rgba(190, 41, 236, 0.12), transparent 35%),
    linear-gradient(145deg, #f0d9ff, #faf6ff);
}

.event-showcase p {
  color: var(--muted);
}

.carousel {
  margin-top: 24px;
  position: relative;
  background: transparent;
  border-radius: 24px;
  padding: 0;
  box-shadow: none;
}

.carousel-track {
  position: relative;
  min-height: 560px;
}

.carousel-item {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 400ms ease;
  margin: 0;
}

.carousel-item.active {
  opacity: 1;
  position: relative;
}

.carousel-item img {
  width: min(360px, 88vw);
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 10px 26px rgba(20, 14, 10, 0.16),
    0 28px 54px rgba(17, 13, 10, 0.28);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  background: rgba(31, 27, 23, 0.7);
  color: #fff;
  cursor: pointer;
  z-index: 2;
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

.testimonials-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  background: linear-gradient(180deg, rgba(250, 246, 255, 0.54), rgba(239, 215, 255, 0.36));
  border: 1px solid rgba(216, 150, 255, 0.4);
  border-radius: 24px;
  box-shadow: var(--shadow-deep);
  padding: 26px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #e8d5ff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 8px 22px rgba(190, 41, 236, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(190, 41, 236, 0.15);
}

.review-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.84rem;
  color: #fff;
  background: linear-gradient(145deg, #be29ec, #9521b3);
}

.reviewer-name {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #202124;
}

.review-meta {
  margin: 2px 0 0;
  color: #5f6368;
  font-size: 0.82rem;
  line-height: 1.2;
}

.google-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: #be29ec;
  border: 1px solid #e8d5ff;
  border-radius: 999px;
  padding: 4px 8px;
  background: #faf6ff;
}

.review-stars {
  margin: 6px 0 8px;
  color: #f9ab00;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.review-text {
  margin: 0;
  color: #3c4043;
  font-size: 0.95rem;
  line-height: 1.5;
}

.gallery-wrap {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.gallery-scroll-container {
  position: relative;
  width: 100%;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  background: rgba(31, 27, 23, 0.7);
  color: #fff;
  cursor: pointer;
  z-index: 2;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background-color 200ms ease;
}

.gallery-btn:hover {
  background: var(--primary);
}

.gallery-btn.prev {
  left: 10px;
}

.gallery-btn.next {
  right: 10px;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 240px;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 24px; /* Space for scrollbar */
  scroll-behavior: smooth;
  width: 100%;
}

.gallery-grid::-webkit-scrollbar {
  height: 8px;
}

.gallery-grid::-webkit-scrollbar-track {
  background: rgba(190, 41, 236, 0.08);
  border-radius: 10px;
}

.gallery-grid::-webkit-scrollbar-thumb {
  background: rgba(190, 41, 236, 0.4);
  border-radius: 10px;
}

.gallery-grid::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

.gallery-grid img {
  border-radius: 14px;
  height: 200px;
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 24px rgba(17, 13, 10, 0.14);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.gallery-grid img:hover {
  transform: translateY(-6px) scale(1.035);
  box-shadow: 0 26px 38px rgba(17, 13, 10, 0.2);
}

.careers {
  background:
    radial-gradient(circle at 90% 10%, rgba(190, 41, 236, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(190, 41, 236, 0.08), rgba(190, 41, 236, 0));
}

.careers p {
  color: var(--muted);
}

.career-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.career-tags span {
  background: linear-gradient(180deg, rgba(250, 246, 255, 0.98), rgba(239, 215, 255, 0.92));
  border: 1px solid rgba(216, 150, 255, 0.6);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 600;
  box-shadow: 0 8px 16px rgba(190, 41, 236, 0.08);
  transition: transform 220ms ease;
}

.career-tags span:hover {
  transform: translateY(-3px);
}

.career-cta-wrap {
  margin-top: 22px;
}

.form-intro {
  color: var(--muted);
}

.form-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
  z-index: 1000;
}

.form-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.form-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 8, 0.64);
}

.form-modal-content {
  position: relative;
  width: min(540px, 90%);
  max-height: 88vh;
  overflow-y: auto;
  border-radius: 18px;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.72);
  padding: 24px;
  box-shadow: 0 18px 45px rgba(12, 10, 8, 0.35);
  backdrop-filter: blur(10px);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: 0;
  background: transparent;
  color: #3e261d;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.enrollment-form {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  gap: 12px;
  max-width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 500px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.enrollment-form label {
  font-weight: 700;
  display: none; /* Hidden visually, relying on placeholders for compact design */
}

.enrollment-form input,
.enrollment-form textarea {
  width: 100%;
  border: 1px solid rgba(31, 27, 23, 0.2);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  font-size: 0.95rem;
}

.enrollment-form textarea {
  resize: vertical;
  min-height: 56px;
}

.enrollment-form input:focus,
.enrollment-form textarea:focus {
  border-color: var(--primary);
  outline: 3px solid var(--ring);
}

.form-status {
  max-width: 100%;
  margin-bottom: 14px;
  min-height: 22px;
  font-weight: 600;
}

.form-status.success {
  color: #16623a;
}

.form-status.error {
  color: #8d1e11;
}

.footer {
  background: #1e1915;
  color: #f3e8da;
  padding: 62px 0;
  position: relative;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 320px;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 10px, transparent 10px 20px);
  pointer-events: none;
}

.footer p {
  color: #d8c4ae;
  max-width: 860px;
}

.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-info {
  flex: 1 1 500px;
}

.footer-contact {
  flex: 1 1 300px;
}

.footer-contact h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #fff;
}

.footer-contact h4 {
  font-size: 1.1rem;
  margin-top: 18px;
  margin-bottom: 8px;
  color: #fff;
  font-family: inherit;
}

.footer-contact p {
  margin: 0 0 10px;
}

.footer-contact a {
  color: #d8c4ae;
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-contact a:hover {
  color: #fff;
  text-decoration: underline;
}

.floating-actions {
  position: fixed;
  left: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1001;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.float-btn:hover {
  transform: scale(1.1) translateY(-4px);
  color: #fff;
  box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}

.float-whatsapp {
  background-color: #25D366;
}

.float-whatsapp:hover {
  background-color: #20BA56;
}

.float-call {
  background-color: #1a73e8;
}

.float-call:hover {
  background-color: #155cb8;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 800px) {
  .hero {
    min-height: 100dvh;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .carousel-track {
    min-height: 430px;
  }

  .carousel-item img {
    width: min(280px, 82vw);
  }

  .top-nav {
    flex-direction: row;
    gap: 12px;
    align-items: center;
  }

  .brand img {
    height: clamp(92px, 24vw, 150px);
    max-width: 72vw;
  }

  .hero-content {
    padding: 12px 0 32px;
  }

  .form-modal-content {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
