/* =============================================
   WISDOMWEB — styles.css
   ============================================= */

/* ===== VARIABLES ===== */
:root {
  --primary:        #7C3AED;
  --primary-dark:   #6D28D9;
  --primary-light:  #EDE9FE;
  --accent:         #F97316;
  --accent-light:   #FFF7ED;
  --text-dark:      #1F2937;
  --text-light:     #6B7280;
  --bg:             #FFFFFF;
  --bg-alt:         #F9FAFB;
  --border:         #E5E7EB;
  --whatsapp:       #25D366;
  --radius-btn:     50px;
  --shadow-sm:      0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow:         0 4px 12px rgba(0,0,0,.08);
  --shadow-lg:      0 10px 24px rgba(0,0,0,.10);
  --shadow-xl:      0 20px 40px rgba(0,0,0,.12);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 80px;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: 1280px;
  padding: 0 clamp(20px, 5vw, 80px);
  margin: 0 auto;
}

.section { padding: clamp(60px, 8vw, 120px) 0; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.text-accent { color: var(--accent); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 50px;
  border: none;
  background-image: url('assets/images/Button1.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}
.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid #C4B5FD;
  background: #EDE9FE;
  color: #7C3AED;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-secondary:hover {
  background: #7C3AED;
  color: white;
  border-color: #7C3AED;
  transform: translateY(-1px);
}

.btn-large  { padding: 16px 36px; font-size: 1rem; }
.btn-small  { padding: 10px 20px; font-size: 0.875rem; }

/* ===== GRID ===== */
.cards-grid { display: grid; gap: 24px; }
.four-col   { grid-template-columns: repeat(4, 1fr); }
.two-col    { grid-template-columns: repeat(2, 1fr); }
.three-col  { grid-template-columns: repeat(3, 1fr); }

/* ===== NAVIGATION ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo-img { height: 40px; width: auto; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.nav-links a {
  padding: 8px 12px;
  color: #1F2937;
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
  border-radius: 0;
  border: none;
  background: none;
}
.nav-links a:hover {
  color: #7C3AED;
  background: none;
  border: none;
}

.nav-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-4px); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: visible;
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
}

/* Background decorative blobs */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(124,58,237,.06) 0%, transparent 70%);
}
.hero::after {
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -100px;
  background: radial-gradient(circle, rgba(249,115,22,.06) 0%, transparent 70%);
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-headline {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 22px;
}

.hero-subtext {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 500px;
}




@keyframes zodiacFloat {
  0%, 100% { transform: translateY(0)   rotate(0deg);  }
  50%       { transform: translateY(-12px) rotate(8deg); }
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-deco-ring {
  position: absolute;
  width: 110%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px dashed rgba(124,58,237,.12);
  animation: spin 40s linear infinite;
}
.hero-deco-dot {
  position: absolute;
  border-radius: 50%;
}
.hero-deco-dot--1 {
  width: 14px; height: 14px;
  top: 8%; left: 8%;
  background: var(--accent);
  opacity: .3;
}
.hero-deco-dot--2 {
  width: 10px; height: 10px;
  bottom: 12%; right: 10%;
  background: var(--primary);
  opacity: .25;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== CHARACTER IMAGES ===== */
.hero-character-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(124, 58, 237, 0.15));
}

.ctp-character-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--primary);
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: white;
  text-align: center;
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.trust-icon svg { width: 100%; height: 100%; }
.trust-item span { font-size: 0.9375rem; font-weight: 600; }

/* ===== SECTION FLOATING CHARACTERS ===== */
.section-float-right {
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 240px;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  opacity: 0.95;
  z-index: 2;
}
.section-float-left {
  position: absolute;
  left: -20px;
  bottom: 0;
  width: 240px;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  opacity: 0.95;
  z-index: 2;
}
.flipped { transform: scaleX(-1); }

.footer-unicorn {
  width: 100px;
  height: auto;
  opacity: 0.55;
  margin-top: 16px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(255,255,255,0.15));
}

/* ===== WHY WISDOMWEB ===== */
.why-section { background: var(--bg); position: relative; overflow: visible; }

.feature-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-card:hover::after { transform: scaleX(1); }

.feature-icon {
  width: 54px; height: 54px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  margin-bottom: 20px;
}
.feature-icon svg { width: 100%; height: 100%; stroke: var(--primary); }

