/* ============================================================
   Mrs_Elite_India â€” Page-Specific Styles
   ============================================================ */

/* ===== HOME PAGE ===== */

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-background);
}

.hero-bg {
  display: none !important;
  visibility: hidden;
}

/* Background Video Autoplay */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85) contrast(1.05);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(10, 10, 12, 0.45) 0%,
      rgba(10, 10, 12, 0.2) 50%,
      rgba(10, 10, 12, 0.7) 100%);
  z-index: 1;
}

.hero-centered-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: calc(var(--nav-height) + var(--space-12)) var(--space-4) var(--space-16);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: calc(var(--nav-height) + var(--space-12)) 0 var(--space-16);
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0;
  text-align: center;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px 20px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  margin-bottom: var(--space-6);
  animation: fadeInDown 0.8s ease;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 7.5vw, 4.5rem);
  font-weight: var(--fw-light);
  line-height: 1.15;
  margin-bottom: var(--space-6);
  letter-spacing: var(--ls-tight);
  text-align: center;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-title .gold {
  background: linear-gradient(135deg, #f1e4a3 0%, #d4af37 50%, #a67c1e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: var(--fw-bold);
  font-style: italic;
  position: relative;
  text-shadow: 0 0 25px rgba(212, 175, 55, 0.35), 0 4px 15px rgba(0, 0, 0, 0.6);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--fw-regular);
  font-style: italic;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-description {
  font-size: var(--text-3xl);
  color: #e5e5e5;
  max-width: 640px;
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-10);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
  animation: fadeInUp 1s ease 0.5s both;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  animation: fadeInUp 1s ease 0.6s both;
  width: 100%;
  margin-top: var(--space-8);
}

/* ===== HERO SIDE CAROUSEL ===== */
.hero-side-carousel-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease 0.3s both;
}

/* Subtle background vignette blur behind model */
.hero-side-carousel-wrapper::before {
  content: '';
  position: absolute;
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.hero-side-carousel {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 580px;
  border-radius: 0;
  overflow: hidden;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  z-index: 1;
}

.hero-side-carousel .carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-side-carousel .carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08) translateY(14px);
  filter: blur(10px) brightness(0.75);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.3s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.hero-side-carousel .carousel-slide.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0px) brightness(1);
  pointer-events: auto;
}

.hero-side-carousel .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border: none !important;
  box-shadow: none !important;
  /* Seamless edge blending so image fades naturally into background with zero harsh lines */
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 96%);
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 96%);
}

.hero-side-carousel .carousel-slide.active img {
  animation: heroModelKenBurns 3.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroModelKenBurns {
  0% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}





@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-scroll-indicator {
  opacity: 0;
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

.hero-scroll-indicator .scroll-line {
  width: 1px;
  height: 35px;
  background: linear-gradient(to bottom, var(--color-primary), transparent);
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-side-carousel {
    max-width: 380px;
    height: 460px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-tagline {
    font-size: var(--text-xl);
  }

  .hero-side-carousel {
    max-width: 100%;
    height: 400px;
  }

  .hero-actions {
    width: 50% !important;
  }
}

/* Elite Icons Section / Premium Showcase Layout */
.premium-showcase-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  width: 100%;
  overflow: hidden;
  padding: var(--space-4) 0;
}

/* --- Infinite Auto-Slider --- */
.showcase-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: var(--space-2) 0;
  display: flex;
}

/* Semi-transparent blur edges for premium luxury fading effect on slider edges */
.showcase-slider-container::before,
.showcase-slider-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.showcase-slider-container::before {
  left: 0;
  background: linear-gradient(to right, var(--color-surface) 0%, transparent 100%);
}

.showcase-slider-container::after {
  right: 0;
  background: linear-gradient(to left, var(--color-surface) 0%, transparent 100%);
}

.slider-track {
  display: flex;
  gap: var(--space-6);
  width: max-content;
  animation: marquee-left 35s linear infinite;
}

.showcase-slider-container.reverse .slider-track {
  animation: marquee-right 35s linear infinite;
}

/* Pause scroll animation on hover so users can browse cards */
.showcase-slider-container:hover .slider-track {
  animation-play-state: paused;
}

/* Slider item adjustments */
.slider-item {
  width: 260px;
  flex-shrink: 0;
}

.slider-item .model-card {
  margin: 0;
  padding: 0;
}

.slider-item .model-card-image {
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.slider-item:hover .model-card-image {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-gold-lg);
}

/* Marquee keyframes */
@keyframes marquee-left {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes marquee-right {
  0% {
    transform: translate3d(-50%, 0, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* --- Explorations Collage Grid --- */
.showcase-grid-collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  margin: var(--space-4) 0;
}

.collage-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition-slow);
}

.collage-card.featured-card {
  grid-column: span 2;
  height: 480px;
}

.collage-card.standard-card {
  grid-column: span 1;
  height: 480px;
}

.collage-image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.collage-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Glassmorphic dark premium gradient overlay */
.collage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(19, 19, 19, 0.2) 0%,
      rgba(19, 19, 19, 0.65) 60%,
      rgba(19, 19, 19, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-10);
  text-align: center;
  z-index: 1;
  transition: background var(--transition-base);
}

.featured-card .collage-overlay {
  justify-content: center;
}

/* Explorations text styles */
.collage-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: var(--fw-light);
  margin-bottom: var(--space-6);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(135deg, #f1e4a3 0%, #d4af37 50%, #a67c1e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.collage-title::before {
  content: 'EXCLUSIVE';
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.45em;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: var(--space-1);
  -webkit-text-fill-color: var(--color-primary);
}

/* Button "Explore More" matching reference */
.explore-btn {
  background: var(--color-text);
  color: var(--color-text-inverse);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.2em;
  padding: var(--space-4) var(--space-10);
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
}

/* Hover effects */
.collage-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-gold-lg);
}

