/* ==========================================================================
   TAKSHARYA 2026 — DESIGN SYSTEM & STYLESHEET (ULTRA-LUXURY DESIGN)
   Theme: Vibrant Saffron (#E8620A) & Golden Accent (#D4A017) on Warm Cream (#FFF9F2)
   ========================================================================== */

:root {
  /* Color Palette */
  --primary-saffron: #E8620A;
  --primary-saffron-dark: #C54E00;
  --primary-saffron-light: #FFF0E5;
  --secondary-gold: #D4A017;
  --gold-glow: rgba(212, 160, 23, 0.4);
  --saffron-glow: rgba(232, 98, 10, 0.35);
  --crimson-accent: #A91D22;
  --bg-cream: #FFF9F2;
  --bg-cream-card: #FFFFFF;
  --bg-soft-orange: #FFF3E8;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --text-light: #F8FAFC;
  --navy-dark: #102C57;
  --navy-deeper: #0A1B36;
  --border-light: #E2E8F0;

  /* Gradients */
  --gradient-saffron: linear-gradient(135deg, #F97316 0%, #E8620A 50%, #C54E00 100%);
  --gradient-gold: linear-gradient(135deg, #FBBF24 0%, #D4A017 100%);
  --gradient-navy: linear-gradient(135deg, #102C57 0%, #0A1B36 100%);
  --gradient-card: linear-gradient(145deg, #FFFFFF 0%, #FFFDF9 100%);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Satisfy', cursive;
  --font-mono: 'Share Tech Mono', monospace, sans-serif;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(232, 98, 10, 0.08);
  --shadow-md: 0 10px 28px rgba(232, 98, 10, 0.14);
  --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.16);
  --shadow-hover: 0 22px 48px rgba(232, 98, 10, 0.28);

  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------
   1. GLOBAL RESET & OVERFLOW PROTECTION
--------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-cream);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100%;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy-dark);
  font-weight: 700;
  line-height: 1.25;
  word-wrap: break-word;
}

.cursive-tag {
  font-family: var(--font-accent);
  color: var(--primary-saffron);
  font-size: clamp(1.3rem, 4vw, 1.65rem);
  display: block;
  margin-bottom: 0.25rem;
}

.section-padding {
  padding: 3.5rem 1.25rem;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

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

.section-title {
  font-size: clamp(1.6rem, 5vw, 2.25rem);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  word-wrap: break-word;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 3vw, 1.1rem);
  max-width: 680px;
  margin: 0 auto 2.5rem auto;
}

/* --------------------------------------------------
   2. KEYFRAME ANIMATIONS
--------------------------------------------------- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 15px var(--saffron-glow); }
  50% { box-shadow: 0 0 30px rgba(232, 98, 10, 0.6); }
}

@keyframes clockBlink {
  50% { opacity: 0.25; }
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

/* --------------------------------------------------
   3. PRELOADER
--------------------------------------------------- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-spinner {
  width: 75px;
  height: 75px;
  border: 4px solid var(--primary-saffron-light);
  border-top: 4px solid var(--primary-saffron);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1.25rem;
}

.preloader-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  color: var(--primary-saffron-dark);
  letter-spacing: 1.5px;
}

/* --------------------------------------------------
   4. STREAMLINED NAVBAR & MOBILE DRAWER
--------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: rgba(255, 249, 242, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(232, 98, 10, 0.15);
  z-index: 1000;
  transition: var(--transition);
  width: 100%;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.12);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.1rem, 4vw, 1.4rem);
  color: var(--navy-dark);
  white-space: nowrap;
}

.nav-brand span {
  color: var(--primary-saffron);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-link {
  font-weight: 700;
  font-size: 0.925rem;
  color: var(--navy-dark);
  position: relative;
  padding: 0.4rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary-saffron);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gradient-saffron);
  color: #FFFFFF !important;
  font-weight: 800;
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(232, 98, 10, 0.35);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 0.925rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  max-width: 100%;
  white-space: nowrap;
  text-align: center;
}

.btn-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 22px rgba(232, 98, 10, 0.5);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--navy-dark);
  cursor: pointer;
  padding: 0.5rem;
}

/* --------------------------------------------------
   5. ULTRA-STUNNING HERO POSTER SECTION
--------------------------------------------------- */
.hero-wrapper-section {
  padding-top: 76px;
  padding-bottom: 4px;
  background: var(--bg-cream);
  width: 100%;
  box-sizing: border-box;
}

.hero-wrapper-section .container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.75rem;
}

