/* ==========================================================================
   ASTROSHREE - Main Theme Stylesheet
   Color Palette:
   - Deep Maroon: #4A0E17 / #36050D
   - Royal Red: #8B0000
   - Antique Gold: #D4AF37 / #E5C158
   - Cream: #FFFDF7 / #FDF8EC
   - White: #FFFFFF
   - Dark Purple: #1A0B2E / #120624
   - Subtle Orange: #E67E22
   ========================================================================== */

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

:root {
  --bg-maroon-dark: #36050D;
  --bg-maroon: #4A0E17;
  --bg-maroon-light: #601520;
  --color-gold: #D4AF37;
  --color-gold-light: #E5C158;
  --color-gold-dark: #B38F24;
  --color-royal-red: #8B0000;
  --color-dark-purple: #1A0B2E;
  --color-purple-deep: #120624;
  --color-cream: #FFFDF7;
  --color-cream-soft: #FDF8EC;
  --color-text-dark: #2B2224;
  --color-text-muted: #6C5C60;
  --color-white: #FFFFFF;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Outfit', sans-serif;
  --font-hindi: 'Rozha One', serif;
  --shadow-sm: 0 4px 12px rgba(74, 14, 23, 0.08);
  --shadow-md: 0 8px 24px rgba(74, 14, 23, 0.15);
  --shadow-lg: 0 16px 40px rgba(26, 11, 46, 0.25);
  --shadow-gold: 0 6px 20px rgba(212, 175, 55, 0.3);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

ul {
  list-style: none;
}

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

/* Headings & Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--bg-maroon);
  font-weight: 700;
  line-height: 1.25;
}

.gold-text {
  color: var(--color-gold) !important;
}

.gold-accent-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 16px;
}

.gold-accent-line::before,
.gold-accent-line::after {
  content: '';
  height: 2px;
  width: 40px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--color-gold);
  color: var(--color-gold-dark);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 12px;
  color: var(--bg-maroon-dark);
}

.section-header h2 span {
  color: var(--color-royal-red);
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-body);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-royal-red), var(--bg-maroon));
  color: var(--color-white);
  box-shadow: 0 6px 18px rgba(139, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--bg-maroon), var(--bg-maroon-dark));
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 0, 0, 0.4);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  color: var(--bg-maroon-dark);
  box-shadow: var(--shadow-gold);
  border: 1px solid var(--color-gold-light);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
}

.btn-outline-gold {
  background: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}

.btn-outline-gold:hover {
  background: var(--color-gold);
  color: var(--bg-maroon-dark);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #20ba5a, #0e7065);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

/* 1. TOP BAR */
.top-bar {
  background-color: var(--bg-maroon-dark);
  color: var(--color-gold);
  font-size: 0.88rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.top-bar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  font-family: var(--font-hindi);
  font-size: 1.05rem;
  letter-spacing: 1px;
}

.top-bar-center {
  font-style: italic;
  letter-spacing: 0.5px;
  color: var(--color-cream-soft);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-right a {
  color: var(--color-cream-soft);
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-right a:hover {
  color: var(--color-gold);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--color-gold);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--color-gold);
  color: var(--bg-maroon-dark);
}

/* 2. MAIN NAVIGATION */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 247, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--bg-maroon), var(--color-royal-red));
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.4rem;
  box-shadow: var(--shadow-gold);
}

.brand-text h1 {
  font-size: 1.6rem;
  letter-spacing: 1.5px;
  color: var(--bg-maroon-dark);
  margin: 0;
  line-height: 1;
}

.brand-text span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
  display: block;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links a {
  font-weight: 500;
  color: var(--color-text-dark);
  font-size: 0.9rem;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition);
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-actions .btn-whatsapp {
  padding: 8px 18px;
  font-size: 0.88rem;
  white-space: nowrap;
  border-radius: 30px;
}

.mobile-nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--bg-maroon);
  cursor: pointer;
  background: none;
  border: none;
}