.collage-card:hover .collage-image-wrapper img {
  transform: scale(1.06);
}

.collage-card:hover .collage-overlay {
  background: linear-gradient(to bottom,
      rgba(19, 19, 19, 0.1) 0%,
      rgba(19, 19, 19, 0.55) 50%,
      rgba(212, 175, 55, 0.15) 100%);
}

.explore-btn:hover {
  background: var(--color-primary);
  color: var(--color-text);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .showcase-grid-collage {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }

  .collage-card.featured-card {
    grid-column: span 2;
    height: 420px;
  }

  .collage-card.standard-card {
    grid-column: span 1;
    height: 380px;
  }

  .showcase-slider-container::before,
  .showcase-slider-container::after {
    width: 80px;
  }
}

@media (max-width: 768px) {
  .showcase-grid-collage {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--space-4);
    padding: var(--space-2) var(--space-4) var(--space-4) var(--space-4);
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .showcase-grid-collage::-webkit-scrollbar {
    display: none;
  }

  .collage-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  .collage-card.featured-card {
    grid-column: auto;
    height: 380px;
  }

  .collage-card.standard-card {
    grid-column: auto;
    height: 380px;
  }

  .collage-title {
    font-size: var(--text-3xl);
  }

  .explore-btn {
    padding: var(--space-3) var(--space-8);
    font-size: var(--text-sm);
  }

  .showcase-slider-container::before,
  .showcase-slider-container::after {
    width: 40px;
  }
}

/* ============================================================
   SOVEREIGN PHILOSOPHY V2 — PREMIUM REDESIGN
   ============================================================ */
.philosophy-v2 {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 140px) 0 !important;
  background: #060504;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

/* --- Background Layers --- */
.phil2-bg-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.phil2-bg-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 45%, rgba(212, 175, 55, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 50%, rgba(139, 109, 28, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(139, 109, 28, 0.04) 0%, transparent 60%),
    linear-gradient(180deg, #080706 0%, #0c0a07 30%, #100d08 50%, #0c0a07 70%, #060504 100%);
  pointer-events: none;
  z-index: 0;
}

/* Ambient Orbs */
.phil2-ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.phil2-orb-1 {
  top: 10%;
  left: 15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  animation: phil2OrbFloat 12s ease-in-out infinite alternate;
}

.phil2-orb-2 {
  bottom: 15%;
  right: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  animation: phil2OrbFloat 15s ease-in-out infinite alternate-reverse;
}

.phil2-orb-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
  animation: phil2OrbPulse 8s ease-in-out infinite;
}

@keyframes phil2OrbFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.1); }
}

@keyframes phil2OrbPulse {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(0.9); }
  50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
}

/* --- Floating Spark Particles --- */
.phil2-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.phil2-spark {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #d4af37;
  box-shadow: 0 0 6px 2px rgba(212, 175, 55, 0.6);
  animation: phil2SparkFloat 8s ease-in-out infinite;
}

.phil2-spark.s1 { top: 8%; left: 5%; animation-delay: 0s; animation-duration: 7s; }
.phil2-spark.s2 { top: 25%; left: 22%; width: 2px; height: 2px; animation-delay: 1.2s; animation-duration: 9s; }
.phil2-spark.s3 { top: 60%; left: 8%; animation-delay: 2.4s; animation-duration: 6s; }
.phil2-spark.s4 { top: 80%; left: 35%; width: 4px; height: 4px; animation-delay: 0.8s; animation-duration: 10s; }
.phil2-spark.s5 { top: 15%; right: 12%; animation-delay: 3s; animation-duration: 8s; }
.phil2-spark.s6 { top: 45%; right: 5%; width: 2px; height: 2px; animation-delay: 1.8s; animation-duration: 7s; }
.phil2-spark.s7 { top: 75%; right: 20%; animation-delay: 4s; animation-duration: 9s; }
.phil2-spark.s8 { top: 90%; right: 45%; width: 2px; height: 2px; animation-delay: 2.2s; animation-duration: 11s; }

@keyframes phil2SparkFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
  20% { opacity: 0.8; transform: translateY(-15px) scale(1); }
  50% { opacity: 1; transform: translateY(-30px) scale(1.2); }
  80% { opacity: 0.6; transform: translateY(-50px) scale(0.8); }
}

/* --- Section Header --- */
.phil2-header {
  text-align: center;
  margin-bottom: clamp(50px, 6vw, 80px);
  position: relative;
  z-index: 2;
}

.phil2-header-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.phil2-orn-line {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
}

.phil2-orn-diamond {
  color: #d4af37;
  font-size: 10px;
  opacity: 0.8;
  animation: phil2DiamondPulse 3s ease-in-out infinite;
}

@keyframes phil2DiamondPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); text-shadow: 0 0 12px rgba(212, 175, 55, 0.8); }
}