.feature-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ===== CTP SECTION ===== */
.ctp-section {
  background: linear-gradient(140deg, #FAF5FF 0%, #FFF7ED 100%);
  position: relative;
  overflow: visible;
}

.ctp-inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 80px;
  align-items: center;
}

.ctp-visual { display: flex; justify-content: center; }

.ctp-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.ctp-content p {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 28px;
}

.ctp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1.5px solid var(--border);
  color: var(--text-dark);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

/* ===== CTP DIMENSIONS — FLIP CARDS ===== */
.ctp-dimensions {
  margin-top: clamp(48px, 6vw, 80px);
}
.ctp-dimensions-title {
  text-align: center;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 36px;
}
.flip-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .flip-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .flip-cards-grid { grid-template-columns: 1fr; }
}
.flip-card {
  height: 260px;
  perspective: 1000px;
  cursor: pointer;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}
.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 28px 24px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.flip-card-front {
  background: white;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  gap: 12px;
}
.flip-card-front:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.flip-card-zodiac {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.flip-card-front h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}
.flip-hint {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: auto;
}
.flip-card-back {
  background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
  transform: rotateY(180deg);
  align-items: flex-start;
  text-align: left;
  justify-content: flex-start;
  gap: 10px;
  padding: 24px;
  overflow: hidden;
}
.flip-card-back h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: white;
  margin: 0;
}
.flip-card-back p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  margin: 0;
}
.flip-question {
  color: rgba(255,255,255,0.7) !important;
  font-size: 0.75rem !important;
  margin-top: auto !important;
}
.flip-card-back > * {
  transform: scaleX(1);
}
.flip-card-back-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  height: 100%;
  transform: rotateY(180deg);
}

/* ===== CTP OUTCOMES ===== */
.ctp-outcomes {
  margin-top: clamp(48px, 6vw, 80px);
}
.ctp-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .ctp-outcomes-grid { grid-template-columns: 1fr; }
}
.ctp-outcome-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}
.ctp-outcome-icon {
  font-size: 2rem;
}
.ctp-outcome-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}
.ctp-outcome-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ===== PROGRAMMES SECTION ===== */
.programmes-section { background: #F5F3FF; position: relative; overflow: visible; }

.programmes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.prog-tagline {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 8px;
}

.programme-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.programme-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.programme-card--featured {
  border-color: var(--primary);
  position: relative;
}
.programme-card--featured::before {
  content: 'Popular';
  position: absolute;
  top: -13px; right: 28px;
  background: var(--accent);
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.prog-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  width: fit-content;
}
.prog-badge--featured { background: var(--primary); color: white; }

.prog-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.prog-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.prog-details li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 0.9375rem;
  color: var(--text-light);
}
.detail-label { font-weight: 600; color: var(--text-dark); flex-shrink: 0; }

.coming-soon-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9375rem;
  color: var(--text-light);
  font-style: italic;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--bg); position: relative; overflow: visible; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: stretch;
}

.testimonial-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-lg);
  height: 100%;
}

.testimonial-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-quote {
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.8;
  flex: 1;
}

.testimonial-meta { display: flex; flex-direction: column; gap: 4px; }

.testimonial-author {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-dark);
  font-style: normal;
}
.testimonial-role { font-size: 0.875rem; color: var(--text-light); }

/* ===== FAQ ===== */
.faq-section { background: #F5F3FF; position: relative; overflow: visible; }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124,58,237,.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.2s;
  font-family: inherit;
}
.faq-question:hover { color: var(--primary); }
.faq-item.open .faq-question { color: var(--primary); }

.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer p {
  padding: 18px 24px 22px;
  border-top: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.75;
  margin: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary);
  padding: clamp(48px, 6vw, 80px) 0 0;
  color: white;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: 48px;
}
.footer-logo-img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  display: block;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0.9;
}
.footer-social a:hover { transform: translateY(-2px); opacity: 1; }

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.footer-explore ul, .footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0 0 8px 0;
}
.footer-explore ul li, .footer-contact ul li {
  margin-bottom: 8px;
}
.footer-explore a, .footer-contact a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.footer-explore a:hover, .footer-contact a:hover { color: white; }

