@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --color-primary: #581c87; /* Purple */
  --color-secondary: #7e22ce; /* Lighter purple */
  --color-accent: #b45309; /* Gold/Amber darker for WCAG AA contrast against light backgrounds */
  --color-accent-light: #d97706; /* Medium gold */
  --color-text: #0f172a; /* Ultra-dark slate gray for main text (contrast > 16:1) */
  --color-text-muted: #334155; /* Slate 700 for secondary text (contrast > 8.5:1, passes WCAG AA & AAA) */
  --color-bg: #faf5ff; /* Very soft purple */
  
  --font-heading: 'Cinzel', serif; /* Mystical, elegant serif similar to the logo font */
  --font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: #fdfcff;
  background-image: 
    radial-gradient(circle at 0% 0%, rgba(233, 213, 255, 0.7) 0%, transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(254, 240, 138, 0.5) 0%, transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(216, 180, 254, 0.6) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(253, 230, 138, 0.4) 0%, transparent 40%);
  background-attachment: fixed;
  color: var(--color-text);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-accent);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(88, 28, 135, 0.08); /* Soft purple shadow */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 0.9rem;
}

.btn-primary {
  background: linear-gradient(135deg, #6d28d9 0%, #4c1d95 100%);
  color: #ffffff;
  border: 1px solid rgba(192, 132, 252, 0.4);
  box-shadow: 0 4px 18px rgba(109, 40, 217, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #7e22ce 0%, #581c87 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(147, 51, 234, 0.5);
  border-color: rgba(233, 213, 255, 0.75);
}

.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.btn-outline:hover {
  background: rgba(234, 179, 8, 0.1);
  transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}
.counter {
  font-size: 16px;
  padding: 5px 10px;
  border-radius: 5px;
  color: var(--accent);
  background: var(--accent-bg);
  border: 2px solid transparent;
  transition: border-color 0.3s;
  margin-bottom: 24px;

  &:hover {
    border-color: var(--accent-border);
  }
  &:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
  }
}

.hero {
  position: relative;

  .base,
  .framework,
  .vite {
    inset-inline: 0;
    margin: 0 auto;
  }

  .base {
    width: 170px;
    position: relative;
    z-index: 0;
  }

  .framework,
  .vite {
    position: absolute;
  }

  .framework {
    z-index: 1;
    top: 34px;
    height: 28px;
    transform: perspective(2000px) rotateZ(300deg) rotateX(44deg) rotateY(39deg)
      scale(1.4);
  }

  .vite {
    z-index: 0;
    top: 107px;
    height: 26px;
    width: auto;
    transform: perspective(2000px) rotateZ(300deg) rotateX(40deg) rotateY(39deg)
      scale(0.8);
  }
}

#center {
  display: flex;
  flex-direction: column;
  gap: 25px;
  place-content: center;
  place-items: center;
  flex-grow: 1;

  @media (max-width: 1024px) {
    padding: 32px 20px 24px;
    gap: 18px;
  }
}

#next-steps {
  display: flex;
  border-top: 1px solid var(--border);
  text-align: left;

  & > div {
    flex: 1 1 0;
    padding: 32px;
    @media (max-width: 1024px) {
      padding: 24px 20px;
    }
  }

  .icon {
    margin-bottom: 16px;
    width: 22px;
    height: 22px;
  }

  @media (max-width: 1024px) {
    flex-direction: column;
    text-align: center;
  }
}

#docs {
  border-right: 1px solid var(--border);

  @media (max-width: 1024px) {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

#next-steps ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 8px;
  margin: 32px 0 0;

  .logo {
    height: 18px;
  }

  a {
    color: var(--text-h);
    font-size: 16px;
    border-radius: 6px;
    background: var(--social-bg);
    display: flex;
    padding: 6px 12px;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: box-shadow 0.3s;

    &:hover {
      box-shadow: var(--shadow);
    }
    .button-icon {
      height: 18px;
      width: 18px;
    }
  }

  @media (max-width: 1024px) {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;

    li {
      flex: 1 1 calc(50% - 8px);
    }

    a {
      width: 100%;
      justify-content: center;
      box-sizing: border-box;
    }
  }
}

#spacer {
  height: 88px;
  border-top: 1px solid var(--border);
  @media (max-width: 1024px) {
    height: 48px;
  }
}