.phil2-eyebrow {
  display: block;
  font-family: var(--font-body, 'Outfit', sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 16px;
}

.phil2-title {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: #f5f5f5;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 18px;
}

.phil2-title-gold {
  background: linear-gradient(135deg, #fef3c7 0%, #f3c85c 25%, #d4af37 50%, #b8962e 75%, #d4af37 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  font-style: italic;
  animation: phil2GoldShimmer 4s ease-in-out infinite;
}

@keyframes phil2GoldShimmer {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.phil2-subtitle {
  font-family: var(--font-body, 'Outfit', sans-serif);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- 3-Column Showcase Layout --- */
.phil2-showcase {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
}

/* --- Pillar Columns --- */
.phil2-pillars-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* --- Glassmorphic Pillar Cards --- */
.phil2-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: default;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.phil2-card:hover {
  transform: translateY(-6px);
}

/* Animated border via conic gradient */
.phil2-card-border {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: conic-gradient(
    from var(--phil2-border-angle, 0deg),
    transparent 0%,
    rgba(212, 175, 55, 0.05) 10%,
    rgba(212, 175, 55, 0.15) 20%,
    transparent 40%,
    transparent 60%,
    rgba(212, 175, 55, 0.1) 80%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.5s ease;
  opacity: 0.5;
}

.phil2-card:hover .phil2-card-border {
  opacity: 1;
  animation: phil2BorderRotate 3s linear infinite;
}

@keyframes phil2BorderRotate {
  0% { --phil2-border-angle: 0deg; }
  100% { --phil2-border-angle: 360deg; }
}

@property --phil2-border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* Card glow behind */
.phil2-card-glow {
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent, rgba(212, 175, 55, 0.04));
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
  filter: blur(1px);
}

.phil2-card:hover .phil2-card-glow {
  opacity: 1;
}

/* Card Inner */
.phil2-card-inner {
  position: relative;
  z-index: 2;
  background: linear-gradient(145deg, rgba(20, 18, 14, 0.95), rgba(12, 11, 9, 0.98));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.4s ease, box-shadow 0.5s ease;
}

.phil2-card:hover .phil2-card-inner {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(212, 175, 55, 0.06),
    inset 0 1px 0 rgba(212, 175, 55, 0.1);
}

/* Card Icon */
.phil2-card-icon {
  position: relative;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phil2-card-icon svg {
  width: 34px;
  height: 34px;
  color: #d4af37;
  transition: color 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.4s ease;
  position: relative;
  z-index: 1;
}

.phil2-card:hover .phil2-card-icon svg {
  color: #fef3c7;
  transform: scale(1.1) rotate(-3deg);
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
}

.phil2-icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.5s ease;
}

.phil2-card:hover .phil2-icon-ring {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15), inset 0 0 12px rgba(212, 175, 55, 0.05);
  transform: scale(1.08);
}

/* Card Text */
.phil2-card-text {
  flex: 1;
  min-width: 0;
}

.phil2-card-number {
  display: block;
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(212, 175, 55, 0.4);
  letter-spacing: 0.15em;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.phil2-card:hover .phil2-card-number {
  color: rgba(212, 175, 55, 0.7);
}

.phil2-card-title {
  font-family: var(--font-body, 'Outfit', sans-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}

.phil2-card:hover .phil2-card-title {
  color: #e6c85a;
}

.phil2-card-desc {
  font-family: var(--font-body, 'Outfit', sans-serif);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin: 0;
  transition: color 0.3s ease;
}

.phil2-card:hover .phil2-card-desc {
  color: rgba(255, 255, 255, 0.7);
}

/* --- Crown Center Showcase --- */
.phil2-crown-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

/* Halo glow behind crown */
.phil2-crown-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0.04) 45%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  animation: phil2HaloPulse 6s ease-in-out infinite;
}

@keyframes phil2HaloPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.95); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

/* Light Rays */
.phil2-crown-rays {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.phil2-ray {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 120px;
  background: linear-gradient(to top, rgba(212, 175, 55, 0.25), transparent);
  transform-origin: bottom center;
  opacity: 0.3;
  animation: phil2RayPulse 5s ease-in-out infinite;
}

.phil2-ray.r1 { transform: translate(-50%, -100%) rotate(0deg); animation-delay: 0s; }
.phil2-ray.r2 { transform: translate(-50%, -100%) rotate(60deg); animation-delay: 0.8s; }
.phil2-ray.r3 { transform: translate(-50%, -100%) rotate(120deg); animation-delay: 1.6s; }
.phil2-ray.r4 { transform: translate(-50%, -100%) rotate(180deg); animation-delay: 0.4s; }
.phil2-ray.r5 { transform: translate(-50%, -100%) rotate(240deg); animation-delay: 1.2s; }
.phil2-ray.r6 { transform: translate(-50%, -100%) rotate(300deg); animation-delay: 2s; }

@keyframes phil2RayPulse {
  0%, 100% { opacity: 0.15; height: 100px; }
  50% { opacity: 0.45; height: 140px; }
}

/* Crown Image */
.phil2-crown-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
}

.phil2-crown-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  filter: 
    drop-shadow(0 20px 50px rgba(0, 0, 0, 0.85))
    drop-shadow(0 0 30px rgba(212, 175, 55, 0.2));
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
  animation: phil2CrownFloat 7s ease-in-out infinite alternate;
}

.phil2-crown-center:hover .phil2-crown-img {
  transform: scale(1.04) translateY(-5px);
  filter: 
    drop-shadow(0 25px 60px rgba(0, 0, 0, 0.9))
    drop-shadow(0 0 45px rgba(212, 175, 55, 0.35));
}

@keyframes phil2CrownFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

/* Crown Reflection */
.phil2-crown-reflection {
  width: 60%;
  height: 8px;
  margin-top: 20px;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.35) 0%, rgba(212, 175, 55, 0.08) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(6px);
}

/* Crown Tagline */
.phil2-crown-tagline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.phil2-tagline-line {
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5));
}

.phil2-tagline-line:last-child {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.5), transparent);
}

.phil2-tagline-text {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(212, 175, 55, 0.6);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .phil2-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 600px;
  }

  /* Reorder: header, crown, left cards, right cards */
  .phil2-crown-center {
    order: -1;
  }

  .phil2-pillars-left {
    order: 1;
  }

  .phil2-pillars-right {
    order: 2;
  }

  .phil2-crown-img {
    max-height: 320px;
  }
}

@media (max-width: 640px) {
  .philosophy-v2 {
    padding: clamp(50px, 8vw, 80px) 0 !important;
  }

  .phil2-card-inner {
    padding: 24px 20px;
    flex-direction: column;
    gap: 14px;
  }

  .phil2-card-icon {
    width: 48px;
    height: 48px;
  }

  .phil2-card-icon svg {
    width: 28px;
    height: 28px;
  }

  .phil2-crown-img {
    max-height: 240px;
  }

  .phil2-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .phil2-orn-line {
    width: 36px;
  }

  .phil2-ray {
    height: 60px;
  }
}


