/* =============================================
   Woman with Wings — Design System
   ============================================= */

:root {
  --bg: #FFF8FB;
  --white: #FFFFFF;
  --pink: #F65AA5;
  --orange: #FFA53D;
  --purple: #B287FF;
  --blue: #6EA8FF;
  --heading: #1E1B35;
  --body: #6F7285;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  --shadow-soft: 0 4px 24px rgba(30, 27, 53, 0.06);
  --shadow-card: 0 8px 40px rgba(246, 90, 165, 0.08);
  --shadow-hover: 0 16px 48px rgba(246, 90, 165, 0.14);
  --gradient: linear-gradient(135deg, var(--pink), var(--orange), var(--purple), var(--blue));
  --gradient-text: linear-gradient(135deg, var(--pink) 0%, var(--orange) 30%, var(--purple) 65%, var(--blue) 100%);
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-label: 'Poppins', sans-serif;
  --nav-height: 72px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --bg: #0F0E17;
  --white: #1A1928;
  --heading: #F5F3FF;
  --body: #A8AABC;
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.25);
  --shadow-hover: 0 16px 48px rgba(246, 90, 165, 0.2);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  background: var(--bg);
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
}

/* ---- Background ---- */
.bg-blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: blobDrift 20s ease-in-out infinite;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: rgba(246, 90, 165, 0.25);
  top: -10%;
  left: -10%;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: rgba(178, 135, 255, 0.2);
  top: 30%;
  right: -8%;
  animation-delay: -5s;
}

.blob-3 {
  width: 350px;
  height: 350px;
  background: rgba(255, 165, 61, 0.18);
  bottom: 10%;
  left: 20%;
  animation-delay: -10s;
}

.blob-4 {
  width: 300px;
  height: 300px;
  background: rgba(110, 168, 255, 0.2);
  bottom: 30%;
  right: 25%;
  animation-delay: -15s;
}

.glow-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
}

.glow-1 {
  width: 200px;
  height: 200px;
  background: var(--pink);
  top: 15%;
  right: 30%;
}

.glow-2 {
  width: 150px;
  height: 150px;
  background: var(--purple);
  bottom: 20%;
  left: 10%;
}

.glow-3 {
  width: 180px;
  height: 180px;
  background: var(--blue);
  top: 50%;
  left: 50%;
}

@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

/* ---- Butterflies ---- */
.butterflies {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.butterfly {
  position: absolute;
  font-size: 18px;
  opacity: 0.5;
  animation: floatButterfly 12s ease-in-out infinite;
}

.bf-1 { top: 12%; left: 8%; animation-delay: 0s; }
.bf-2 { top: 25%; right: 12%; animation-delay: -3s; font-size: 14px; }
.bf-3 { top: 55%; left: 5%; animation-delay: -6s; font-size: 16px; }
.bf-4 { top: 70%; right: 8%; animation-delay: -9s; }
.bf-5 { top: 40%; left: 45%; animation-delay: -4s; font-size: 12px; opacity: 0.35; }

@keyframes floatButterfly {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(15px, -20px) rotate(5deg); }
  50% { transform: translate(-10px, -35px) rotate(-3deg); }
  75% { transform: translate(20px, -15px) rotate(4deg); }
}

/* ---- Typography ---- */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-label {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 400;
  color: var(--heading);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-subtext {
  font-size: 17px;
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.75;
}

/* ---- Fade Up ---- */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-label);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: white;
  box-shadow: 0 8px 28px rgba(246, 90, 165, 0.35);
}

.btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 36px rgba(246, 90, 165, 0.45);
}

.btn-secondary {
  background: var(--white);
  color: var(--pink);
  border: 2px solid var(--pink);
  padding: 12px 30px;
}

.btn-secondary:hover {
  transform: scale(1.04);
  background: rgba(246, 90, 165, 0.06);
  box-shadow: var(--shadow-soft);
}

.btn-large {
  padding: 18px 40px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
}

