/* ===== ARADHYYA – SPIRITUAL PLATFORM CSS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Crimson+Text:ital,wght@0,400;0,600;1,400&family=Nunito:wght@300;400;500;600;700&display=swap');

:root {
  --saffron: #FF6B00;
  --saffron-light: #FF8C33;
  --saffron-dark: #CC5500;
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --gold-dark: #A8860A;
  --white: #FFFFFF;
  --cream: #FFF8F0;
  --dark: #1A1A1A;
  --dark2: #2D2D2D;
  --gray: #6B6B6B;
  --light-gray: #F5F5F5;
  --border: #E8D5B0;
  --success: #2E7D32;
  --shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
  --shadow-lg: 0 8px 40px rgba(255, 107, 0, 0.2);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--dark);
  color: var(--gold-light);
  text-align: center;
  padding: 8px 20px;
  font-size: 13px;
  font-family: 'Crimson Text', serif;
  letter-spacing: 0.5px;
}

.topbar span { margin: 0 15px; }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--white);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  box-shadow: 0 2px 10px rgba(255,107,0,0.3);
}

.logo-text {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--saffron), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-sub {
  font-size: 9px;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  -webkit-text-fill-color: var(--gray);
}

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

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 6px;
  transition: all 0.3s;
  position: relative;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--saffron);
  background: rgba(255,107,0,0.05);
}

.nav-cta {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark)) !important;
  color: white !important;
  padding: 9px 20px !important;
  border-radius: 25px !important;
  font-size: 13px !important;
  box-shadow: 0 3px 12px rgba(255,107,0,0.35);
  transition: all 0.3s !important;
}

.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,0,0.45) !important; background: rgba(0,0,0,0) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: 0.3s; }

/* ===== HERO SECTION ===== */
.hero {
  min-height: 90vh;
  background: linear-gradient(135deg, #FFF8F0 0%, #FFF3E0 40%, #FFF8E1 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.25);
  color: var(--saffron);
  padding: 7px 18px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(32px, 4vw, 56px);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-family: 'Crimson Text', serif;
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 30px;
  font-style: italic;
}

.hero-desc {
  color: var(--dark2);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }

.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(255,107,0,0.4);
  font-family: 'Nunito', sans-serif;
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(255,107,0,0.5); }

.btn-secondary {
  background: transparent;
  color: var(--saffron-dark);
  border: 2px solid rgba(255,107,0,0.35);
  padding: 13px 30px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  font-family: 'Nunito', sans-serif;
}

.btn-secondary:hover { border-color: var(--gold); background: rgba(212,175,55,0.1); }

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.stat { text-align: center; }
.stat-num {
  font-family: 'Cinzel', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--saffron);
}
.stat-label { font-size: 11px; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-mandala {
  width: 380px;
  height: 380px;
  position: relative;
  animation: slow-spin 30s linear infinite;
}

@keyframes slow-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.mandala-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}

.ring-1 {
  inset: 0;
  border-color: rgba(212,175,55,0.3);
  animation: slow-spin 20s linear infinite reverse;
}
.ring-2 {
  inset: 15%;
  border-color: rgba(255,107,0,0.4);
  animation: slow-spin 15s linear infinite;
}
.ring-3 {
  inset: 30%;
  border-color: rgba(212,175,55,0.5);
  animation: slow-spin 10s linear infinite reverse;
}

.mandala-center {
  position: absolute;
  inset: 40%;
  background: radial-gradient(circle, var(--saffron) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 0 40px rgba(255,107,0,0.6);
  animation: slow-spin 30s linear infinite reverse;
}

/* ===== SECTION STYLES ===== */
.section { padding: 80px 5%; }
.section-light { background: var(--white); }
.section-cream { background: var(--cream); }
.section-dark { background: var(--dark); color: var(--white); }

.section-header { text-align: center; margin-bottom: 50px; }

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(212,175,55,0.1));
  border: 1px solid rgba(255,107,0,0.2);
  color: var(--saffron);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(24px, 3vw, 38px);
  color: var(--dark);
  margin-bottom: 12px;
}