/* ===== THE MISSION SECTION ===== */
.mission-section {
  position: relative;
  background: linear-gradient(180deg, var(--color-background) 0%, rgba(212, 175, 55, 0.04) 50%, var(--color-background) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.mission-section .container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--space-12);
  align-items: center;
}

.mission-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  transition: all var(--transition-slow);
}

.mission-image:hover {
  border-color: var(--color-primary);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.mission-image img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.mission-image:hover img {
  transform: scale(1.04);
}

.mission-section .section-header {
  text-align: left;
  margin-bottom: 0;
}

.mission-section .section-header .heading-2 {
  text-align: left;
}

.mission-section .section-header .gold-line {
  margin: 0 0 var(--space-6) 0;
}

.mission-section .section-header p {
  text-align: left;
  margin: 0 !important;
  max-width: 100% !important;
  line-height: 1.85;
}

@media (max-width: 992px) {
  .mission-section .container {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .mission-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .mission-section .section-header {
    text-align: center;
  }

  .mission-section .section-header .heading-2 {
    text-align: center;
  }

  .mission-section .section-header .gold-line {
    margin: 0 auto var(--space-6) auto;
  }

  .mission-section .section-header p {
    text-align: center;
  }
}

/* ===== FEATURED CELEBRITY SECTION ===== */
.featured-celeb-section {
  position: relative;
  background: rgba(10, 13, 20, 0.4);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding: var(--space-8) 0;
}

.celeb-slider-wrapper {
  background: #080b11;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.7);
  width: 100%;
  position: relative;
}

.celeb-slider {
  position: relative;
  width: 100%;
}

.celeb-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.celeb-slide.active {
  display: block;
  opacity: 1;
}

.celeb-slide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 420px;
}

.celeb-image-col {
  position: relative;
  overflow: hidden;
  background: #040609;
}

.celeb-img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  max-height: 440px;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: none;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.celeb-slide.active .celeb-img {
  transform: scale(1.03);
}

/* Image Ambient Decorations */
.celeb-image-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.ambient-dot.d1 {
  position: absolute;
  top: 24%;
  right: 16%;
  width: 8px;
  height: 8px;
  background: #f3c85c;
  border-radius: 50%;
  box-shadow: 0 0 12px 3px rgba(243, 200, 92, 0.8);
}

.ambient-ring.r1 {
  position: absolute;
  top: 27%;
  right: 8%;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(212, 175, 55, 0.6);
  border-radius: 50%;
}

.ambient-dot.d2 {
  position: absolute;
  bottom: 8%;
  left: 8%;
  width: 7px;
  height: 7px;
  background: #f3c85c;
  border-radius: 50%;
  box-shadow: 0 0 10px 2px rgba(243, 200, 92, 0.7);
}

.celeb-info-col {
  padding: var(--space-8) var(--space-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at 65% 35%, rgba(18, 24, 35, 0.9) 0%, #06080d 100%);
  overflow: hidden;
}

/* Watermark */
.celeb-watermark-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 340px;
  pointer-events: none;
  opacity: 0.8;
  z-index: 1;
}

.celeb-watermark-bg svg {
  width: 100%;
  height: 100%;
}

.celeb-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.sparkle {
  position: absolute;
  border-radius: 50%;
  background: #f3c85c;
  box-shadow: 0 0 8px 2px rgba(243, 200, 92, 0.8);
}

.sparkle.s1 {
  top: 14%;
  right: 12%;
  width: 4px;
  height: 4px;
  opacity: 0.8;
}

.sparkle.s2 {
  top: 24%;
  right: 7%;
  width: 6px;
  height: 6px;
  opacity: 0.6;
}

.sparkle.s3 {
  bottom: 18%;
  left: 10%;
  width: 5px;
  height: 5px;
  opacity: 0.7;
}

.sparkle.s4 {
  bottom: 32%;
  right: 14%;
  width: 4px;
  height: 4px;
  opacity: 0.9;
}

.sparkle.s5 {
  top: 58%;
  left: 12%;
  width: 3px;
  height: 3px;
  opacity: 0.5;
}

/* Info Content Wrapper */
.celeb-info-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 460px;
}

.celeb-lotus-icon {
  margin-bottom: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.celeb-badge-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  width: 100%;
}

.celeb-badge {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: inline-block;
  margin: 0;
}

.celeb-badge-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 200px;
}

.celeb-badge-divider .divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
}

.celeb-badge-divider .divider-diamond {
  color: #d4af37;
  font-size: 10px;
  line-height: 1;
  opacity: 0.9;
}

.celeb-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.celeb-designation {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: #d4af37;
  margin-bottom: 16px;
  font-style: italic;
  letter-spacing: 0.02em;
}

.celeb-description {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
  font-weight: 300;
}

.celeb-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  margin-top: var(--space-5);
}

.celeb-arrow {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  transition: all var(--transition-base);
}

.celeb-arrow svg {
  width: 20px;
  height: 20px;
}

.celeb-arrow:hover {
  background: var(--color-primary);
  color: #131313;
  border-color: transparent;
  transform: scale(1.05);
}

.celeb-dots {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}

.celeb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all var(--transition-base);
}

.celeb-dot.active {
  background: var(--color-primary);
  transform: scale(1.25);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

@media (max-width: 992px) {
  .celeb-slide-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .celeb-img {
    min-height: 320px;
    max-height: 360px;
  }

  .celeb-info-col {
    padding: var(--space-6) var(--space-6);
  }

  .celeb-name {
    font-size: var(--text-2xl);
  }
}

/* Stats Bar */
.stats-bar {
  background: var(--color-surface-elevated);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* CTA Section */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent, rgba(212, 175, 55, 0.03));
}