.ticks {
  position: relative;
  width: 100%;

  &::before,
  &::after {
    content: '';
    position: absolute;
    top: -4.5px;
    border: 5px solid transparent;
  }

  &::before {
    left: 0;
    border-left-color: var(--border);
  }
  &::after {
    right: 0;
    border-right-color: var(--border);
  }
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 1000;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(243, 232, 255, 0.94);
  backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  box-shadow: 0 4px 20px rgba(192, 132, 252, 0.25);
  border-bottom: 1px solid rgba(192, 132, 252, 0.35);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  transition: height 0.4s ease, transform 0.3s ease, filter 0.3s ease;
}

.navbar.scrolled .navbar-logo-img {
  height: 52px;
}

.logo:hover .navbar-logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 0 12px rgba(217, 119, 6, 0.4));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a:hover {
  color: var(--color-accent);
}

/* Hamburger button hidden on desktop */
.hamburger-btn {
  display: none;
}

/* Mobile menu hidden on desktop */
.mobile-menu {
  display: none;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .navbar-logo-img {
    height: 46px;
  }
  .navbar.scrolled .navbar-logo-img {
    height: 40px;
  }

  /* Hamburger toggle button */
  .hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
  }

  .hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 4px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Animated X state */
  .hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
    background-color: #fde047; /* Bright gold on dark overlay */
  }

  .hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }

  .hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
    background-color: #fde047;
  }

  /* Full-screen Glassmorphic Mobile Drawer */
  .mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 7, 26, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    align-items: center;
    justify-content: center;
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
    transform: translateY(-15px);
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.2rem;
    padding: 0;
  }

  .mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 2px;
    transition: color 0.3s ease, transform 0.3s ease;
  }

  .mobile-nav-links a:hover,
  .mobile-nav-links a:active {
    color: #fde047;
  }

  .mobile-contact-btn {
    margin-top: 1rem;
    padding: 0.85rem 2.2rem !important;
    font-size: 1.05rem !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #6d28d9 0%, #4c1d95 100%) !important;
    border: 1px solid rgba(233, 213, 255, 0.4) !important;
    box-shadow: 0 4px 18px rgba(109, 40, 217, 0.4);
  }
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(254, 240, 138, 0.15) 0%, rgba(192, 132, 252, 0.25) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
  text-shadow: 0 0 20px rgba(234, 179, 8, 0.3);
}

.hero-title-light {
  font-weight: 300;
  color: var(--color-text);
  font-size: 3.5rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 80%;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
}

.hero-graphics {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Flower of Life Animation */
.flower-of-life-container {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float 6s ease-in-out infinite;
}

.flower-of-life-svg {
  width: 100%;
  height: 100%;
  animation: spinSlow 30s linear infinite;
  filter: drop-shadow(0 0 15px rgba(217, 119, 6, 0.4));
}

.flower-of-life-svg circle {
  fill: transparent;
  stroke: var(--color-accent);
  stroke-width: 1.5;
  transition: all 0.5s ease;
  transform-origin: center;
  animation: breathe 8s ease-in-out infinite alternate;
}

@keyframes spinSlow {
  100% { transform: rotate(360deg); }
}

@keyframes breathe {
  0% { transform: scale(0.95); opacity: 0.8; stroke-width: 1; }
  100% { transform: scale(1.05); opacity: 1; stroke-width: 2.5; stroke: var(--color-accent-light); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--color-text-muted);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.wheel {
  width: 4px;
  height: 8px;
  background-color: var(--color-accent);
  border-radius: 2px;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(15px); opacity: 0; }
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-subtitle {
    margin: 0 auto 2.5rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-graphics {
    display: none; /* Hide graphics on small screens to save space */
  }
}
.section-padding {
  padding: 6rem 0;
}

.about {
  background-color: var(--color-bg);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="%23d4af37" opacity="0.1"/></svg>') repeat;
  opacity: 0.5;
  pointer-events: none;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(126, 34, 206, 0.1) 0%, rgba(88, 28, 135, 0.15) 100%);
  border: 1px solid rgba(234, 179, 8, 0.2);
  position: relative;
  overflow: hidden;
}

.real-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, transparent, var(--color-accent), transparent);
  animation: borderGlow 3s linear infinite;
  z-index: -1;
}

@keyframes borderGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.image-placeholder {
  font-size: 5rem;
  animation: pulse 2s infinite alternate;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-text-muted);
}

@keyframes pulse {
  from { transform: scale(0.9); opacity: 0.7; }
  to { transform: scale(1.1); opacity: 1; }
}