/* 3. HERO SECTION */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--color-dark-purple) 0%, var(--bg-maroon-dark) 60%, #2A0810 100%);
  color: var(--color-white);
  padding: 90px 0 100px;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(139, 0, 0, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.zodiac-wheel-bg {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  opacity: 0.12;
  animation: spinWheel 120s linear infinite;
  pointer-events: none;
}

@keyframes spinWheel {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.4rem;
  color: var(--color-white);
  margin: 16px 0 20px;
  line-height: 1.15;
}

.hero-content h1 span {
  color: var(--color-gold-light);
  background: linear-gradient(90deg, #F5D77F, #D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 30px;
  max-width: 580px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 35px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--color-cream-soft);
}

.trust-item i {
  color: var(--color-gold);
  font-size: 1.1rem;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 25px;
}

.hero-quote {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--color-gold-light);
  opacity: 0.9;
  border-left: 2px solid var(--color-gold);
  padding-left: 12px;
}

/* Floating Profile Card */
.astrologer-hero-card {
  position: relative;
  background: rgba(74, 14, 23, 0.85);
  backdrop-filter: blur(12px);
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  text-align: center;
}

.astrologer-avatar-wrapper {
  position: relative;
  width: 170px;
  height: 170px;
  margin: 0 auto 20px;
}

.astrologer-avatar-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--color-gold);
}

.verified-badge {
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 32px;
  height: 32px;
  background: var(--color-gold);
  color: var(--bg-maroon-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.profile-name {
  color: var(--color-white);
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.profile-title {
  color: var(--color-gold-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.profile-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
  background: rgba(0,0,0,0.25);
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-box h4 {
  color: var(--color-gold);
  font-size: 1.3rem;
  margin-bottom: 2px;
}

.stat-box p {
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
}

/* 4. SERVICES SECTION */
.services-section {
  padding: 90px 0;
  background-color: var(--color-cream-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--bg-maroon), var(--color-gold));
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md), var(--shadow-gold);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(74, 14, 23, 0.06);
  border: 1.5px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--bg-maroon);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--bg-maroon);
  color: var(--color-gold);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--bg-maroon-dark);
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.price-tag span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  display: block;
}

.price-tag strong {
  font-size: 1.3rem;
  color: var(--bg-maroon);
}

/* 5. ABOUT ASTROLOGER SECTION */
.about-section {
  padding: 90px 0;
  background: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 4px solid var(--color-gold-light);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-maroon);
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold);
  text-align: center;
}

.experience-badge strong {
  font-size: 1.8rem;
  display: block;
  line-height: 1;
}

.about-content h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.about-list {
  margin: 24px 0 30px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: var(--color-text-dark);
}

.about-list li i {
  color: var(--color-gold-dark);
  font-size: 1.2rem;
}

/* 6. STATISTICS SECTION */
.stats-bar-section {
  background: linear-gradient(135deg, var(--bg-maroon-dark), var(--bg-maroon));
  color: var(--color-white);
  padding: 50px 0;
  border-top: 2px solid var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-counter-item h3 {
  color: var(--color-gold-light);
  font-size: 2.8rem;
  margin-bottom: 4px;
}

.stat-counter-item p {
  color: var(--color-cream-soft);
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}

/* 7. WHY CHOOSE US */
.why-choose-section {
  padding: 90px 0;
  background: var(--color-cream-soft);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  color: var(--bg-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px;
}

.why-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--bg-maroon-dark);
}

.why-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* 8. DAILY HOROSCOPE SECTION */
.horoscope-section {
  padding: 90px 0;
  background: var(--color-white);
}

.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.zodiac-card {
  background: var(--color-cream-soft);
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-md);
  padding: 16px 10px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.zodiac-card:hover,
.zodiac-card.active {
  background: var(--bg-maroon);
  border-color: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.zodiac-symbol {
  font-size: 2rem;
  margin-bottom: 4px;
  color: var(--color-gold-dark);
}

.zodiac-card:hover .zodiac-symbol,
.zodiac-card.active .zodiac-symbol {
  color: var(--color-gold-light);
}

.zodiac-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.zodiac-hindi {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.zodiac-card:hover .zodiac-hindi,
.zodiac-card.active .zodiac-hindi {
  color: rgba(255, 255, 255, 0.8);
}

.horoscope-content-box {
  background: var(--color-cream);
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.horoscope-header-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.prediction-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.pred-item {
  background: var(--color-white);
  padding: 20px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--bg-maroon);
  box-shadow: var(--shadow-sm);
}

.pred-item h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--bg-maroon);
}

.lucky-attributes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: var(--bg-maroon-dark);
  color: var(--color-white);
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
}

.lucky-box strong {
  color: var(--color-gold);
  display: block;
  font-size: 1.1rem;
}