.cta-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  position: relative;
}

.cta-card {
  padding: var(--space-16);
  background: rgba(19, 19, 19, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all var(--transition-slow);
}

.cta-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
  transform: translateY(-8px);
}

.cta-card-icon {
  margin-bottom: var(--space-6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cta-card-icon svg {
  width: 56px;
  height: 56px;
  color: var(--color-primary);
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.25));
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.4s ease, filter 0.4s ease;
}

.cta-card:hover .cta-card-icon svg {
  transform: scale(1.15) rotate(5deg);
  color: var(--color-primary-light);
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.55));
}

.cta-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}

.cta-card p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .cta-cards {
    grid-template-columns: 1fr;
  }
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  padding: calc(var(--nav-height) + var(--space-16)) 0 var(--space-16);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08), transparent 60%);
}

.about-hero .heading-1 {
  position: relative;
  margin-bottom: var(--space-4);
}

.about-hero .subtitle-text {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: var(--text-xl);
  line-height: var(--lh-relaxed);
}

/* Mission/Vision */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

.mv-card {
  padding: var(--space-10);
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
}

.mv-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.mv-card p {
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
}

@media (max-width: 768px) {
  .mission-vision {
    grid-template-columns: 1fr;
  }
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.team-card {
  text-align: center;
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-6);
  transition: all var(--transition-base);
}

.team-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 3px solid var(--color-border);
  margin: 0 auto var(--space-5);
  transition: border-color var(--transition-base);
}

.team-card:hover .team-avatar {
  border-color: var(--color-primary);
}

.team-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-1);
}

.team-role {
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.team-bio {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: var(--lh-relaxed);
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: var(--space-12);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-border));
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-10);
  padding-left: var(--space-10);
}

.timeline-dot {
  position: absolute;
  left: -30px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  border: 3px solid var(--color-surface);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-primary);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-2);
}

.timeline-title {
  font-weight: var(--fw-semibold);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.timeline-desc {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: var(--lh-relaxed);
}

/* ===== GALLERY PAGE ===== */
.gallery-hero {
  padding: calc(var(--nav-height) + var(--space-12)) 0 var(--space-8);
  text-align: center;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
  padding: var(--space-6);
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
}

.filter-btn {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text-inverse);
}

.gallery-search {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px 16px;
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  margin-left: auto;
  min-width: 200px;
}

.gallery-search input {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--color-text);
  font-size: var(--text-sm);
}

.gallery-search-icon {
  color: var(--color-text-muted);
  font-size: var(--text-lg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.gallery-count {
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .gallery-filters {
    flex-direction: column;
  }

  .gallery-search {
    margin-left: 0;
    width: 100%;
  }
}

/* Quick View Modal */
.quick-view {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.quick-view-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-view-details {
  padding: var(--space-10);
}

.quick-view-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin: var(--space-6) 0;
}

.quick-view-stat {
  text-align: center;
  padding: var(--space-3);
  background: var(--color-surface);
  border-radius: var(--radius-md);
}

.quick-view-stat-value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
}

.quick-view-stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

@media (max-width: 768px) {
  .quick-view {
    grid-template-columns: 1fr;
  }

  .quick-view-image {
    max-height: 300px;
  }
}

/* ===== REGISTRATION PAGE ===== */
.registration-hero {
  padding: calc(var(--nav-height) + var(--space-12)) 0 var(--space-4);
  text-align: center;
}

.registration-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
}

.form-steps {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.form-step {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
}

.form-step-number {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  transition: all var(--transition-fast);
}

.form-step.active .form-step-number {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text-inverse);
}

.form-step.completed .form-step-number {
  background: var(--color-success);
  border-color: var(--color-success);
  color: white;
}

.form-step-connector {
  width: 40px;
  height: 2px;
  background: var(--color-border);
}

.step-content {
  display: none;
}

.step-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.step-actions {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
}

/* Image Preview */
.image-previews {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
  flex-wrap: wrap;
}

.image-preview {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--color-border);
  position: relative;
}

.image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-preview-remove {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  background: var(--color-error);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  cursor: pointer;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  padding: calc(var(--nav-height) + var(--space-12)) 0 var(--space-4);
  text-align: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
}

.contact-form-card {
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.contact-detail {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.contact-detail-icon {
  width: 50px;
  height: 50px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: var(--text-xl);
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-1);
}

.contact-detail p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: var(--lh-relaxed);
}

.contact-map {
  width: 100%;
  height: 250px;
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) invert(90%) contrast(90%);
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* ===== ADMIN PAGE ===== */
.admin-layout {
  display: flex;
  min-height: 100vh;
  padding-top: var(--nav-height);
}

/* Admin Sidebar */
.admin-sidebar {
  width: var(--sidebar-width);
  background: var(--color-surface-elevated);
  border-right: 1px solid var(--color-border);
  padding: var(--space-8) 0;
  position: fixed;
  top: var(--nav-height);
  bottom: 0;
  overflow-y: auto;
  z-index: var(--z-sticky);
}

.sidebar-section {
  padding: 0 var(--space-5);
  margin-bottom: var(--space-8);
}

.sidebar-label {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  padding: 0 var(--space-4);
  margin-bottom: var(--space-3);
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
}

.sidebar-link:hover {
  background: var(--color-accent-soft);
  color: var(--color-primary);
}

.sidebar-link.active {
  background: rgba(212, 175, 55, 0.12);
  color: var(--color-primary);
}

.sidebar-link-icon {
  font-size: var(--text-lg);
  width: 24px;
  text-align: center;
}

/* Admin Main */
.admin-main {
  flex: 1;
  margin-left: var(--sidebar-width);
  padding: var(--space-8);
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-8);
}

.admin-header h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
}

.admin-header-actions {
  display: flex;
  gap: var(--space-3);
}

/* Dashboard Stats */
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.dash-stat-card {
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all var(--transition-fast);
}

