/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Inter:wght@300;400;500;600&family=Great+Vibes&display=swap');

:root {
  /* Colors */
  --bg-color: #100b1a; /* Deep mystical violet/blue */
  --bg-secondary: #0b0712;
  --bg-tertiary: #1a122e;
  --text-main: #E2E8F0;
  --text-dim: #A89FBB;
  --gold-accent: #D4AF37;
  --gold-hover: #F9DA78;
  --gold-dark: #AA8B2B;
  
  /* Fonts */
  --font-heading: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  --font-script: 'Great Vibes', cursive;
  
  /* Utilities */
  --border-radius: 4px; /* More elegant, sharp corners */
  --transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Layout Utilities */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

.legal-container {
  max-width: 1000px;
  margin: 0 auto;
  width: 90%;
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .legal-container { width: 95%; }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  background-image: radial-gradient(circle at top, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--gold-accent);
}

.script-text {
  font-family: var(--font-script);
  color: var(--gold-accent);
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 24px; /* mb-6 equivalent */
  position: relative;
  z-index: 2;
  display: inline-block;
  text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

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

a:hover {
  color: var(--gold-hover);
}

ul {
  list-style: none;
}

/* Premium Buttons */
.btn-primary {
  display: inline-block;
  background: transparent;
  color: var(--gold-accent);
  padding: 14px 34px;
  border-radius: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid var(--gold-accent);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--transition);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
  transition: var(--transition);
  z-index: -1;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: var(--gold-accent);
  color: var(--bg-color);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.6), 0 0 10px rgba(212, 175, 55, 0.4) inset;
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--text-main);
  padding: 14px 34px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--gold-accent);
  color: var(--gold-accent);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3) inset, 0 0 10px rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

/* Cosmic Rotating Image Background */
.cosmic-bg {
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  z-index: -2;
  background-image: url('../images/mandala-bg.jpg');
  background-size: 800px;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.15;
  mix-blend-mode: lighten;
  /* Crush near-blacks into absolute pure black so lighten blend makes them 100% transparent */
  filter: contrast(2) brightness(0.9);
  animation: slowSpin 160s linear infinite;
  pointer-events: none;
}

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

@media (max-width: 768px) {
  .cosmic-bg { background-size: 400px; }
}

/* Header & Navbar */
header {
  background: transparent;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.4s ease;
}

header.scrolled {
  position: fixed;
  background: rgba(16, 11, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Site Logo */
.logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo {
  height: 40px;
  width: 40px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-links li a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 5px;
}

.nav-links li a::after {
  content: '✦';
  position: absolute;
  font-size: 10px;
  color: var(--gold-accent);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  transition: var(--transition);
  opacity: 0;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  transform: translateX(-50%) scale(1);
  opacity: 1;
  bottom: -5px;
}

.mobile-menu-btn {
  display: none;
  color: var(--gold-accent);
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center; /* Default centered */
  position: relative;
  overflow: hidden;
  padding-top: 100px; /* Safer clearance for fixed navbar */
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 5%;
  position: relative;
  z-index: 2;
  gap: 60px;
}

/* Split layout overrides */
.hero-split {
  text-align: left;
}

.hero-split .hero-container {
  justify-content: space-between;
}

.hero-content {
  max-width: 900px;
  transition: var(--transition);
}

.hero-text-side {
  max-width: 650px;
}

/* Image Side Styles */
.hero-image-side {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  animation: floatIdle 6s ease-in-out infinite;
}

.hero-img-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.2));
}

.img-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, var(--bg-color) 80%);
  z-index: 1;
}

.hero h1 {
  font-size: 5rem;
  line-height: 1.2;
  letter-spacing: 2px;
  margin-bottom: 25px;
  background: linear-gradient(to bottom, #FFF 30%, var(--gold-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-split .hero-astro-badge {
    margin: 15px 0 25px;
    justify-content: flex-start;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-dim);
  margin-bottom: 35px;
  letter-spacing: 1px;
  line-height: 1.8;
}