/* 9. KUNDLI GENERATOR & MATCHMAKING FORMS */
.tool-section {
  padding: 90px 0;
  background: var(--color-cream-soft);
}

.form-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 2px solid var(--color-gold);
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--bg-maroon-dark);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #E2D9C5;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--color-cream);
  color: var(--color-text-dark);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* Kundli Output Display */
.kundli-result-wrapper {
  margin-top: 40px;
  display: none;
}

.kundli-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.chart-box {
  background: var(--color-white);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-gold);
  box-shadow: var(--shadow-sm);
}

/* 10. TESTIMONIALS SLIDER */
.testimonial-section {
  padding: 90px 0;
  background: var(--color-white);
}

.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--color-cream-soft);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.rating-stars {
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.testimonial-card p {
  font-style: italic;
  color: var(--color-text-dark);
  margin-bottom: 20px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-info img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
}

.client-details h5 {
  font-size: 1.05rem;
  color: var(--bg-maroon-dark);
}

.client-details span {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* 11. COSMIC CTA & QUICK BOOKING FORM */
.cosmic-cta-section {
  background: linear-gradient(135deg, var(--color-dark-purple), var(--bg-maroon-dark));
  color: var(--color-white);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.cosmic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.booking-modes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.mode-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 16px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.mode-item i {
  color: var(--color-gold);
  font-size: 1.4rem;
}

.quick-booking-card {
  background: var(--color-white);
  color: var(--color-text-dark);
  border-radius: var(--radius-lg);
  padding: 35px;
  border: 2px solid var(--color-gold);
  box-shadow: var(--shadow-lg);
}

.quick-booking-card h3 {
  color: var(--bg-maroon-dark);
  font-size: 1.6rem;
  margin-bottom: 20px;
  text-align: center;
}

/* 12. BLOG SECTION */
.blog-section {
  padding: 90px 0;
  background: var(--color-cream-soft);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-image img {
  transform: scale(1.06);
}

.blog-content {
  padding: 24px;
}

.blog-category {
  color: var(--color-gold-dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-content h3 {
  font-size: 1.2rem;
  margin: 8px 0 12px;
  color: var(--bg-maroon-dark);
}

/* 13. FOOTER */
.site-footer {
  background: var(--bg-maroon-dark);
  color: var(--color-cream-soft);
  padding: 80px 0 20px;
  border-top: 3px solid var(--color-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1.1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: var(--color-gold-light);
  font-size: 1.25rem;
  margin-bottom: 24px;
  position: relative;
}

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

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

.footer-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 6px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

.contact-info i {
  color: var(--color-gold);
  margin-top: 4px;
}

/* Floating WhatsApp CTA */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: #25D366;
  color: #FFF;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.05);
  background: #1EBE5A;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.65);
  margin-left: 20px;
}

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

/* Flash Toast Notifications */
.toast-notification {
  position: fixed;
  top: 90px;
  right: 24px;
  z-index: 1100;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  color: #FFF;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideInRight 0.4s ease;
}

.toast-success { background: #1b5e20; border-left: 5px solid #4caf50; }
.toast-warning { background: #e65100; border-left: 5px solid #ff9800; }
.toast-danger { background: #b71c1c; border-left: 5px solid #f44336; }

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* User & Admin Dashboard Layout */
.dashboard-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: calc(100vh - 150px);
}

.dashboard-sidebar {
  background: var(--bg-maroon-dark);
  color: var(--color-white);
  padding: 30px 0;
  border-right: 2px solid var(--color-gold);
}

.sidebar-menu a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  color: rgba(255,255,255,0.8);
  font-size: 0.98rem;
  transition: var(--transition);
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
  background: rgba(212, 175, 55, 0.15);
  color: var(--color-gold);
  border-left: 4px solid var(--color-gold);
}

.dashboard-content {
  padding: 40px;
  background: var(--color-cream-soft);
}

.dash-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.dash-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-sm);
}

.dash-card h4 {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.dash-card .count {
  font-size: 2rem;
  font-weight: 700;
  color: var(--bg-maroon);
}

/* Tables */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.data-table th,
.data-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.data-table th {
  background: var(--bg-maroon);
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 0.9rem;
}

.badge {
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

.badge-pending { background: #FFF3CD; color: #856404; }
.badge-confirmed { background: #D4EDDA; color: #155724; }
.badge-completed { background: #CCE5FF; color: #004085; }
.badge-cancelled { background: #F8D7DA; color: #721C24; }