/* ---- Navbar ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(30, 27, 53, 0.06);
  backdrop-filter: blur(12px);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-circle {
  width: 44px;
  height: 44px;
  border-radius: 0%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.logo-icon {
  font-size: 20px;
}

.logo-img{
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--heading);
  line-height: 1.2;
}

.logo-tag {
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--pink);
}

.navbar-center {
  flex: 1;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(30, 27, 53, 0.08);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.theme-toggle:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow-soft);
}

.theme-icon {
  font-size: 18px;
  position: absolute;
  transition: opacity 0.3s, transform 0.3s;
}

[data-theme="dark"] .theme-icon.sun { opacity: 0; transform: rotate(90deg); }
[data-theme="dark"] .theme-icon.moon { opacity: 1; transform: rotate(0); }
:not([data-theme="dark"]) .theme-icon.sun { opacity: 1; transform: rotate(0); }
:not([data-theme="dark"]) .theme-icon.moon { opacity: 0; transform: rotate(-90deg); }

.hamburger {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(30, 27, 53, 0.08);
  background: var(--white);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: transform var(--transition);
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--heading);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid rgba(30, 27, 53, 0.06);
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
  box-shadow: var(--shadow-soft);
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 15px;
  color: var(--heading);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.mobile-menu a:hover {
  background: rgba(246, 90, 165, 0.06);
}

.desktop-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--pink);
  background: rgba(246, 90, 165, 0.08);
}

.mobile-menu a.active {
  color: var(--pink);
  background: rgba(246, 90, 165, 0.06);
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  padding: 48px 0 32px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.page-hero .section-heading {
  margin-bottom: 12px;
}

.page-hero .section-subtext {
  margin: 0 auto;
}

.section-tight {
  padding-top: 0;
}

.page-hero-badge {
  margin-bottom: 20px;
}

/* ---- Hero ---- */
.hero {
  padding-top: 48px;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(246, 90, 165, 0.12) 0%, rgba(178, 135, 255, 0.08) 40%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.hero-flowers .flower {
  position: absolute;
  font-size: 24px;
  opacity: 0.4;
  animation: floatButterfly 10s ease-in-out infinite;
}

.hero-flowers .f1 { top: 15%; left: 3%; }
.hero-flowers .f2 { top: 40%; right: 5%; animation-delay: -3s; font-size: 20px; }
.hero-flowers .f3 { bottom: 20%; left: 8%; animation-delay: -6s; font-size: 18px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--pink);
  background: rgba(246, 90, 165, 0.08);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 400;
  color: var(--heading);
  line-height: 1.05;
  margin-bottom: 16px;
}

.gradient-hero {
  display: inline-block;
}

.gradient-line {
  width: 80px;
  height: 3px;
  background: var(--gradient);
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
}

.hero-paragraph {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--heading);
  line-height: 1.2;
}

.stat-label {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 500;
  color: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---- Hero Carousel ---- */
.hero-showcase {
  position: relative;
}

.hero-carousel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.hero-carousel .carousel-track {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/5;
  max-height: 520px;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-tag {
  position: absolute;
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
  z-index: 2;
  animation: floatTag 4s ease-in-out infinite;
}

.tag-1 { top: 8%; right: -8%; animation-delay: 0s; }
.tag-2 { bottom: 30%; left: -10%; animation-delay: -1.5s; }
.tag-3 { bottom: 8%; right: 5%; animation-delay: -3s; }

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

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(246, 90, 165, 0.25);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}

.carousel-dots button.active {
  background: var(--pink);
  transform: scale(1.3);
}

/* ---- Philosophy ---- */
.philosophy {
  z-index: 2;
  position: relative;
}

.philosophy-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.philosophy-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.philosophy-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
}

