/* ==========================================================================
   ASTRONEX - Luxury Vedic Astrology & Rahu-Ketu Parihara Theme CSS
   Design System Inspired by AstroNex Theme Reference
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&family=Great+Vibes&display=swap');

:root {
  /* Colors */
  --bg-dark: #0e0a07;
  --bg-dark-card: #17110c;
  --bg-dark-card-hover: #1f1812;
  --bg-card-border: #33261c;
  --bg-card-border-glow: #e8ceb0;
  
  --topbar-bg: #e8ceb0;
  --topbar-text: #2b1b10;
  
  --gold-primary: #dfb778;
  --gold-light: #e8ceb0;
  --gold-cream: #f4ece1;
  --gold-glow: rgba(223, 183, 120, 0.25);
  
  --text-primary: #f5eee6;
  --text-secondary: #c7bbb0;
  --text-muted: #8c7f73;
  --text-dark: #1f140b;

  --cream-card-bg: #f8f2e9;
  --cream-card-text: #2c1e14;
  --cream-border: #e3d3be;

  /* Fonts */
  --font-title: 'Cinzel', 'Cormorant Garamond', Georgia, serif;
  --font-serif: 'Cinzel', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Great Vibes', cursive;

  /* Spacing & Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 50px;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  --glow-shadow: 0 0 25px rgba(223, 183, 120, 0.15);
}

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

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

body {
  background-color: var(--bg-dark);
  color: var(--text-secondary);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(232, 206, 176, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(223, 183, 120, 0.04) 0%, transparent 45%),
    url('https://images.unsplash.com/photo-1506703719100-a0f3a48c0f86?auto=format&fit=crop&q=80&w=2000');
  background-size: cover, cover, cover;
  background-attachment: fixed;
  background-blend-mode: overlay;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .section-subtitle, .brand-logo, .card-price-title {
  font-family: var(--font-title);
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.5px;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.3rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.35rem; }

/* Highlight text in titles and headings */
.title-highlight,
.highlight,
.text-gold {
  color: var(--gold-light);
  background: linear-gradient(135deg, #fff2db 0%, #dfb778 50%, #c49652 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: 0 0 15px rgba(223, 183, 120, 0.25);
}

@media (min-width: 768px) {
  h1 { font-size: 4rem; }
  h2 { font-size: 3rem; }
  h3 { font-size: 2.1rem; }
}

p {
  margin-bottom: 1rem;
}

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

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

ul {
  list-style: none;
}

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

/* Layout Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ==========================================================================
   TOP UTILITY BAR
   ========================================================================== */
.top-bar {
  background-color: var(--topbar-bg);
  color: var(--topbar-text);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-bar-info-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-info-item i {
  color: var(--topbar-text);
  font-size: 0.9rem;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-hours {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.top-bar-social a {
  color: var(--topbar-text);
  font-size: 0.9rem;
  transition: var(--transition);
}

.top-bar-social a:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

/* ==========================================================================
   MAIN HEADER & NAVIGATION
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(14, 10, 7, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 206, 176, 0.1);
  transition: var(--transition);
}

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

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand-logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-light) 0%, var(--gold-primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-dark);
  font-size: 1.2rem;
  box-shadow: 0 0 15px var(--gold-glow);
}

.brand-logo span {
  color: var(--gold-light);
}

/* Navigation Pill Container */
.nav-menu-wrapper {
  background: rgba(26, 18, 13, 0.9);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-pill);
  padding: 0.4rem 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.4rem 0.25rem;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--gold-primary);
  border-radius: 2px;
}

/* Dropdown Menu */
.nav-item-has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: var(--bg-dark-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  padding: 0.75rem 0;
  min-width: 240px;
  box-shadow: var(--box-shadow);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
}

.nav-item-has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.dropdown-item {
  display: block;
  padding: 0.6rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: rgba(232, 206, 176, 0.1);
  color: var(--gold-light);
  padding-left: 1.5rem;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--bg-card-border);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.cart-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold-primary);
  color: var(--bg-dark);
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   BUTTONS & ORNAMENTAL STYLES (AstroNex '✕ TEXT ✕' Style)
   ========================================================================== */
.btn-gold-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--gold-light);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gold-light);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(232, 206, 176, 0.2);
  white-space: nowrap;
}

.btn-gold-pill:hover {
  background-color: var(--gold-primary);
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(223, 183, 120, 0.35);
}