.dash-stat-card:hover {
  border-color: var(--color-primary);
}

.dash-stat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-4);
}

.dash-stat-icon {
  width: 44px;
  height: 44px;
  background: var(--color-accent-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
}

.dash-stat-trend {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  padding: 4px 8px;
  border-radius: var(--radius-full);
}

.dash-stat-trend.up {
  color: var(--color-success);
  background: rgba(74, 222, 128, 0.1);
}

.dash-stat-trend.down {
  color: var(--color-error);
  background: rgba(248, 113, 113, 0.1);
}

.dash-stat-number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.dash-stat-label {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

/* Dashboard Panels */
.dashboard-panels {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-6);
}

.panel {
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--color-border);
}

.panel-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--fw-semibold);
}

.panel-body {
  padding: var(--space-6);
}

/* Chart placeholder */
.chart-container {
  width: 100%;
  height: 280px;
  display: flex;
  align-items: flex-end;
  gap: var(--space-2);
  padding: var(--space-4);
}

.chart-bar {
  flex: 1;
  background: linear-gradient(to top, var(--color-primary-dark), var(--color-primary));
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  transition: all var(--transition-base);
  position: relative;
  min-height: 20px;
}

.chart-bar:hover {
  background: linear-gradient(to top, var(--color-primary), var(--color-primary-light));
  box-shadow: var(--shadow-gold);
}

.chart-bar-label {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: var(--color-text-muted);
  white-space: nowrap;
}

/* Recent Activity */
.activity-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.activity-item:last-child {
  border-bottom: none;
}

.activity-avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--color-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-weight: var(--fw-bold);
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.activity-text {
  flex: 1;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.activity-text strong {
  color: var(--color-text);
}

.activity-time {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  white-space: nowrap;
}

/* Admin Login */
.admin-login {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: var(--space-8);
}

.login-card {
  width: 100%;
  max-width: 420px;
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  text-align: center;
}

.login-card .nav-logo {
  justify-content: center;
  margin-bottom: var(--space-8);
}

.login-card h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
}

.login-card .text-muted {
  margin-bottom: var(--space-8);
  display: block;
}

@media (max-width: 1024px) {
  .dashboard-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard-panels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .admin-sidebar {
    display: none;
  }

  .admin-main {
    margin-left: 0;
  }

  .dashboard-stats {
    grid-template-columns: 1fr;
  }
}

/* ===== SPONSORS TICKER SECTION ===== */
.sponsors-section {
  padding: var(--space-12) 0;
  background: var(--color-surface);
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.sponsors-title {
  text-align: center;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: var(--space-10);
}

.sponsors-ticker-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.sponsors-ticker-wrapper::before,
.sponsors-ticker-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.sponsors-ticker-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--color-surface) 0%, transparent 100%);
}

.sponsors-ticker-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--color-surface) 0%, transparent 100%);
}

.sponsors-ticker {
  display: flex;
  width: max-content;
  align-items: center;
  gap: var(--space-20);
  animation: tickerLoop 30s linear infinite;
}