.section-title {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.title-divider {
  width: 60px;
  height: 3px;
  background-color: var(--color-accent);
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.about-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.about-text {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(88, 28, 135, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  font-family: var(--font-heading);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    height: 350px;
    order: -1;
  }
  
  .about-stats {
    justify-content: space-between;
  }
}
.courses {
  background: #fdfbf7;
  color: #1e293b;
  position: relative;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
  padding: 1.5rem 0;
  width: 100%;
}

.course-card-clean {
  background: #ffffff;
  border: 1px solid rgba(192, 132, 252, 0.35);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 10px 30px rgba(88, 28, 135, 0.06);
}

.course-card-clean:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(88, 28, 135, 0.15);
  border-color: #6d28d9;
}

/* Top: Clean, crisp photography without dark overlays blocking the image */
.course-card-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f3e8ff;
}

.course-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.course-card-clean:hover .course-card-img {
  transform: scale(1.06);
}

/* Online Modality Banner Strip */
.courses-online-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin: -1.5rem auto 3.2rem;
  max-width: 900px;
  background: #f3e8ff;
  border: 1px solid rgba(147, 51, 234, 0.3);
  padding: 1rem 1.8rem;
  border-radius: 999px;
  box-shadow: 0 4px 15px rgba(88, 28, 135, 0.05);
}

.online-feature-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #3b0764;
}

.online-feature-icon {
  color: #6d28d9;
  font-size: 1.1rem;
}

/* Tag on top left of course image */
.course-online-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  color: #4c1d95;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

/* Clean structured badge on top right of the clean image */
.course-number-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #3b0764;
  border: 1px solid rgba(253, 224, 71, 0.6);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.badge-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: #fef08a;
}

.badge-num {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
}

/* Bottom: Crisp, clear white editorial body */
.course-card-body {
  padding: 1.8rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.course-title {
  font-family: var(--font-heading);
  font-size: 1.42rem;
  font-weight: 700;
  color: #3b0764;
  line-height: 1.35;
  margin-bottom: 0.8rem;
}

.course-desc {
  font-size: 0.96rem;
  color: #334155;
  line-height: 1.65;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

.course-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
}

.btn-course-detail {
  padding: 0.8rem 1.6rem;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 999px;
  text-align: center;
}

@media (max-width: 900px) {
  .courses-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.services {
  background: #fdfbf7;
  color: #1e293b;
  position: relative;
}

.services-teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
  margin-bottom: 3.8rem;
}

.service-pillar-card {
  background: #ffffff;
  border: 1px solid rgba(192, 132, 252, 0.35);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 10px 28px rgba(88, 28, 135, 0.05);
}

.service-pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(88, 28, 135, 0.14);
  border-color: #6d28d9;
}

.pillar-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f3e8ff;
}

.pillar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-pillar-card:hover .pillar-img {
  transform: scale(1.06);
}

.pillar-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: #3b0764;
  color: #fef08a;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.pillar-body {
  padding: 1.8rem 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #3b0764;
  line-height: 1.3;
  margin-bottom: 0.85rem;
}

.pillar-desc {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.65;
  margin-bottom: 1.6rem;
  flex-grow: 1;
}

.pillar-price-badge {
  font-size: 0.88rem;
  font-weight: 700;
  color: #6d28d9;
  background: #f3e8ff;
  border: 1px solid rgba(192, 132, 252, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  text-align: center;
}

.services-cta-center {
  text-align: center;
}

.btn-explore-catalog {
  padding: 1rem 2.4rem;
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 8px 25px rgba(109, 40, 217, 0.35);
}

@media (max-width: 900px) {
  .services-teaser-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.services-full-page {
  background: #fdfbf7;
  color: #1e293b;
  min-height: 100vh;
  padding-top: 115px;
  padding-bottom: 6rem;
}

.services-full-nav {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-back-services {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid rgba(109, 40, 217, 0.3);
  color: #4c1d95;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(88, 28, 135, 0.05);
}

.btn-back-services:hover {
  background: #f3e8ff;
  border-color: #6d28d9;
  transform: translateX(-4px);
}

.services-full-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 4.5rem;
}

.services-full-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: #3b0764;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.services-full-intro {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.75;
}

/* Category Pill Navigation Bar */
.services-category-pills {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2.2rem;
  margin-bottom: 4.2rem;
}

.service-category-pill-btn {
  background: #3b0764;
  border: 1.5px solid rgba(192, 132, 252, 0.45);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 700;
  padding: 0.72rem 1.25rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.28s ease;
  box-shadow: 0 4px 14px rgba(59, 7, 100, 0.25);
  white-space: nowrap;
}

.service-category-pill-btn:hover {
  background: #f3e8ff;
  color: #3b0764;
  border-color: #9333ea;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 7, 100, 0.18);
}

/* Category Section Header */
.services-full-group {
  margin-bottom: 5rem;
  scroll-margin-top: 130px;
}

.services-group-header {
  margin-bottom: 2.4rem;
  border-bottom: 2px solid rgba(192, 132, 252, 0.35);
  padding-bottom: 1rem;
}

.services-group-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  color: #3b0764;
  margin-bottom: 0.35rem;
}