.btn-outline-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: transparent;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--bg-card-border);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-outline-pill:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(223, 183, 120, 0.08);
  transform: translateY(-2px);
}

.btn-marker {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* Badges */
.badge-pill {
  display: inline-block;
  padding: 0.25rem 0.9rem;
  background-color: var(--gold-light);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
}

.section-subtitle {
  color: var(--gold-primary);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.section-subtitle.t-center {
  justify-content: initial;
}

.section-subtitle::before,
.section-subtitle::after {
  content: '✦';
  font-size: 0.7rem;
  color: var(--gold-primary);
}

/* ==========================================================================
   HERO & BREADCRUMB HEADERS
   ========================================================================== */
.page-header-hero {
  position: relative;
  padding: 5rem 0 4rem;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(30, 20, 14, 0.8) 0%, rgba(14, 10, 7, 0.95) 100%),
              url('https://images.unsplash.com/photo-1518709268805-4e9042af9f23?auto=format&fit=crop&q=80&w=2000');
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--bg-card-border);
}

.page-header-hero h1 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.breadcrumb-nav a {
  color: var(--text-secondary);
}

.breadcrumb-nav a:hover {
  color: var(--gold-primary);
}

.breadcrumb-separator {
  color: var(--gold-primary);
}

/* Home Hero Section */
.hero-home {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero-home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-home-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero-content h1 {
  font-size: 2.8rem;
  line-height: 1.18;
  margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
  .hero-content h1 {
    font-size: 3.8rem;
  }
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-trust-indicators {
  display: flex;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid var(--bg-card-border);
  padding-top: 1.5rem;
  flex-wrap: wrap;
}

.trust-item h4 {
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 0.1rem;
}

.trust-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

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

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--bg-card-border);
  box-shadow: var(--box-shadow), var(--glow-shadow);
}

.hero-image-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-badge-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(23, 17, 12, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.badge-avatar-stack {
  display: flex;
}

.badge-avatar-stack img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark-card);
  margin-left: -10px;
  object-fit: cover;
}

.badge-avatar-stack img:first-child {
  margin-left: 0;
}

.badge-count {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
  border: 2px solid var(--bg-dark-card);
}

/* ==========================================================================
   CARDS & SECTIONS
   ========================================================================== */