.sponsor-logo {
  font-size: var(--text-3xl);
  font-weight: var(--fw-bold);
  background: linear-gradient(135deg, #f1e4a3 0%, #d4af37 50%, #a67c1e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
  transition: all var(--transition-base);
  user-select: none;
  cursor: default;
  white-space: nowrap;
}

.sponsor-logo:hover {
  transform: scale(1.1);
}

/* Custom typographic styling for each brand placeholder */
.sponsors-ticker .sponsor-logo:nth-child(6n+1) {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sponsors-ticker .sponsor-logo:nth-child(6n+2) {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  letter-spacing: 0.05em;
}

.sponsors-ticker .sponsor-logo:nth-child(6n+3) {
  font-family: var(--font-body);
  font-weight: var(--fw-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.sponsors-ticker .sponsor-logo:nth-child(6n+4) {
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
}

.sponsors-ticker .sponsor-logo:nth-child(6n+5) {
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  font-style: italic;
  letter-spacing: 0.05em;
}

.sponsors-ticker .sponsor-logo:nth-child(6n+6) {
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

@keyframes tickerLoop {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
  background: rgba(19, 19, 19, 0.4);
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  position: relative;
  z-index: 5;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.benefit-card {
  padding: var(--space-8) var(--space-6);
  background: rgba(19, 19, 19, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-xl);
  transition: all var(--transition-slow);
  position: relative;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.benefit-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
  transform: translateY(-8px);
}

.benefit-number {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--fw-extrabold);
  background: linear-gradient(135deg, #f1e4a3 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--space-4);
  line-height: 1;
  opacity: 0.95;
  transition: all var(--transition-base);
}

.benefit-card:hover .benefit-number {
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}

.benefit-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  margin-bottom: var(--space-3);
  background: linear-gradient(135deg, #f1e4a3 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefit-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
}

@media (max-width: 1280px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== INSTAGRAM REELS SECTION ===== */
.reels-section {
  background-color: var(--color-bg-darker);
  position: relative;
  overflow: hidden;
}

.reels-carousel-container {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}

/* === Reels Track & Slide Animation === */
.reels-track {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.reel-phone-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(80px) scale(0.92);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
  border-radius: 36px;
  background: #000;
  border: 3px solid rgba(60, 60, 60, 0.7);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(212, 175, 55, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.reel-phone-frame.active {
  position: relative;
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
  z-index: 5;
}

.reel-phone-frame.slide-out-left {
  opacity: 0;
  transform: translateX(-80px) scale(0.92);
}

/* === Phone Notch === */
.reel-phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  background: #111;
  border-radius: 0 0 14px 14px;
  z-index: 30;
  border: 1px solid rgba(60, 60, 60, 0.4);
  border-top: none;
}

/* === Progress Bar (Instagram Stories style) === */
.reel-progress-bar {
  position: absolute;
  top: 38px;
  left: 16px;
  right: 16px;
  display: flex;
  gap: 4px;
  z-index: 25;
}

.reel-progress-segment {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  overflow: hidden;
}

.reel-progress-fill {
  width: 0%;
  height: 100%;
  background: #fff;
  border-radius: 3px;
  transition: width 0.1s linear;
}

.reel-progress-segment.completed .reel-progress-fill {
  width: 100%;
}

.reel-progress-segment.active .reel-progress-fill {
  /* Width animated via JS */
}

/* === Reel Header (Username area) === */
.reel-header {
  position: absolute;
  top: 52px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
}

.reel-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.7);
  object-fit: cover;
}

.reel-user-info {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.reel-username {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.reel-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #3897f0;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
}

.reel-follow-btn {
  padding: 5px 16px;
  border-radius: 8px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.reel-follow-btn:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* === Video === */
.reel-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  border-radius: 33px;
}

/* === Reel Actions (Right side icons) === */
.reel-actions {
  display: none !important;
  position: absolute;
  bottom: 110px;
  right: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 20;
}

.reel-action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.reel-action-item:hover {
  transform: scale(1.15);
}

.reel-action-item svg {
  width: 26px;
  height: 26px;
  color: #fff;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
}

.reel-action-item span {
  font-size: 11px;
  color: #fff;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* === Reel Caption === */
.reel-caption {
  position: absolute;
  bottom: 24px;
  left: 16px;
  right: 60px;
  z-index: 20;
}

.reel-caption p {
  color: #fff;
  font-size: 12.5px;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  margin: 0;
}

.reel-caption strong {
  font-weight: 700;
}

/* Gradient overlay at bottom of video for caption readability */
.reel-phone-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
  border-radius: 0 0 33px 33px;
  pointer-events: none;
  z-index: 15;
}

/* Gradient overlay at top for header readability */
.reel-phone-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 25%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
  border-radius: 33px 33px 0 0;
  pointer-events: none;
  z-index: 15;
}

/* === Navigation Buttons === */
.reels-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 30;
  transition: all 0.3s ease;
}

.reels-nav-btn:hover {
  background: rgba(212, 175, 55, 0.25);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.reels-nav-btn svg {
  width: 20px;
  height: 20px;
}

.reels-nav-prev {
  left: -70px;
}

.reels-nav-next {
  right: -70px;
}

/* === Dots Indicator === */
.reels-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.reels-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.3);
  cursor: pointer;
  transition: all 0.35s ease;
}

.reels-dot.active {
  background: var(--color-primary, #d4af37);
  border-color: var(--color-primary, #d4af37);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
  transform: scale(1.2);
}

/* === Instagram CTA Button === */
.reels-insta-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  padding: 14px 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(131, 58, 180, 0.3);
  position: relative;
  overflow: hidden;
}

.reels-insta-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.reels-insta-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(131, 58, 180, 0.45);
}

.reels-insta-cta:hover::before {
  opacity: 1;
}

/* === Responsive === */
@media (max-width: 600px) {
  .reels-carousel-container {
    max-width: 320px;
  }

  .reels-nav-prev {
    left: -44px;
  }

  .reels-nav-next {
    right: -44px;
  }

  .reels-nav-btn {
    width: 38px;
    height: 38px;
  }

  .reels-nav-btn svg {
    width: 16px;
    height: 16px;
  }

  .reel-phone-frame {
    border-radius: 28px;
  }

  .reel-video {
    border-radius: 25px;
  }

  .reel-phone-notch {
    width: 80px;
    height: 18px;
  }

  .reel-caption p {
    font-size: 11px;
  }

  .reels-insta-cta {
    font-size: 13px;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .reels-carousel-container {
    max-width: 280px;
  }

  .reels-nav-prev {
    left: -38px;
  }

  .reels-nav-next {
    right: -38px;
  }

  .reels-nav-btn {
    width: 32px;
    height: 32px;
  }

  .reel-actions {
    bottom: 85px;
    right: 10px;
    gap: 14px;
  }

  .reel-action-item svg {
    width: 22px;
    height: 22px;
  }

  .reel-caption {
    bottom: 16px;
    left: 12px;
    right: 50px;
  }
}

/* ===== ONLINE REGISTRATION FORM STYLES ===== */
.registration-form-card {
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .registration-form-card {
    padding: var(--space-6) var(--space-4);
  }
}

.form-section-block {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-8);
}

.form-section-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.form-section-title .section-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
}

.file-upload-box {
  border: 2px dashed rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-md);
  padding: var(--space-6) var(--space-4);
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.file-upload-box:hover {
  border-color: var(--color-primary);
  background: rgba(212, 175, 55, 0.05);
}

.file-upload-box input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-box .upload-icon {
  font-size: 2rem;
  margin-bottom: 6px;
}

.file-upload-box .upload-info strong {
  color: var(--color-primary);
  display: block;
  font-size: var(--text-sm);
}

.file-upload-box .upload-info p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 2px;
}

.file-name-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 12px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #10b981;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  display: none;
}

/* PAYMENT GATEWAY MODAL STYLES */
.payment-modal {
  max-width: 580px;
  width: 92%;
  padding: 0;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: #141416;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.payment-modal-header {
  background: linear-gradient(135deg, #1f1b13 0%, #0d0c0a 100%);
  padding: 20px 24px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.payment-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pay-logo-img {
  height: 48px;
  width: auto;
}

.pay-brand-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-primary);
  margin: 0;
}

.pay-brand-sub {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.payment-amount-card {
  text-align: right;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 8px 14px;
  border-radius: 8px;
}

.pay-amount-label {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pay-amount-val {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.payment-modal-body {
  padding: 20px 24px;
}

.payment-tabs-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  padding: 4px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.pay-tab-link {
  background: none;
  border: none;
  color: var(--color-text-muted);
  padding: 10px 4px;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.pay-tab-link.active {
  background: var(--color-primary);
  color: #000;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.pay-tab-pane {
  display: none;
  animation: fadeIn 0.3s ease;
}

.pay-tab-pane.active {
  display: block;
}

.upi-box {
  text-align: center;
}

.qr-code-box {
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  margin-bottom: 12px;
}

.qr-svg-mock {
  width: 140px;
  height: 140px;
}

.qr-hint {
  display: block;
  color: #333;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 8px;
}

.upi-app-badges {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 12px 0;
  flex-wrap: wrap;
}

.app-chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--color-text-secondary);
}

.bank-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.bank-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
}

.bank-option:hover,
.bank-option.active {
  border-color: var(--color-primary);
  background: rgba(212, 175, 55, 0.08);
}

.bank-option input {
  accent-color: var(--color-primary);
}

.pay-modal-footer {
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

/* Spinner & Processing */
.payment-processing-state {
  text-align: center;
  padding: 30px 10px;
}

.spinner-gold {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(212, 175, 55, 0.2);
  border-top: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.proc-title {
  color: var(--color-primary);
  margin-bottom: 8px;
}

.proc-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* RECEIPT MODAL */
.receipt-modal {
  max-width: 520px;
  width: 92%;
  padding: 24px;
  border-radius: 16px;
  background: #121214;
  border: 1px solid var(--color-primary);
}

.receipt-card-content {
  background: #1a1a1e;
  border: 1px dashed rgba(212, 175, 55, 0.4);
  padding: 24px;
  border-radius: 12px;
}

.receipt-header {
  text-align: center;
  margin-bottom: 20px;
}

.success-icon-badge {
  width: 56px;
  height: 56px;
  background: #10b981;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 auto 12px;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.receipt-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 4px;
}

.receipt-sub {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.receipt-details-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 0;
  margin-bottom: 16px;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.receipt-row span {
  color: var(--color-text-muted);
}

.receipt-row strong,
.receipt-row span:last-child {
  color: #fff;
  text-align: right;
}

.receipt-footer-note {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  text-align: center;
}

.footer-social {
  display: flex;
  flex-direction: row;
  gap: 10px;

}

.footer-social a svg {
  width: 31px;
  display: flex;
  flex-direction: row;
  gap: 10px;

}

/* ============================================================
   PARTICIPATION BENEFITS SECTION
   ============================================================ */

.benefits-section {
  position: relative;
  background: var(--color-surface);
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 15% 20%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 35% at 85% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* ---- Age Category Row ---- */
.benefits-age-categories {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  margin: 0 auto var(--space-16);
  max-width: 640px;
  flex-wrap: wrap;
}

.benefits-age-card {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: var(--space-8) var(--space-6);
  background: linear-gradient(135deg,
      rgba(212, 175, 55, 0.08) 0%,
      rgba(212, 175, 55, 0.03) 100%);
  border: 1px solid var(--color-border-strong);
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.benefits-age-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
}

.benefits-age-icon {
  font-size: 2.2rem;
  margin-bottom: var(--space-3);
  line-height: 1;
}

.benefits-age-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
  letter-spacing: var(--ls-wide);
}

.benefits-age-desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  margin: 0;
}

.benefits-age-divider {
  font-size: 1.6rem;
  color: var(--color-primary);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ---- Benefits Grid ---- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-16);
}

/* ---- Benefit Card ---- */
.benefit-card {
  position: relative;
  padding: var(--space-8) var(--space-6);
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.22, 0.9, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  cursor: default;
}

.benefit-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(212, 175, 55, 0.12);
}

.benefit-card:hover .benefit-card-glow {
  opacity: 1;
}

.benefit-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%,
      rgba(212, 175, 55, 0.10) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.benefit-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg,
      rgba(212, 175, 55, 0.15) 0%,
      rgba(212, 175, 55, 0.06) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  margin-bottom: var(--space-5);
  transition: transform 0.3s ease, background 0.3s ease;
}

.benefit-card:hover .benefit-icon-wrap {
  transform: scale(1.12) rotate(-3deg);
  background: linear-gradient(135deg,
      rgba(212, 175, 55, 0.25) 0%,
      rgba(212, 175, 55, 0.10) 100%);
}

.benefit-emoji {
  font-size: 1.75rem;
  line-height: 1;
  display: block;
}

.benefit-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  margin-bottom: var(--space-3);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
  transition: color 0.3s ease;
}