.card-pink { background: linear-gradient(135deg, #FFF5FA 0%, var(--white) 60%); }
.card-lavender { background: linear-gradient(135deg, #F8F5FF 0%, var(--white) 60%); }
.card-peach { background: linear-gradient(135deg, #FFF8F2 0%, var(--white) 60%); }

[data-theme="dark"] .card-pink { background: linear-gradient(135deg, rgba(246,90,165,0.08) 0%, var(--white) 60%); }
[data-theme="dark"] .card-lavender { background: linear-gradient(135deg, rgba(178,135,255,0.08) 0%, var(--white) 60%); }
[data-theme="dark"] .card-peach { background: linear-gradient(135deg, rgba(255,165,61,0.08) 0%, var(--white) 60%); }

.card-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.philosophy-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--heading);
  margin-bottom: 12px;
}

.philosophy-card p {
  font-size: 15px;
  line-height: 1.7;
}

/* ---- Initiatives ---- */
.initiatives {
  z-index: 2;
  position: relative;
}

.initiatives-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.initiative-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.initiative-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.initiative-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
}

.initiative-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.initiative-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--heading);
  margin-bottom: 12px;
}

.initiative-card p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.initiative-link {
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 600;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 0.2s;
}

.initiative-link:hover {
  opacity: 0.7;
}

/* ---- Podcast ---- */
.podcast {
  z-index: 2;
  position: relative;
}

.podcast-glass {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, #F8E7C9, #D8B4FE);
  overflow: hidden;
}

.podcast-glass::before {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: calc(var(--radius-lg) - 2px);
  background: linear-gradient(135deg, #FCFAFF 0%, #F6F0FF 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

[data-theme="dark"] .podcast-glass::before {
  background: rgba(26, 25, 40, 0.85);
}

.podcast-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 40px 32px;
  align-items: center;
}

.badge-glass {
  background: rgba(246, 90, 165, 0.1);
}

.podcast-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--heading);
  line-height: 1.2;
  margin: 16px 0 20px;
}

.podcast-text {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 520px;
}

.podcast-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

.podcast-stat .stat-number {
  font-size: 2rem;
}

.podcast-artwork {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.artwork-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 90, 165, 0.3), rgba(178, 135, 255, 0.15), transparent 70%);
  filter: blur(20px);
}

.artwork-circle {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 1;
}

.artwork-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.podcast-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--purple);
  filter: blur(60px);
  opacity: 0.3;
  top: 10%;
  right: 10%;
}

.podcast-dots span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.4;
  animation: floatButterfly 6s ease-in-out infinite;
}

.podcast-dots span:nth-child(1) { top: 20%; left: 5%; }
.podcast-dots span:nth-child(2) { top: 60%; left: 8%; animation-delay: -2s; width: 6px; height: 6px; }
.podcast-dots span:nth-child(3) { bottom: 15%; right: 12%; animation-delay: -4s; }
.podcast-dots span:nth-child(4) { top: 30%; right: 20%; animation-delay: -1s; width: 5px; height: 5px; }
.podcast-dots span:nth-child(5) { bottom: 40%; left: 15%; animation-delay: -3s; width: 10px; height: 10px; }

/* ---- Awards ---- */
.awards {
  z-index: 2;
  position: relative;
}

.awards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.award-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.award-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(246, 90, 165, 0.04), rgba(110, 168, 255, 0.04));
  pointer-events: none;
}

.award-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.award-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.award-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--heading);
  margin-bottom: 8px;
  position: relative;
}

.award-org {
  font-size: 14px;
  color: var(--body);
  margin-bottom: 12px;
  position: relative;
}

.award-year {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

/* ---- Team ---- */
.team {
  z-index: 2;
  position: relative;
}

.team-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.team-carousel {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.team-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.team-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 400px;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--heading);
  margin-bottom: 6px;
}

.team-role {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.team-info blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--heading);
  line-height: 1.6;
  border-left: 3px solid var(--pink);
  padding-left: 20px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(30, 27, 53, 0.08);
  background: var(--white);
  font-size: 18px;
  color: var(--heading);
  cursor: pointer;
  flex-shrink: 0;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: var(--shadow-soft);
}

.carousel-btn:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow-hover);
  background: rgba(246, 90, 165, 0.06);
}