.hero-section-card {
  position: relative;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(16, 44, 87, 0.14);
  border: 2px solid var(--secondary-gold);
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-banner-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFFFFF;
  padding: 0;
  overflow: hidden;
}

.hero-banner-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.hero-actions {
  background: #FFFFFF;
  padding: 10px 12px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  border-top: 1.5px solid var(--border-light);
}

.btn-register-banner {
  background: var(--gradient-saffron);
  color: #FFFFFF;
  padding: 10px 22px;
  font-weight: 800;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 18px rgba(232, 98, 10, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  font-size: clamp(0.8rem, 2.2vw, 0.925rem);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-register-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(232, 98, 10, 0.55);
}

.btn-teaser-banner {
  background: var(--navy-dark);
  border: 1.5px solid var(--navy-dark);
  color: #FFFFFF;
  padding: 10px 20px;
  font-weight: 800;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: clamp(0.8rem, 2.2vw, 0.925rem);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-teaser-banner:hover {
  background: var(--navy-deeper);
  transform: translateY(-2px);
}

/* --------------------------------------------------
   6. TIME & COUNTDOWN SECTION (LUXURY GLASSMORPHIC CARD)
--------------------------------------------------- */
.countdown-section {
  background: var(--bg-cream);
  color: var(--navy-dark);
  padding: 14px 10px 22px 10px;
  text-align: center;
  position: relative;
  border-bottom: 2px solid rgba(212, 160, 23, 0.2);
  width: 100%;
}

.join-us-sub {
  font-family: var(--font-accent);
  color: var(--primary-saffron);
  font-size: clamp(1.2rem, 3.5vw, 1.5rem);
  display: block;
}

.join-us-main {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 4vw, 2.1rem);
  font-weight: 900;
  color: var(--navy-dark);
  text-transform: uppercase;
  margin-bottom: 2px;
  letter-spacing: 0.5px;
}

.countdown-title-text {
  font-size: clamp(0.725rem, 2.2vw, 0.85rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 700;
}

.countdown-digital-container {
  display: block;
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  background: var(--gradient-navy);
  border: 2px solid var(--secondary-gold);
  border-radius: 16px;
  padding: 10px 10px;
  box-shadow: 0 10px 28px rgba(16, 44, 87, 0.25);
  animation: pulseGlow 4s infinite alternate;
  box-sizing: border-box;
}

.countdown-digital {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  gap: 4px;
}

.clock-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 0px;
  min-width: 0;
}

.clock-num {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 5.5vw, 2.4rem);
  font-weight: 800;
  color: #FBBF24;
  line-height: 1;
  text-shadow: 0 0 12px rgba(251, 191, 36, 0.45);
}

.clock-label {
  font-family: var(--font-body);
  font-size: clamp(0.55rem, 2vw, 0.7rem);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #E2E8F0;
  font-weight: 700;
  margin-top: 3px;
}

.clock-divider {
  font-size: clamp(1.2rem, 4.5vw, 2rem);
  color: var(--secondary-gold);
  font-weight: 700;
  padding-bottom: 4px;
  animation: clockBlink 1s step-end infinite;
}

/* --------------------------------------------------
   7. WHY TAKSHARYA & COLLEGE BADGES
--------------------------------------------------- */
.why-taksharya {
  background: var(--bg-cream-card);
  position: relative;
  border-bottom: 1px solid var(--border-light);
}

.college-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.75rem;
}