.section-padding {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

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

/* Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 992px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 576px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* AstroNex Dark Cards (Pricing / Services) */
.astro-card {
  background-color: var(--bg-dark-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.astro-card:hover {
  background-color: var(--bg-dark-card-hover);
  border-color: var(--gold-primary);
  transform: translateY(-5px);
  box-shadow: var(--box-shadow), var(--glow-shadow);
}

.astro-card.featured {
  border-color: var(--gold-primary);
  box-shadow: 0 0 30px rgba(223, 183, 120, 0.15);
  background: linear-gradient(180deg, rgba(35, 25, 18, 0.95) 0%, rgba(23, 17, 12, 0.98) 100%);
}

.card-badge-row {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(223, 183, 120, 0.12);
  border: 1px solid rgba(223, 183, 120, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.25rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.astro-card:hover .service-card-icon {
  background: var(--gold-primary);
  color: #120d09;
  border-color: var(--gold-primary);
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 0 18px rgba(223, 183, 120, 0.45);
}

.card-price-title {
  font-size: 2.8rem;
  font-family: var(--font-serif);
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.card-price-title span {
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--text-muted);
}

.card-description {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--bg-card-border);
  padding-bottom: 1.25rem;
}

.card-feature-title {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.card-feature-list {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.card-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
}

.card-feature-list li i {
  color: var(--gold-primary);
  margin-top: 3px;
  font-size: 0.85rem;
}

/* ==========================================================================
   PROGRESS BARS (Astrologer Profile Skills)
   ========================================================================== */
.skill-bar-item {
  margin-bottom: 1.5rem;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  font-family: var(--font-serif);
  color: var(--text-primary);
}

.skill-track {
  width: 100%;
  height: 6px;
  background: var(--bg-card-border);
  border-radius: 3px;
  position: relative;
}

.skill-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-primary) 0%, var(--gold-light) 100%);
  border-radius: 3px;
  position: relative;
}

.skill-fill::after {
  content: '✦';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-light);
  font-size: 1rem;
  background: var(--bg-dark);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   NEWSLETTER BANNER
   ========================================================================== */
.newsletter-banner {
  background: radial-gradient(ellipse at center, rgba(30, 22, 16, 0.9) 0%, rgba(18, 13, 9, 0.98) 100%),
              url('https://images.unsplash.com/photo-1506703719100-a0f3a48c0f86?auto=format&fit=crop&q=80&w=1200');
  background-size: cover;
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  text-align: center;
  box-shadow: var(--box-shadow);
  margin: 2rem 0;
}

.newsletter-banner h2 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.newsletter-banner p {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 2rem;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  max-width: 580px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 260px;
  background: rgba(14, 10, 7, 0.8);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.5rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(223, 183, 120, 0.2);
}

.newsletter-terms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.newsletter-terms input {
  accent-color: var(--gold-primary);
}

/* ==========================================================================
   TESTIMONIALS & POSTER CARD
   ========================================================================== */
.testimonial-card-item {
  background: var(--bg-dark-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: var(--transition);
}

.testimonial-card-item:hover {
  border-color: var(--gold-primary);
  background: var(--bg-dark-card-hover);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--bg-card-border);
  flex-shrink: 0;
}

.testimonial-body h4 {
  font-size: 1.15rem;
  margin-bottom: 0.1rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--gold-primary);
  margin-bottom: 0.4rem;
}

.happy-meter {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.happy-meter-icons span {
  font-size: 1rem;
  margin-right: 2px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Celestial Poster Card (Right side of Testimonials) */
.celestial-poster-card {
  background: radial-gradient(circle at center, rgba(35, 25, 18, 0.95) 0%, rgba(14, 10, 7, 0.98) 100%),
              url('https://images.unsplash.com/photo-1518709268805-4e9042af9f23?auto=format&fit=crop&q=80&w=800');
  background-size: cover;
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.celestial-poster-card::before {
  content: '';
  position: absolute;
  top: 15px; left: 15px; right: 15px; bottom: 15px;
  border: 1px solid rgba(232, 206, 176, 0.2);
  border-radius: var(--radius-md);
  pointer-events: none;
}

.poster-sunburst {
  font-size: 3rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.poster-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.poster-title span {
  display: block;
  font-style: normal;
  font-size: 3.2rem;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.poster-palm-icon {
  font-size: 3.5rem;
  color: var(--gold-primary);
  margin-top: 1.5rem;
}

/* ==========================================================================
   FAQ ACCORDION & BOOKING BAR
   ========================================================================== */
.booking-bar {
  background: var(--cream-card-bg);
  color: var(--cream-card-text);
  border-radius: var(--radius-pill);
  padding: 0.8rem 1.5rem;
  margin-bottom: 3.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.booking-bar-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.booking-field-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  min-width: 180px;
}

.booking-field-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #7a6550;
}

.booking-field-input {
  background: transparent;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream-card-text);
  outline: none;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--cream-card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-header h4 {
  color: var(--cream-card-text);
  font-size: 1.15rem;
  margin: 0;
}

.faq-toggle-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream-card-text);
  color: var(--cream-card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}

.faq-body {
  padding: 0 1.5rem 1.25rem;
  color: #524233;
  font-size: 0.95rem;
  display: none;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 0.5rem;
  padding-top: 0.8rem;
}

.faq-item.active .faq-body {
  display: block;
}

.faq-item.active .faq-toggle-btn {
  transform: rotate(45deg);
}

/* ==========================================================================
   INSTAGRAM / GALLERY GRID
   ========================================================================== */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.instagram-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--bg-card-border);
  cursor: pointer;
}

.instagram-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 10, 7, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.instagram-overlay-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

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

.instagram-card:hover .instagram-overlay {
  opacity: 1;
}

/* ==========================================================================
   BLOG & ARTICLE STYLES
   ========================================================================== */
.blog-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.blog-img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
}

.blog-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-excerpt {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

/* Article Page Layout */
.article-container {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-dark-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
}

.article-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--bg-card-border);
  padding-bottom: 1.5rem;
}

.article-header h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.article-hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}

.article-body h2 {
  font-size: 2rem;
  margin: 2rem 0 1rem;
  color: var(--gold-light);
}

.article-body h3 {
  font-size: 1.5rem;
  margin: 1.5rem 0 0.75rem;
  color: var(--text-primary);
}

.article-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.article-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.article-body ul li {
  margin-bottom: 0.5rem;
}