.team-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.team-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(246, 90, 165, 0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.team-dots button.active {
  background: var(--pink);
  transform: scale(1.3);
}

.team-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.team-chips button {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(30, 27, 53, 0.08);
  background: var(--white);
  color: var(--body);
  cursor: pointer;
  transition: all var(--transition);
}

.team-chips button.active,
.team-chips button:hover {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(246, 90, 165, 0.3);
}

/* ---- Contact ---- */
.contact {
  z-index: 2;
  position: relative;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-butterfly {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
  animation: floatButterfly 8s ease-in-out infinite;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  max-width: 720px;
  margin: 0 auto 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 18px;
  border: 1px solid rgba(30, 27, 53, 0.1);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--heading);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(246, 90, 165, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.social-connect {
  text-align: center;
}

.social-heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--heading);
  margin-bottom: 24px;
}

.social-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 16px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 14px;
  color: var(--heading);
  transition: transform var(--transition), box-shadow var(--transition);
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.social-card svg {
  color: var(--pink);
}

.hub-icon {
  font-size: 22px;
}

/* ---- Testimonials ---- */
.testimonials {
  z-index: 2;
  position: relative;
  padding-bottom: 100px;
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonials-track {
  position: relative;
  min-height: 200px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.testimonial-glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.6);
  background-image: linear-gradient(135deg, rgba(246, 90, 165, 0.06), rgba(110, 168, 255, 0.06));
}

[data-theme="dark"] .testimonial-glass {
  background: rgba(26, 25, 40, 0.7);
  border-color: rgba(255, 255, 255, 0.08);
}

.testimonial-glass blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-style: italic;
  color: var(--heading);
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-glass cite {
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.testimonials-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(246, 90, 165, 0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.testimonials-dots button.active {
  background: var(--pink);
  transform: scale(1.3);
}

/* ---- Footer ---- */
.footer {
  background: var(--white);
  border-top: 1px solid rgba(30, 27, 53, 0.06);
  padding: 60px 0 0;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
}


.footer-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--heading);
  margin: 0;
  line-height: 1;
}

.footer-tag {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--pink);
  margin-top: 2px;
  line-height: 1;
}

.footer-links h4,
.footer-social h4 {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: 16px;
}

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

.footer-links a {
  font-size: 15px;
  color: var(--body);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--pink);
}

.footer-social-icons {
  display: flex;
  gap: 12px;
}

.footer-social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  transition: transform var(--transition), box-shadow var(--transition);
}

.footer-social-icons a:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-soft);
}

.footer-bottom {
  border-top: 1px solid rgba(30, 27, 53, 0.06);
  padding: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--body);
}

/* ---- Desktop ---- */
@media (min-width: 768px) {
  .section {
    padding: 100px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .hero-stats {
    gap: 32px;
  }

  .stat {
    text-align: left;
  }

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

  .initiatives-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .podcast-inner {
    grid-template-columns: 1.2fr 0.8fr;
    padding: 56px 48px;
  }

  .team-slide {
    grid-template-columns: 1fr 1.2fr;
    padding: 40px;
    align-items: center;
  }

  .team-photo {
    max-height: none;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    align-items: start;
  }

  .mobile-menu {
    display: none !important;
  }

  .desktop-nav {
    display: flex;
  }

  .hamburger {
    display: none;
  }
}

@media (min-width: 1024px) {
  .initiatives-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .awards-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .container {
    padding: 0 40px;
  }
}

@media (max-width: 767px) {
  .carousel-btn {
    display: none;
  }

  .floating-tag {
    font-size: 11px;
    padding: 8px 14px;
  }

  .tag-1 { right: 0; }
  .tag-2 { left: 0; }

  .podcast-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
}
/* ===== Philosophy Layout with Video ===== */

.philosophy-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.philosophy-left {
    flex: 1;
}

.philosophy-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.philosophy-right video {
    width: calc(100% + 3px);
    max-width: 500px;
    height: auto;
    display: block;
    object-fit: contain;
    border: none;
    outline: none;
    border-radius: 24px;
    box-shadow: none;
    overflow: hidden;
    
    
}

/* Mobile Responsive */

@media (max-width: 768px) {

    .philosophy-top {
        flex-direction: column;
        text-align: center;
        gap: 35px;
    }

    .philosophy-left .section-subtext {
        margin-left: auto;
        margin-right: auto;
    }

    .philosophy-right video {
        max-width: 300px;
    }
}