.college-chip {
  background: var(--bg-cream);
  border: 1px solid var(--secondary-gold);
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  color: var(--navy-dark);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.college-chip:hover {
  transform: translateY(-3px);
  background: var(--primary-saffron-light);
  border-color: var(--primary-saffron);
}

.college-chip i {
  color: var(--primary-saffron);
}

/* --------------------------------------------------
   8. WHAT MAKES TAKSHARYA SPECIAL (8 Cards — Symmetrical 4x2)
--------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  width: 100%;
}

.feature-card {
  background: var(--bg-cream-card);
  border: 1.5px solid var(--border-light);
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-saffron);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary-gold);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 58px;
  height: 58px;
  background: var(--primary-saffron-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.15rem;
  color: var(--primary-saffron);
  border: 1px solid rgba(232, 98, 10, 0.2);
  transition: transform 0.4s ease;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.55;
}

/* --------------------------------------------------
   9. EVENT HIGHLIGHTS (8 Photo Cards — Symmetrical 4x2)
--------------------------------------------------- */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
  width: 100%;
}

.highlight-card {
  background: var(--bg-cream-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--secondary-gold);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.highlight-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--navy-dark);
}

.highlight-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
  display: block;
}

.highlight-card:hover .highlight-img-wrap img {
  transform: scale(1.08);
}

.highlight-body {
  padding: 1.25rem;
  flex-grow: 1;
}

.highlight-title {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy-dark);
}

.highlight-text {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.5;
}