.section-dark .section-title { color: var(--white); }

.section-title span { color: var(--saffron); }

.section-sub {
  font-family: 'Crimson Text', serif;
  font-size: 17px;
  color: var(--gray);
  font-style: italic;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  transform: scaleX(0);
  transition: 0.3s;
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(212,175,55,0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 18px;
  transition: 0.3s;
}

.service-card:hover .service-icon { background: linear-gradient(135deg, var(--saffron), var(--gold)); transform: scale(1.1); }

.service-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 8px;
}

.service-card p { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 18px; }

.service-link {
  color: var(--saffron);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}

.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--saffron);
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  z-index: 1;
}

.product-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, #FFF3E0, #FFF8E1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
}

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

.product-body { padding: 18px; }

.product-category {
  font-size: 11px;
  color: var(--saffron);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-name {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.product-desc { font-size: 12px; color: var(--gray); line-height: 1.6; margin-bottom: 15px; }

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.product-price {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--saffron);
}

.product-price span { font-size: 13px; color: var(--gray); font-family: 'Nunito', sans-serif; font-weight: 400; }

.btn-book {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: white;
  border: none;
  padding: 9px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Nunito', sans-serif;
}

.btn-book:hover { transform: scale(1.05); box-shadow: 0 4px 15px rgba(255,107,0,0.4); }

/* ===== HOW IT WORKS ===== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.how-step {
  text-align: center;
  position: relative;
}

.step-num {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin: 0 auto 16px;
  box-shadow: 0 4px 15px rgba(255,107,0,0.35);
}

.how-step h3 { font-family: 'Cinzel', serif; font-size: 15px; color: var(--dark); margin-bottom: 8px; }
.how-step p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: 'Cinzel', serif;
  font-size: 60px;
  color: var(--gold-light);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-text { font-family: 'Crimson Text', serif; font-size: 16px; color: var(--dark2); line-height: 1.7; margin-bottom: 18px; padding-top: 20px; }

.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--saffron), var(--gold)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 16px; }
.author-name { font-weight: 700; font-size: 14px; }
.author-city { font-size: 12px; color: var(--gray); }

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}

.why-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, rgba(255,107,0,0.2), rgba(212,175,55,0.2));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.why-item h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.why-item p { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* ===== PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #2D1500 100%);
  padding: 60px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4AF37' fill-opacity='0.04'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.page-banner h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4vw, 46px);
  color: var(--white);
  position: relative;
}

.page-banner h1 span { color: var(--gold); }
.page-banner p { color: rgba(255,255,255,0.6); font-size: 15px; margin-top: 10px; position: relative; font-family: 'Crimson Text', serif; font-style: italic; }

/* ===== FILTER TABS ===== */
.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-tab {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--dark);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Nunito', sans-serif;
}

.filter-tab.active, .filter-tab:hover {
  background: var(--saffron);
  color: white;
  border-color: var(--saffron);
}

/* ===== CHECKOUT / FORMS ===== */
.checkout-wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 5%;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 30px;
  align-items: start;
}

.checkout-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 35px;
}

.checkout-form-box h2 {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 8px;
}

.checkout-form-box p { color: var(--gray); font-size: 13px; margin-bottom: 28px; }

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: var(--dark);
  margin-bottom: 7px;
}

.form-group label .req { color: var(--saffron); }
.form-group label .opt { color: var(--gray); font-weight: 400; font-size: 11px; }

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Nunito', sans-serif;
  color: var(--dark);
  background: var(--cream);
  transition: all 0.3s;
  outline: none;
}

.form-control:focus { border-color: var(--saffron); background: var(--white); box-shadow: 0 0 0 3px rgba(255,107,0,0.1); }

