@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800&family=Inter:wght@300;400;500;600&family=Rozha+One&family=Yatra+One&display=swap');

:root {
  --saffron: #FF9933;
  --saffron-dark: #cc7a29;
  --gold: #FFD700;
  --gold-light: #ffea70;
  --black-deep: #0a0202;
  --maroon-deep: #2a0404;
  --maroon-light: #520808;
  --text-light: #fefefe;
  --text-gray: #e0e0e0;
  --divine-glow: 0 0 20px rgba(255, 153, 51, 0.6);
  --gold-glow: 0 0 15px rgba(255, 215, 0, 0.4);
  
  --font-en-title: 'Cinzel', serif;
  --font-hi-title: 'Yatra One', serif;
  --font-hi-elegant: 'Rozha One', serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--black-deep);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Background Gradients */
.bg-gradient-maroon {
  background: linear-gradient(135deg, var(--black-deep) 0%, var(--maroon-deep) 100%);
}

.bg-texture {
  position: relative;
  background-color: var(--black-deep);
  background-image: radial-gradient(circle at center, rgba(82, 8, 8, 0.4) 0%, rgba(10, 2, 2, 1) 100%);
}

<!-- .bg-texture::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
} -->

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-hi-title), var(--font-en-title);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gold);
  line-height: 1.3;
}

.title-elegant {
  font-family: var(--font-hi-elegant), var(--font-en-title);
  letter-spacing: 0.5px;
}

.text-saffron { color: var(--saffron); }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }

p {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Header & Navbar */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 0;
  transition: all 0.4s ease;
  z-index: 1000;
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background: rgba(10, 2, 2, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 153, 51, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.logo {
  font-family: var(--font-hi-elegant);
  font-size: 2rem;
  color: var(--saffron);
  text-decoration: none;
  text-shadow: var(--divine-glow);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span.title-en {
  color: var(--text-light);
  font-size: 1.2rem;
  font-family: var(--font-en-title);
  text-shadow: none;
  letter-spacing: 2px;
}

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

.nav-links li a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--saffron);
  transition: width 0.3s ease;
  box-shadow: var(--divine-glow);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--saffron);
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.8rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.4s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.btn-primary {
  background: linear-gradient(45deg, var(--saffron-dark), var(--saffron));
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 153, 51, 0.4);
}

.btn-primary::before {
  background: linear-gradient(45deg, var(--saffron), var(--gold));
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 153, 51, 0.6);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: inset 0 0 10px rgba(255, 215, 0, 0) , 0 0 10px rgba(255, 215, 0, 0);
}

.btn-outline:hover {
  background: rgba(255, 215, 0, 0.1);
  box-shadow: inset 0 0 15px rgba(255, 215, 0, 0.2) , 0 0 15px rgba(255, 215, 0, 0.3);
  transform: translateY(-3px);
  color: var(--gold-light);
}

/* Sections Space */
section {
  padding: 100px 0;
  position: relative;
}

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

.section-title::after {
  content: 'ॐ';
  font-size: 2rem;
  color: var(--saffron);
  opacity: 0.6;
  margin-top: 15px;
  text-shadow: var(--divine-glow);
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Cards & Layouts */
.grid {
  display: grid;
  gap: 30px;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.premium-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 12px;
  padding: 40px 30px;
  backdrop-filter: blur(5px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.premium-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--saffron), transparent);
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.premium-card:hover::before {
  transform: scaleX(1);
}

.premium-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 20px rgba(255, 153, 51, 0.1);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 215, 0, 0.3);
}

.card-icon {
  font-size: 3rem;
  color: var(--saffron);
  margin-bottom: 20px;
  text-shadow: var(--divine-glow);
}

/* Quote Section */
.quote-box {
  background: linear-gradient(135deg, var(--maroon-light) 0%, var(--maroon-deep) 100%);
  border-left: 5px solid var(--gold);
  padding: 40px;
  border-radius: 0 15px 15px 0;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  margin: 40px 0;
}

.quote-box::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 6rem;
  font-family: var(--font-en-title);
  color: rgba(255, 215, 0, 0.15);
  line-height: 1;
}

.quote-text {
  font-size: 1.5rem;
  font-family: var(--font-hi-elegant);
  color: var(--text-light);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Form Styles */
.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 10px rgba(255, 153, 51, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.form-control.error {
  border-color: #ff4d4d;
  box-shadow: 0 0 10px rgba(255, 77, 77, 0.2);
}

/* Footer */
footer {
  background: #050101;
  padding: 60px 0 20px;
  border-top: 1px solid rgba(255, 153, 51, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
}

/* Media Queries */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: rgba(10, 2, 2, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    border-left: 1px solid rgba(255, 153, 51, 0.2);
  }

  .nav-links.nav-active {
    right: 0;
    box-shadow: -10px 0 50px rgba(0,0,0,0.8);
  }

  .nav-links li {
    margin: 15px 0;
  }
  
  .nav-links li a {
    font-size: 1.2rem;
  }

  .hamburger {
    display: block;
    z-index: 1001; /* Above nav links */
  }
  
  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  section { padding: 60px 0; }
  .logo { font-size: 1.5rem; }
  .logo span.title-en { font-size: 0.9rem; }
  .quote-text { font-size: 1.2rem; }
  .quote-box { padding: 30px 20px; }
  .btn { padding: 12px 25px; font-size: 0.9rem; }
}