@media (min-width: 1050px) {
  .features-grid, .highlights-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

/* --------------------------------------------------
   10. GITA FOR LIFE & CATEGORY FILTER PILLS
--------------------------------------------------- */
.gita-section {
  background: linear-gradient(135deg, #FFF0E5 0%, #FFF9F2 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.gita-header-box {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--secondary-gold);
  margin-bottom: 2.5rem;
  text-align: center;
  width: 100%;
}

.gita-schedule-badge {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  background: var(--primary-saffron);
  color: #FFFFFF;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  margin-top: 1.25rem;
  box-shadow: 0 4px 15px rgba(232, 98, 10, 0.35);
  font-size: clamp(0.85rem, 2.5vw, 1rem);
}

.topic-filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.filter-pill {
  background: #FFFFFF;
  border: 1px solid var(--secondary-gold);
  color: var(--navy-dark);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.filter-pill.active, .filter-pill:hover {
  background: var(--primary-saffron);
  color: #FFFFFF;
  border-color: var(--primary-saffron);
  box-shadow: 0 4px 12px rgba(232, 98, 10, 0.3);
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 0.85rem;
  width: 100%;
}

.topic-chip {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.topic-chip.hidden-topic {
  display: none !important;
}

.topic-chip:hover {
  border-color: var(--primary-saffron);
  transform: translateY(-2px);
  color: var(--primary-saffron-dark);
}

.topic-chip i {
  color: var(--primary-saffron);
}

/* --------------------------------------------------
   11. SPEAKERS SECTION
--------------------------------------------------- */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
  width: 100%;
}

.speaker-card {
  background: var(--bg-cream-card);
  border-radius: var(--radius-md);
  padding: 2rem 1.25rem;
  text-align: center;
  border: 2px solid var(--secondary-gold);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.speaker-avatar {
  width: 130px;
  height: 130px;
  margin: 0 auto 1.15rem auto;
  border-radius: 50%;
  border: 4px solid var(--primary-saffron-light);
  object-fit: cover;
  box-shadow: var(--shadow-md);
  background-color: var(--bg-cream);
}

.speaker-name {
  font-size: 1.25rem;
  color: var(--navy-dark);
  margin-bottom: 0.3rem;
}

.speaker-role {
  color: var(--primary-saffron-dark);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.speaker-quote {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* --------------------------------------------------
   12. 3D COVERFLOW GALLERY SLIDER
--------------------------------------------------- */
.gallery-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1050px;
  margin: 1.5rem auto 0 auto;
  height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  touch-action: pan-y;
  overflow: hidden;
}

.gallery-slider-track {
  position: relative;
  width: 100%;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-slide {
  position: absolute;
  width: 300px;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.7) translateX(0);
  background-color: var(--navy-dark);
  border: 2px solid var(--secondary-gold);
  cursor: pointer;
}

.slide-bg-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(16px) brightness(0.4);
  transform: scale(1.15);
  z-index: 1;
  pointer-events: none;
}

.slide-fg-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
  display: block;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 12px 12px;
  background: linear-gradient(to top, rgba(16, 44, 87, 0.95) 0%, rgba(16, 44, 87, 0) 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.gallery-slide.active {
  opacity: 1;
  z-index: 5;
  transform: scale(1.05) translateX(0);
  pointer-events: auto;
  box-shadow: 0 18px 40px rgba(232, 98, 10, 0.3);
}

.gallery-slide.active .slide-caption {
  opacity: 1;
}

.gallery-slide.prev {
  opacity: 0.75;
  z-index: 3;
  transform: scale(0.85) translateX(-240px);
  pointer-events: auto;
  filter: blur(1px);
}

.gallery-slide.next {
  opacity: 0.75;
  z-index: 3;
  transform: scale(0.85) translateX(240px);
  pointer-events: auto;
  filter: blur(1px);
}

.gallery-slide.far-prev {
  opacity: 0;
  z-index: 1;
  transform: scale(0.7) translateX(-380px);
}

.gallery-slide.far-next {
  opacity: 0;
  z-index: 1;
  transform: scale(0.7) translateX(380px);
}

.slider-controls {
  display: flex;
  gap: 16px;
  margin-top: 15px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--primary-saffron);
  background: #FFFFFF;
  color: var(--primary-saffron);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.15rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
  background: var(--primary-saffron);
  color: #FFFFFF;
  transform: scale(1.08);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  color: #FFFFFF;
  font-size: 2.25rem;
  cursor: pointer;
}

/* --------------------------------------------------
   13. STUDENT REVIEWS / TESTIMONIALS
--------------------------------------------------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  width: 100%;
}

.review-card {
  background: var(--bg-cream-card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.stars {
  color: #FBBF24;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.review-text {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.review-author {
  font-weight: 700;
  color: var(--primary-saffron-dark);
  font-size: 0.9rem;
}

/* --------------------------------------------------
   14. EVENT SCHEDULE (DAY 1 VS DAY 2 TABS)
--------------------------------------------------- */
.schedule-tabs-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.schedule-tab-btn {
  background: #FFFFFF;
  border: 2px solid var(--secondary-gold);
  color: var(--navy-dark);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.schedule-tab-btn.active, .schedule-tab-btn:hover {
  background: var(--gradient-saffron);
  color: #FFFFFF;
  border-color: var(--primary-saffron);
  box-shadow: 0 6px 20px rgba(232, 98, 10, 0.4);
}

.timeline-container {
  max-width: 800px;
  width: 100%;
  margin: 1.5rem auto 0 auto;
  position: relative;
  padding-left: 2rem;
  box-sizing: border-box;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  width: 4px;
  background: var(--primary-saffron-light);
  border-radius: var(--radius-full);
}

.timeline-item {
  position: relative;
  margin-bottom: 1.5rem;
  background: var(--bg-cream-card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.timeline-dot {
  position: absolute;
  left: -2.35rem;
  top: 1.35rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary-saffron);
  border: 3px solid var(--bg-cream);
  box-shadow: 0 0 0 2px var(--primary-saffron);
}

.timeline-time {
  display: inline-block;
  font-weight: 800;
  color: var(--primary-saffron);
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.timeline-activity {
  font-size: 1.05rem;
  color: var(--navy-dark);
}

/* --------------------------------------------------
   15. FAQ ACCORDION
--------------------------------------------------- */
.accordion {
  max-width: 840px;
  width: 100%;
  margin: 2.5rem auto 0 auto;
}

.accordion-item {
  background: var(--bg-cream-card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 0.85rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  width: 100%;
  padding: 1.15rem 1.25rem;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 0.5rem;
}

.accordion-icon {
  font-size: 1.1rem;
  color: var(--primary-saffron);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.accordion-item.active .accordion-content {
  padding: 0 1.25rem 1.15rem 1.25rem;
  max-height: 200px;
}

/* --------------------------------------------------
   16. VENUE & ORGANIZER
--------------------------------------------------- */
.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
  width: 100%;
}

.venue-info {
  background: var(--bg-cream-card);
  border: 2px solid var(--secondary-gold);
  border-radius: var(--radius-md);
  padding: clamp(1.25rem, 4vw, 2.25rem);
  box-shadow: var(--shadow-sm);
  width: 100%;
}

.venue-detail-item {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.venue-detail-item i {
  font-size: 1.35rem;
  color: var(--primary-saffron);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.venue-map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--secondary-gold);
  min-height: 320px;
  width: 100%;
}

.venue-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: none;
}

/* --------------------------------------------------
   17. COURSES PAGE SPECIFIC STYLES
--------------------------------------------------- */
.courses-hero {
  background: linear-gradient(135deg, #0A1B36 0%, #102C57 60%, #1E3A8A 100%);
  padding: 120px 1.25rem 50px 1.25rem;
  text-align: center;
  color: #FFFFFF;
  border-bottom: 3px solid var(--secondary-gold);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.courses-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 50% 30%, rgba(232, 98, 10, 0.18), transparent 70%);
  pointer-events: none;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
  width: 100%;
}

.course-card {
  background: var(--bg-cream-card);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--secondary-gold);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.course-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--navy-dark);
}

.course-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
  display: block;
}

.course-card:hover .course-img-wrap img {
  transform: scale(1.08);
}

.course-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(16, 44, 87, 0.9);
  color: #FBBF24;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid var(--secondary-gold);
  backdrop-filter: blur(4px);
}

.course-card-header {
  background: var(--gradient-saffron);
  padding: 1.5rem 1.25rem;
  color: #FFFFFF;
}

.course-card-title {
  font-size: 1.35rem;
  color: #FFFFFF;
  margin-bottom: 0.3rem;
}

.course-card-promise {
  font-size: 0.9rem;
  opacity: 0.92;
}

.course-card-body {
  padding: 1.5rem 1.25rem;
  flex-grow: 1;
}

.checklist-title {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--primary-saffron-dark);
  margin-bottom: 0.85rem;
  letter-spacing: 0.05em;
}

.course-checklist {
  list-style: none;
}

.course-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
  font-size: 0.925rem;
  color: var(--text-main);
}

.course-checklist li i {
  color: #10B981;
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* --------------------------------------------------
   18. ULTRA-PREMIUM REGISTRATION FORM & MODAL STYLING
--------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 27, 54, 0.88);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 1rem;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #FFFFFF;
  border-radius: 24px;
  width: 100%;
  max-width: 530px;
  padding: clamp(1.5rem, 5vw, 2.25rem);
  box-shadow: 0 25px 65px rgba(10, 27, 54, 0.45), 0 0 0 2px var(--secondary-gold);
  position: relative;
  max-height: 92vh;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  color: var(--navy-dark);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.modal-close:hover {
  background: var(--primary-saffron);
  color: #FFFFFF;
  transform: rotate(90deg);
}

.form-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--primary-saffron-light);
  color: var(--primary-saffron-dark);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.775rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(232, 98, 10, 0.2);
}