textarea.form-control { resize: vertical; min-height: 80px; }

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

.btn-pay {
  width: 100%;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: white;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  font-family: 'Nunito', sans-serif;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(255,107,0,0.35);
}

.btn-pay:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,107,0,0.45); }

/* ===== ORDER SUMMARY ===== */
.order-summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  position: sticky;
  top: 90px;
}

.order-summary h3 { font-family: 'Cinzel', serif; font-size: 16px; color: var(--dark); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }

.summary-item { display: flex; justify-content: space-between; align-items: start; margin-bottom: 14px; }
.summary-item-name { font-size: 14px; font-weight: 600; color: var(--dark); }
.summary-item-type { font-size: 11px; color: var(--saffron); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.summary-price { font-family: 'Cinzel', serif; font-size: 16px; font-weight: 700; color: var(--saffron); }

.summary-divider { height: 1px; background: var(--border); margin: 15px 0; }

.summary-total { display: flex; justify-content: space-between; align-items: center; }
.summary-total span:first-child { font-weight: 700; font-size: 15px; }
.summary-total span:last-child { font-family: 'Cinzel', serif; font-size: 22px; font-weight: 700; color: var(--saffron); }

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray);
}
.trust-badge span:first-child { color: var(--success); font-size: 14px; }

/* ===== SUCCESS PAGE ===== */
.success-wrapper {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 5%;
}

.success-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 50px 40px;
  max-width: 550px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.success-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  margin: 0 auto 25px;
  animation: pop-in 0.5s ease;
}

@keyframes pop-in { 0% { transform: scale(0); } 80% { transform: scale(1.1); } 100% { transform: scale(1); } }

.success-card h2 { font-family: 'Cinzel', serif; font-size: 26px; color: var(--dark); margin-bottom: 8px; }
.success-card > p { color: var(--gray); font-size: 15px; margin-bottom: 30px; font-family: 'Crimson Text', serif; font-style: italic; }

.booking-id-box {
  background: linear-gradient(135deg, rgba(255,107,0,0.08), rgba(212,175,55,0.08));
  border: 1px dashed var(--gold);
  border-radius: 12px;
  padding: 18px 25px;
  margin: 20px 0 30px;
}

.booking-id-box p:first-child { font-size: 12px; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 5px; }
.booking-id { font-family: 'Cinzel', serif; font-size: 22px; font-weight: 700; color: var(--saffron); }

.booking-details { text-align: left; margin: 20px 0; }
.booking-details .detail-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.booking-details .detail-row:last-child { border-bottom: none; }
.detail-label { color: var(--gray); }
.detail-val { font-weight: 600; color: var(--dark); }

/* ===== ADMIN PANEL ===== */
.admin-body { background: #F0F2F5; min-height: 100vh; }

.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark) 0%, #2D1500 100%);
}

.admin-login-card {
  background: var(--white);
  border-radius: 20px;
  padding: 45px 40px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  text-align: center;
}

.admin-login-card .logo-text { font-size: 26px; display: block; margin-bottom: 5px; }
.admin-login-card p { color: var(--gray); font-size: 13px; margin-bottom: 30px; }
.admin-login-card h3 { font-family: 'Cinzel', serif; font-size: 18px; margin-bottom: 25px; color: var(--dark); }

.admin-sidebar {
  width: 250px;
  background: var(--dark);
  min-height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  padding: 25px 0;
  z-index: 100;
}

.admin-sidebar .admin-logo {
  text-align: center;
  padding: 0 20px 25px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 25px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}

.admin-nav a:hover, .admin-nav a.active {
  color: white;
  background: rgba(255,107,0,0.15);
  border-left: 3px solid var(--saffron);
}

.admin-main { margin-left: 250px; padding: 30px; }

.admin-header {
  background: var(--white);
  padding: 18px 30px;
  border-radius: 12px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.admin-header h1 { font-family: 'Cinzel', serif; font-size: 20px; color: var(--dark); }

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 25px;
}