/* Hero Astro Branding badge container */
.hero-astro-badge {
  margin: 15px auto 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.astro-meta {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 8px 25px;
  border-radius: 50px;
  display: inline-flex;
  flex-direction: column;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.astro-name {
  color: var(--gold-accent);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.astro-exp {
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Hero Responsive */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    padding-top: 120px;
    gap: 40px;
  }

  .hero-split {
    text-align: center !important;
  }

  .hero-text-side {
    max-width: 100%;
  }

  .hero-image-side {
    justify-content: center;
    width: 100%;
  }

  .hero-img-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-split .hero-astro-badge {
    justify-content: center;
  }

  .hero-split .hero-content div[style*="justify-content: flex-start"] {
    justify-content: center !important;
  }

  .hero h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-img-wrapper {
    max-width: 300px;
  }
}

/* Section Common */
.section {
  padding: 100px 5%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 60px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title-icon {
  font-size: 24px;
  color: var(--gold-accent);
  margin-bottom: -15px;
  z-index: 3;
}

/* Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Cards (Premium Look) */
.glass-card {
  background: rgba(26, 18, 46, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.15) 50%, transparent 70%);
  background-size: 200% 200%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: bgShift 3s ease infinite;
}

@keyframes bgShift {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

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

.glass-card:hover {
  transform: translateY(-8px);
  background: rgba(30, 20, 50, 0.95);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.05) inset;
}

.glass-card i.main-icon, .glass-card .icon {
  font-size: 50px;
  color: var(--gold-accent);
  margin-bottom: 25px;
  display: inline-block;
  transition: var(--transition);
}

.glass-card:hover i.main-icon {
  transform: scale(1.1);
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.glass-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #fff;
}

.glass-card p {
  color: var(--text-dim);
  margin-bottom: 25px;
}

/* Form Elements & Inputs */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23D4AF37%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  background-size: 0.65em auto !important;
  padding-right: 40px !important;
}

/* Enhancing visibility for Date & Time picker icons on dark background */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.7;
  cursor: pointer;
  transition: var(--transition);
}

input[type="date"]::-webkit-calendar-picker-indicator:hover,
input[type="time"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
  filter: invert(1) brightness(1.2);
}

option {
  background-color: var(--bg-tertiary) !important;
  color: #fff !important;
  padding: 10px !important;
}

/* Footer */
footer {
  background: var(--bg-secondary);
  padding: 80px 5% 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.footer-col h4 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: #fff;
  display: inline-block;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background: var(--gold-accent);
  bottom: -10px;
  left: 0;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li a {
  color: var(--text-dim);
  font-size: 0.95rem;
}

.footer-col ul li a:hover {
  color: var(--gold-accent);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-dim);
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}

/* WhatsApp Floating CTA Button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: linear-gradient(135deg, #25d366 0%, #128c3e 100%);
  color: #FFF;
  border-radius: 50px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px 0 18px;
  height: 56px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0,0,0,0.3);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: waPulse 2.5s ease-in-out infinite;
}

.whatsapp-float i {
  font-size: 28px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.whatsapp-float .wa-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
  opacity: 1;
  max-width: 160px;
  overflow: hidden;
  transition: max-width 0.4s ease, opacity 0.3s ease;
}

.whatsapp-float:hover {
  background: linear-gradient(135deg, #2be06f 0%, #1aa34a 100%);
  transform: translateY(-3px) scale(1.04);
  color: #fff;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0,0,0,0.3);
  animation: none;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0,0,0,0.3); }
  50% { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.65), 0 2px 8px rgba(0,0,0,0.3); }
}

@media (max-width: 768px) {
  .whatsapp-float {
    padding: 0;
    width: 60px; /* Slightly larger for easier touch */
    height: 60px;
    display: grid;
    place-items: center;
    bottom: 25px;
    right: 20px;
  }
  .whatsapp-float i {
    font-size: 32px;
    margin: 0;
  }
  .whatsapp-float .wa-label {
    display: none;
  }
}

/* Responsive */
.mobile-nav-profile, 
.mob-nav-cta {
  display: none;
}

@media (max-width: 992px) {
  .hero h1 { font-size: 3.5rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .script-text { font-size: 2rem; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 290px; /* Slightly narrower to leave more room to click 'out' */
    height: 100vh;
    background: rgba(16, 11, 26, 0.99);
    flex-direction: column;
    padding: 30px 20px 20px; /* Minimal padding */
    text-align: center;
    border-right: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 15px 0 40px rgba(0,0,0,0.95);
    transition: left 0.4s cubic-bezier(0.25, 1, 0.25, 1);
    z-index: 999;
    align-items: center;
    overflow-y: auto;
    overflow-x: hidden;
  }
  
  .nav-links li {
    width: auto;
    margin-bottom: 3px; /* Closest possible without touching */
  }

  .nav-links li a {
    display: inline-block;
    width: auto;
    padding: 6px 15px; /* compact padding */
    font-size: 13px; /* slightly smaller font to fit more */
    border-bottom: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
  }

  .nav-links li a::after {
    left: 50%;
    transform: translateX(-50%) scale(0);
    bottom: 5px;
  }

  .nav-links li a.active {
    color: var(--gold-accent);
    background: none;
    font-weight: 600;
  }
  
  .nav-socials {
    margin-top: 15px;
    padding: 15px 0;
    display: flex;
    gap: 15px;
    justify-content: center;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.05);
  }

  /* Mobile Profile Enhancement */
  .mobile-nav-profile {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    width: 100%;
  }

  .mobile-nav-profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-accent);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  }

  .mob-prof-info {
    text-align: center;
  }

  .mob-prof-info strong {
    display: block;
    color: var(--gold-accent);
    font-size: 1.1rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
  }

  .mob-prof-info span {
    display: block;
    color: var(--text-dim);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
  }

  /* Mobile WhatsApp CTA */
  .mob-nav-cta {
    display: block !important;
    margin-top: 20px;
    width: 100%;
    padding: 0 10px;
  }

  .mob-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366; /* WhatsApp Green */
    color: #fff;
    padding: 14px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
  }

  .mob-wa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: #128C7E;
  }

  .mob-wa-btn i {
    font-size: 1.2rem;
  }

  .social-icon {
    width: 38px;
    height: 38px;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .mobile-menu-btn { 
    display: block; 
    position: relative;
    z-index: 1000;
  }
  
  .grid-3 { grid-template-columns: 1fr; gap: 30px; }
  
  .hero { padding-top: 80px; height: auto; min-height: 100vh; }
  .hero h1 { font-size: 2.2rem; letter-spacing: 1px; line-height: 1.2; margin-bottom: 20px; }
  .script-text { font-size: 1.8rem; margin-bottom: 25px; }
  .hero p { font-size: 1rem; margin-bottom: 35px; }
  
  .hero-content {
      padding: 60px 20px;
  }

  /* Make buttons full width on small screens */
  .btn-primary, .btn-outline { 
    display: block;
    width: 100%; 
    text-align: center; 
    margin-bottom: 15px; 
    padding: 16px 20px; 
    letter-spacing: 1px;
  }
  
  .section { padding: 60px 5%; }
  .section-title { font-size: 1.8rem; margin-bottom: 40px; }
  .section-title h2 { font-size: 2rem; }
  
  .glass-card {
    padding: 30px 20px;
  }

  .cosmic-bg::before { width: 300px; height: 300px; }
  .cosmic-bg::after { width: 400px; height: 400px; }
}