.form-group {
  margin-bottom: 1.15rem;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.35rem;
}

.input-with-icon {
  position: relative;
  width: 100%;
}

.input-with-icon i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-saffron);
  font-size: 1rem;
  pointer-events: none;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.6rem;
  border: 1.5px solid var(--border-light);
  border-radius: 12px;
  font-size: 0.925rem;
  font-family: var(--font-body);
  color: var(--navy-dark);
  background: #FFFDF9;
  transition: var(--transition);
  box-sizing: border-box;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23E8620A' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-saffron);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(232, 98, 10, 0.15);
}

.form-submit-btn {
  width: 100%;
  padding: 0.95rem;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 14px;
  margin-top: 0.5rem;
  background: var(--gradient-saffron);
  box-shadow: 0 8px 24px rgba(232, 98, 10, 0.4);
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(232, 98, 10, 0.55);
}

/* VIP Entry Pass Card Badge */
.vip-pass-card {
  background: linear-gradient(135deg, #102C57 0%, #0A1B36 100%);
  border: 2px solid var(--secondary-gold);
  border-radius: 16px;
  padding: 20px;
  color: #FFFFFF;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  margin: 1.25rem 0;
  position: relative;
  overflow: hidden;
}

.vip-pass-card::after {
  content: 'TAKSHARYA VIP';
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.vip-pass-header {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #FBBF24;
  letter-spacing: 1px;
  border-bottom: 1px dashed rgba(255,255,255,0.2);
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.vip-pass-id {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  color: var(--primary-saffron);
  font-weight: 800;
  background: rgba(255,255,255,0.1);
  display: inline-block;
  padding: 4px 16px;
  border-radius: 8px;
  margin: 8px 0;
  border: 1px solid var(--primary-saffron);
}

/* Printable styles */
@media print {
  body * { visibility: hidden; }
  .vip-pass-card, .vip-pass-card * { visibility: visible; }
  .vip-pass-card { position: absolute; left: 0; top: 0; width: 100%; }
}

/* --------------------------------------------------
   19. FIXED FLOATING ACTION BUTTONS & MOBILE BOTTOM BAR
--------------------------------------------------- */
.floating-whatsapp {
  position: fixed !important;
  bottom: 25px !important;
  right: 25px !important;
  width: 56px !important;
  height: 56px !important;
  background: #25D366 !important;
  color: #FFFFFF !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.85rem !important;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45) !important;
  z-index: 9999 !important;
  transition: var(--transition) !important;
  text-decoration: none !important;
}

.floating-whatsapp:hover {
  transform: scale(1.08) translateY(-2px) !important;
}

.floating-quick-reg {
  position: fixed !important;
  bottom: 25px !important;
  left: 25px !important;
  z-index: 9999 !important;
}

.floating-quick-reg .btn-cta {
  padding: 12px 24px !important;
  border-radius: 30px !important;
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  box-shadow: 0 8px 25px rgba(232, 98, 10, 0.5) !important;
  white-space: nowrap !important;
}

.mobile-bottom-bar {
  display: none;
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: rgba(16, 44, 87, 0.96) !important;
  backdrop-filter: blur(10px) !important;
  padding: 10px 14px !important;
  border-top: 2px solid var(--secondary-gold) !important;
  z-index: 9999 !important;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2) !important;
  width: 100% !important;
}

.mobile-bottom-bar .btn-cta {
  width: 100% !important;
  padding: 0.75rem !important;
  font-size: 0.95rem !important;
}

/* --------------------------------------------------
   20. PREMIUM 4-COLUMN FOOTER SECTION
--------------------------------------------------- */
.footer {
  background: linear-gradient(135deg, #0A1B36 0%, #102C57 100%);
  color: #94A3B8;
  padding: 4.5rem 1.25rem 2rem 1.25rem;
  border-top: 4px solid var(--secondary-gold);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(232, 98, 10, 0.1), transparent 60%);
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: #FFFFFF;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.footer-brand span {
  color: var(--primary-saffron);
}

.footer-tagline {
  font-family: var(--font-accent);
  color: #FBBF24;
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
  display: block;
}

.footer-desc {
  font-size: 0.925rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #CBD5E1;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--primary-saffron);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(232, 98, 10, 0.4);
}

.footer-heading {
  color: #FFFFFF;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--secondary-gold);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: #CBD5E1;
  font-size: 0.925rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-saffron);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.925rem;
  color: #CBD5E1;
}

.footer-contact-item i {
  color: var(--primary-saffron);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: #94A3B8;
  position: relative;
  z-index: 2;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: #94A3B8;
}

.footer-bottom-links a:hover {
  color: var(--primary-saffron);
}

/* --------------------------------------------------
   21. STRICT RESPONSIVE BREAKPOINTS (MOBILE & TABLET VIEWPORT FOLD OPTIMIZATION)
--------------------------------------------------- */
@media (max-width: 992px) {
  .section-padding { padding: 3rem 1rem; }
  .venue-grid { grid-template-columns: 1fr; }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 70px);
    background: var(--bg-cream-card);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-bottom: 3px solid var(--secondary-gold);
    display: none;
    overflow-y: auto;
    z-index: 999;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-toggle { display: block; }
}