.disclaimer-box {
  background: rgba(223, 183, 120, 0.08);
  border-left: 4px solid var(--gold-primary);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2rem 0;
  font-size: 0.92rem;
  color: var(--gold-cream);
}

/* ==========================================================================
   CONTACT FORM & DETAILS
   ========================================================================== */
.contact-card-box {
  background: var(--bg-dark-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-info-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  background: rgba(14, 10, 7, 0.8);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(223, 183, 120, 0.2);
}

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

.map-container {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--bg-card-border);
  background: #1a130e;
}

/* ==========================================================================
   LIGHTBOX MODAL
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 900px;
  max-height: 80vh;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-primary);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
  background: #090604;
  border-top: 1px solid var(--bg-card-border);
  padding-top: 4rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-top {
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-col h4 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  position: relative;
}

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

.footer-links a {
  color: var(--text-muted);
  transition: var(--transition);
}

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

.footer-newsletter-box {
  position: relative;
  margin-top: 1rem;
}

.footer-newsletter-input {
  width: 100%;
  background: #140e0a;
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-pill);
  padding: 0.75rem 3rem 0.75rem 1.25rem;
  color: var(--text-primary);
  font-size: 0.85rem;
  outline: none;
}

.footer-newsletter-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--text-dark);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.footer-legal-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.payment-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.4rem;
  color: var(--text-muted);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 991px) {
  .nav-menu-wrapper {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--bg-dark-card);
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--bg-card-border);
    padding: 1.5rem;
    display: none;
  }

  .nav-menu-wrapper.active {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .booking-bar-form {
    flex-direction: column;
    align-items: stretch;
  }

  .top-bar .container {
    justify-content: center;
    text-align: center;
  }
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (WHATSAPP & CALL)
   ========================================================================== */
.floating-contact-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 18px;
  border-radius: 50px;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.floating-btn i {
  font-size: 1.35rem;
}

.floating-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  animation: pulse-whatsapp 2.5s infinite;
}

.floating-whatsapp:hover {
  background: linear-gradient(135deg, #22c35e 0%, #0e786b 100%);
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.floating-call {
  background: linear-gradient(135deg, #dfb778 0%, #b88d4c 100%);
  color: #1a1008;
  border: 1px solid rgba(255, 255, 255, 0.35);
  animation: pulse-call 2.5s infinite 1.25s;
}

.floating-call:hover {
  background: linear-gradient(135deg, #e8ceb0 0%, #dfb778 100%);
  color: #0e0a07;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(223, 183, 120, 0.4);
}

.floating-btn-label {
  display: inline-block;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .floating-contact-container {
    bottom: 18px;
    right: 18px;
    gap: 10px;
  }
  
  .floating-btn {
    height: 48px;
    padding: 0 14px;
    font-size: 0.85rem;
  }
  
  .floating-btn i {
    font-size: 1.2rem;
  }
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6), 0 8px 25px rgba(0, 0, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 8px 25px rgba(0, 0, 0, 0.4);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 25px rgba(0, 0, 0, 0.4);
  }
}

@keyframes pulse-call {
  0% {
    box-shadow: 0 0 0 0 rgba(223, 183, 120, 0.6), 0 8px 25px rgba(0, 0, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(223, 183, 120, 0), 0 8px 25px rgba(0, 0, 0, 0.4);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(223, 183, 120, 0), 0 8px 25px rgba(0, 0, 0, 0.4);
  }
}

/* ==========================================================================
   PAGE PRELOADER & SCROLL ANIMATIONS
   ========================================================================== */
.page-preloader {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: #0d0906;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.preloader-symbol {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--gold-primary);
  border-right-color: var(--gold-light);
  animation: preloader-spin 1.4s linear infinite;
}

.preloader-ring.inner {
  inset: 12px;
  border-top-color: transparent;
  border-bottom-color: var(--gold-primary);
  animation: preloader-spin-reverse 1s linear infinite;
}

.preloader-icon {
  font-size: 1.8rem;
  color: var(--gold-primary);
  filter: drop-shadow(0 0 10px rgba(223, 183, 120, 0.6));
}

.preloader-title {
  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 2px;
}

.preloader-title span {
  color: var(--gold-primary);
}

.preloader-subtitle {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--gold-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

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

@keyframes preloader-spin-reverse {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

/* SCROLL REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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