.admin-stat-card {
  background: var(--white);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border-left: 4px solid var(--saffron);
}

.admin-stat-card h3 { font-size: 28px; font-weight: 700; color: var(--dark); }
.admin-stat-card p { font-size: 12px; color: var(--gray); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

.admin-card {
  background: var(--white);
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  margin-bottom: 20px;
}

.admin-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

.admin-card-header h2 { font-family: 'Cinzel', serif; font-size: 16px; color: var(--dark); }

.admin-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.admin-table th { background: var(--cream); padding: 12px 15px; text-align: left; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gray); }
.admin-table td { padding: 13px 15px; border-bottom: 1px solid #F5F5F5; color: var(--dark); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--cream); }

.status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
}

.status-success { background: #E8F5E9; color: #2E7D32; }
.status-pending { background: #FFF3E0; color: #E65100; }
.status-failed { background: #FFEBEE; color: #C62828; }

.btn-export {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: white;
  border: none;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Nunito', sans-serif;
}

.btn-logout {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
  transition: 0.3s;
}
.btn-logout:hover { border-color: #ff4444; color: #ff4444; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 5% 30px;
}

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

.footer h4 {
  font-family: 'Cinzel', serif;
  color: var(--white);
  font-size: 14px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--saffron);
  display: inline-block;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13px; transition: 0.3s; }
.footer-links a:hover { color: var(--gold); }

.footer-brand p { font-size: 13px; line-height: 1.8; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; color: rgba(255,255,255,0.7); text-decoration: none; transition: 0.3s; }
.social-btn:hover { background: var(--saffron); color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ===== TOURS CARDS ===== */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.tour-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s;
}

.tour-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.tour-img {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #FF6B00, #D4AF37);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  position: relative;
}

.tour-duration {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.tour-body { padding: 22px; }
.tour-dest { font-size: 11px; color: var(--saffron); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px; }
.tour-title { font-family: 'Cinzel', serif; font-size: 17px; color: var(--dark); margin-bottom: 10px; }
.tour-desc { font-size: 13px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }

.tour-highlights { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.tour-tag { background: rgba(255,107,0,0.08); color: var(--saffron); padding: 4px 10px; border-radius: 8px; font-size: 11px; font-weight: 600; }

.tour-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 15px; border-top: 1px solid var(--border); }
.tour-price { font-family: 'Cinzel', serif; font-size: 20px; font-weight: 700; color: var(--saffron); }
.tour-price small { font-family: 'Nunito', sans-serif; font-size: 11px; color: var(--gray); font-weight: 400; }

/* ===== POOJA CARDS ===== */
.pooja-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.pooja-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 25px;
  transition: all 0.3s;
  position: relative;
}

.pooja-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.pooja-icon { font-size: 40px; margin-bottom: 15px; }
.pooja-mode { display: flex; gap: 6px; margin-bottom: 12px; }
.mode-tag { font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 8px; letter-spacing: 1px; text-transform: uppercase; }
.mode-online { background: #E3F2FD; color: #1565C0; }
.mode-offline { background: #F3E5F5; color: #6A1B9A; }

.pooja-name { font-family: 'Cinzel', serif; font-size: 16px; color: var(--dark); margin-bottom: 8px; }
.pooja-desc { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 15px; }
.pooja-duration { font-size: 12px; color: var(--gray); margin-bottom: 12px; }
.pooja-duration span { color: var(--saffron); font-weight: 600; }

.pooja-footer { display: flex; align-items: center; justify-content: space-between; }
.pooja-price { font-family: 'Cinzel', serif; font-size: 20px; font-weight: 700; color: var(--saffron); }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: white; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); gap: 5px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .checkout-wrapper { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .admin-sidebar { width: 200px; }
  .admin-main { margin-left: 200px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; }
  .admin-stat-card h3 { font-size: 22px; }
}