.benefit-card:hover .benefit-title {
  color: var(--color-primary-light);
}

.benefit-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
  margin: 0;
  transition: color 0.3s ease;
}

.benefit-card:hover .benefit-desc {
  color: var(--color-text-secondary);
}

/* ---- Tagline Banner ---- */
.benefits-tagline {
  position: relative;
  text-align: center;
  padding: var(--space-12) var(--space-8);
  background: linear-gradient(135deg,
      rgba(212, 175, 55, 0.10) 0%,
      rgba(212, 175, 55, 0.04) 50%,
      rgba(212, 175, 55, 0.10) 100%);
  border: 1px solid var(--color-border-strong);
  border-radius: 24px;
  overflow: hidden;
}

.benefits-tagline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg,
      transparent, var(--color-primary), transparent);
}

.benefits-tagline-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.benefits-tagline-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  line-height: var(--lh-snug);
  margin-bottom: var(--space-6);
  letter-spacing: var(--ls-tight);
}

.benefits-tagline-text {
  font-size: var(--text-2xl);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin: 0;
  max-width: 640px;
  margin: 0 auto;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .benefits-age-categories {
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
  }

  .benefits-age-divider {
    transform: rotate(90deg);
  }

  .benefits-age-card {
    min-width: 280px;
    width: 100%;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .benefits-tagline {
    padding: var(--space-8) var(--space-4);
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


.footer-social svg {
  width: 31px;

}