/* Hero Particles */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Behind text but above the dark gradient */
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: radial-gradient(circle, rgba(212,175,55,1) 0%, rgba(212,175,55,0) 70%);
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0;
}

@keyframes floatParticle {
  0% { transform: translateY(0) scale(0.5); opacity: 0; }
  20% { opacity: 0.8; transform: translateY(-20px) scale(1); }
  80% { opacity: 0.8; transform: translateY(-80px) scale(0.8); }
  100% { transform: translateY(-100px) scale(0.1); opacity: 0; }
}

/* Reveal on Scroll */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Floating Elements Idle Animation */
.floating-element {
  animation: floatIdle 6s ease-in-out infinite;
}

.floating-element:nth-child(2) {
  animation-delay: 1s;
}

.floating-element:nth-child(3) {
  animation-delay: 2s;
}

@keyframes floatIdle {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* Gold Shimmer Text Effect */
.shimmer-text {
  background: linear-gradient(90deg, #D4AF37 0%, #F9DA78 25%, #FFF 50%, #F9DA78 75%, #D4AF37 100%);
  background-size: 200% auto;
  color: #000;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

/* AJAX Modal Styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 7, 26, 0.9);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  width: 100%;
  max-width: 600px;
  position: relative;
  transform: translateY(-50px) scale(0.95);
  transition: var(--transition);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 24px;
  color: var(--text-dim);
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.close-modal:hover {
  color: var(--gold-accent);
  transform: rotate(90deg);
}

/* Swiper Carousel Overrides */
/* Swiper Carousel Overrides */
.cosmic-carousel {
  position: relative;
  padding: 0 50px;
}

.cosmic-carousel .swiper {
  overflow: hidden;
  padding-bottom: 50px;
}

.cosmic-carousel .swiper-slide {
  height: auto;
}

.cosmic-carousel .swiper-button-prev,
.cosmic-carousel .swiper-button-next {
  width: 44px;
  height: 44px;
  background: rgba(26, 18, 46, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cosmic-carousel .swiper-button-prev::after,
.cosmic-carousel .swiper-button-next::after {
  font-size: 16px;
  color: var(--gold-accent);
  font-weight: bold;
}

.cosmic-carousel .swiper-button-prev:hover,
.cosmic-carousel .swiper-button-next:hover {
  background: var(--gold-accent);
  border-color: var(--gold-accent);
}

.cosmic-carousel .swiper-button-prev:hover::after,
.cosmic-carousel .swiper-button-next:hover::after {
  color: #000;
}

.cosmic-carousel .swiper-pagination-bullet {
  background: rgba(212, 175, 55, 0.3);
  opacity: 1;
  width: 10px;
  height: 10px;
}

.cosmic-carousel .swiper-pagination-bullet-active {
  background: var(--gold-accent);
  width: 28px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .cosmic-carousel { padding: 0 10px; }
  .cosmic-carousel .swiper-button-prev,
  .cosmic-carousel .swiper-button-next { display: none; }
}

/* Social Icon Styling */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-accent);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon:hover {
  background: var(--gold-accent);
  color: #000;
  border-color: var(--gold-accent);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.social-icon i {
  font-size: 1.1rem;
}

@media (min-width: 992px) {
  .nav-socials { display: none; }
}

/* Base path config */