@media (max-width: 768px) {
  .hero-wrapper-section {
    padding-top: 72px;
    padding-bottom: 4px;
  }

  .hero-section-card {
    border-radius: 16px;
    border-width: 1.5px;
  }

  .hero-actions {
    padding: 8px 10px;
    gap: 0.5rem;
  }

  .btn-register-banner, .btn-teaser-banner {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .countdown-section {
    padding: 8px 8px 14px 8px;
  }

  .join-us-sub { font-size: 1.05rem; }
  .join-us-main { font-size: 1.25rem; margin-bottom: 2px; }
  .countdown-title-text { font-size: 0.7rem; margin-bottom: 6px; }

  .countdown-digital-container {
    padding: 8px;
    border-radius: 14px;
    max-width: 420px;
  }

  .clock-num { font-size: 1.5rem; }
  .clock-label { font-size: 0.55rem; }
  .clock-divider { font-size: 1.25rem; }
}

@media (max-width: 640px) {
  .section-padding { padding: 2.25rem 0.85rem; }
  
  .hero-wrapper-section {
    padding-top: 72px;
    padding-bottom: 2px;
  }

  .hero-section-card {
    border-radius: 14px;
  }

  .hero-actions {
    flex-direction: column;
    padding: 8px;
    gap: 0.45rem;
  }
  
  .btn-register-banner, .btn-teaser-banner {
    width: 100%;
    justify-content: center;
    padding: 8px 12px;
    font-size: 0.8rem;
    box-sizing: border-box;
  }

  .btn-cta {
    padding: 0.55rem 0.95rem;
    font-size: 0.85rem;
  }

  .features-grid, .highlights-grid, .speakers-grid, .reviews-grid, .courses-grid {
    grid-template-columns: 1fr !important;
    gap: 1.15rem;
  }

  .gallery-slider-wrapper { height: 320px; }
  .gallery-slider-track { height: 240px; }
  .gallery-slide { width: 200px; height: 240px; border-radius: 14px; }
  .gallery-slide.prev { transform: scale(0.8) translateX(-105px); }
  .gallery-slide.next { transform: scale(0.8) translateX(105px); }
  .gallery-slide.far-prev { transform: scale(0.6) translateX(-180px); opacity: 0; }
  .gallery-slide.far-next { transform: scale(0.6) translateX(180px); opacity: 0; }
  
  .gita-schedule-badge {
    flex-direction: column;
    padding: 0.75rem 1rem;
    gap: 0.5rem;
  }

  .timeline-container {
    padding-left: 1.4rem;
    margin-left: 0.2rem;
  }
  .timeline-dot {
    left: -1.75rem;
    width: 15px;
    height: 15px;
    top: 1.2rem;
  }

  .floating-quick-reg { display: none !important; }
  .floating-whatsapp {
    bottom: 75px !important;
    right: 18px !important;
    width: 48px !important;
    height: 48px !important;
    font-size: 1.6rem !important;
  }
  .mobile-bottom-bar { display: block !important; }
  body { padding-bottom: 65px; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