.footer-contact p {
  color: rgba(255,255,255,0.72);
  font-size: 0.9375rem;
  margin-bottom: 16px;
}
.footer-wa-btn {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 12px 24px;
  font-size: 0.875rem;
}
.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact-links a {
  color: rgba(255,255,255,0.72);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-links a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 20px 0;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

/* ===== STICKY CTP BANNER ===== */
.ctp-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #D946EF 0%, #9333EA 100%);
  z-index: 998;
  padding: 14px 24px;
  box-shadow: 0 -4px 24px rgba(217,70,239,0.30);
}
.ctp-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.ctp-banner-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.ctp-banner-text {
  color: white;
  font-size: 0.9375rem;
  flex: 1;
  margin: 0;
}
.ctp-banner-text strong { color: #FCD34D; }
.ctp-banner-btn {
  flex-shrink: 0;
  padding: 10px 24px;
  font-size: 0.875rem;
}
.ctp-banner-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 8px;
  flex-shrink: 0;
  transition: color 0.2s;
}
.ctp-banner-close:hover { color: white; }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 28px;
  z-index: 999;
  background: var(--whatsapp);
  border-radius: 50px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 0;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: padding 0.3s ease, gap 0.3s ease, max-width 0.3s ease, box-shadow 0.2s;
  max-width: 56px;
  overflow: hidden;
  color: white;
}
.whatsapp-float:hover {
  max-width: 200px;
  padding: 14px 20px;
  gap: 10px;
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
}
.whatsapp-icon { width: 28px; height: 28px; flex-shrink: 0; }
.whatsapp-label {
  font-size: 0.9375rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-width 0.3s ease;
}
.whatsapp-float:hover .whatsapp-label { opacity: 1; max-width: 120px; }

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE — 1024px ===== */
@media (max-width: 1024px) {
  .four-col  { grid-template-columns: repeat(2, 1fr); }
  .ctp-inner { gap: 48px; }
  .hero-container { gap: 40px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr; gap: 32px; }
}

/* ===== RESPONSIVE — 768px ===== */
@media (max-width: 768px) {
  body { padding-bottom: 120px; }

  .section-float-right, .section-float-left { display: none !important; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .programmes-grid { grid-template-columns: 1fr; }

  .section-header { margin-bottom: 40px; }

  /* Nav */
  .logo-img { max-height: 28px; width: auto; }
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 13px 24px; width: 100%; font-size: 1rem; }
  .nav-cta { display: none; }

  /* Hero */
  .hero { padding: 72px 0 56px; }
  .hero-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 32px;
  }
  .hero-visual {
    order: -1;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .hero-text {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .hero-character-img { max-width: 240px; }
  .ctp-character-img  { max-width: 240px; }
  .hero-deco-ring { display: none; }

  /* Trust bar */
  .trust-items { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* CTP */
  .ctp-inner { grid-template-columns: 1fr; gap: 40px; }
  .ctp-visual { order: -1; }

  /* Testimonials */
  .three-col { grid-template-columns: 1fr; }

  /* Zodiac */
  .zodiac-wrapper { display: none !important; }
  .zodiac-unicorn {
    display: block !important;
    width: 80px !important;
    top: auto !important;
    bottom: 80px !important;
    right: 16px !important;
    left: auto !important;
  }

  /* CTP Banner */
  .ctp-banner-inner { flex-wrap: wrap; gap: 10px; }
  .ctp-banner-icon { display: none; }
  .ctp-banner-text { font-size: 0.875rem; }
  .ctp-banner-btn { width: 100%; text-align: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* WhatsApp */
  .whatsapp-float { bottom: 140px; right: 20px; }
}

/* ===== RESPONSIVE — 480px ===== */
@media (max-width: 480px) {
  .four-col { grid-template-columns: 1fr; }

  .hero-headline { font-size: 1.875rem; }
  .hero-subtext { font-size: 1rem; }
  .hero-visual { display: none; }

  .btn-large { width: 100%; }

  .ctp-visual { display: none; }

  .ctp-content h2 { font-size: 1.625rem; }
  .ctp-chips { gap: 8px; }
  .chip { font-size: 0.75rem; padding: 5px 10px; }

  .programme-card { padding: 28px 24px; }
  .prog-title { font-size: 1.25rem; }

  .trust-item span { font-size: 0.875rem; }


  .faq-question { font-size: 0.9375rem; padding: 16px 18px; }
  .faq-answer-inner { padding: 0 18px 18px; padding-top: 14px; }
}