.services-group-subtitle {
  font-size: 1.05rem;
  color: #475569;
}

/* 4-column grid for compact, scannable institutional cards */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

.service-full-card {
  background: #ffffff;
  border: 1px solid rgba(192, 132, 252, 0.35);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 8px 24px rgba(88, 28, 135, 0.05);
}

.service-full-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(88, 28, 135, 0.14);
  border-color: #6d28d9;
}

/* Institutional Emblem Header with Tree Logo */
.service-emblem-header {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #2e1065 0%, #4c1d95 100%);
  padding: 1.6rem 1rem 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid rgba(253, 224, 71, 0.35);
}

.service-emblem-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
  transition: transform 0.4s ease;
}

.service-full-card:hover .service-emblem-logo {
  transform: scale(1.08);
}

.service-full-price-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  background: #1e1b4b;
  border: 1px solid rgba(253, 224, 71, 0.7);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: #fef08a;
}

/* Body of Card */
.service-full-body {
  padding: 1.35rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-full-card-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: #3b0764;
  line-height: 1.35;
  margin-bottom: 0.65rem;
}

.service-full-card-desc {
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 1.4rem;
  flex-grow: 1;
}

.service-full-footer {
  margin-top: auto;
}

.btn-service-full-book {
  width: 100%;
  text-align: center;
  padding: 0.72rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 999px;
}

@media (max-width: 1200px) {
  .services-full-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
}

@media (max-width: 650px) {
  .services-full-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 850px) {
  .services-category-pills {
    flex-wrap: wrap;
  }
}
.contact {
  position: relative;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
}

.contact-info {
  padding: 4rem;
  background: linear-gradient(135deg, rgba(126, 34, 206, 0.1) 0%, rgba(88, 28, 135, 0.15) 100%);
}

.contact-desc {
  color: var(--color-text-muted);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-icon {
  background: #f3e8ff;
  border: 1px solid rgba(147, 51, 234, 0.25);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #4c1d95;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--color-text);
}

.contact-item p {
  color: var(--color-text-muted);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  color: var(--color-text);
}

.social-btn:hover {
  background: linear-gradient(135deg, #6d28d9 0%, #4c1d95 100%);
  color: #ffffff;
  border-color: rgba(233, 213, 255, 0.6);
  transform: translateY(-3px);
}

.contact-form-container {
  padding: 4rem;
  background: rgba(255, 255, 255, 0.6);
}

.form-title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--color-text);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(88, 28, 135, 0.2);
  border-radius: 8px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: #fff;
}

.form-group select option {
  background: var(--color-bg);
  color: var(--color-text);
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  margin-top: 1rem;
}

@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .contact-info,
  .contact-form-container {
    padding: 2.5rem;
  }
}
.magic-cursor-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.sparkle {
  position: absolute;
  pointer-events: none;
  animation: sparkleAnim 0.8s ease-out forwards;
}

.sparkle svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 5px var(--color-accent));
}

@keyframes sparkleAnim {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0) rotate(0deg);
  }
  20% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(45deg);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 50px) scale(0) rotate(90deg); /* Falls slightly */
  }
}
.whatsapp-float-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.whatsapp-float-tooltip {
  background: #ffffff;
  color: #1e293b;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.whatsapp-float-container:hover .whatsapp-float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  cursor: pointer;
  border: 2px solid #ffffff;
}

.whatsapp-float-btn::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.6;
  animation: whatsappPulse 2.2s infinite ease-out;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.whatsapp-float-btn:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.7);
}

.whatsapp-float-icon {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

@media (max-width: 640px) {
  .whatsapp-float-container {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-float-btn {
    width: 54px;
    height: 54px;
  }
  
  .whatsapp-float-icon {
    width: 28px;
    height: 28px;
  }
}
