/* ==========================================
   DESIGN SYSTEM & VARIABLES - PREMIUM LIGHT THEME
   ========================================== */
:root {
  /* Colors */
  --bg-primary: #FAF9F5;     /* Warm alabaster / ivory white */
  --bg-secondary: #FFFFFF;   /* Pure white */
  --bg-tertiary: #F2F1EC;    /* Soft beige-gray */
  
  --gold-primary: #C5A059;   /* Vedic gold (adjusted for visibility on light bg) */
  --gold-secondary: #967536; /* Darker Gold for text and contrast */
  --gold-glow: rgba(197, 160, 89, 0.15);
  --gold-glass: rgba(197, 160, 89, 0.05);
  --gold-border: rgba(197, 160, 89, 0.25);
  
  --text-white: #1A1A1E;     /* Sharp dark charcoal for headings */
  --text-light: #2D2D32;     /* Dark gray for primary body text */
  --text-muted: #6E6E77;     /* Soft zinc gray for secondary text */
  --text-dark: #FFFFFF;      /* Inverted white text for buttons/dark containers */
  
  --success: #059669;        /* High-contrast green */
  --error: #DC2626;          /* High-contrast red */
  --whatsapp: #128C7E;       /* WhatsApp teal */
  
  /* Fonts */
  --font-headings: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout Options */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-gold: 0 8px 32px 0 rgba(197, 160, 89, 0.08);
  --shadow-dark: 0 10px 40px 0 rgba(0, 0, 0, 0.05);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  color: var(--text-white);
  letter-spacing: 1px;
}

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

input, button {
  font-family: inherit;
}

/* ==========================================
   BACKGROUND & ANIMATIONS
   ========================================== */
.background-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.08;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background-color: var(--gold-primary);
  top: -100px;
  right: -100px;
  animation: floatOrb1 15s infinite alternate ease-in-out;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background-color: var(--gold-secondary);
  top: 400px;
  left: -200px;
  animation: floatOrb2 20s infinite alternate ease-in-out;
}

@keyframes floatOrb1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-80px, 80px) scale(1.1); }
}

@keyframes floatOrb2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(100px, -50px) scale(1.2); }
}

/* ==========================================
   COMMON GLASS CARD
   ========================================== */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-dark), var(--shadow-gold);
  border-radius: var(--radius-lg);
  padding: 32px;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.25);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
  background: linear-gradient(135deg, #E6C587, var(--gold-primary));
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--gold-secondary);
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--gold-primary);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--gold-glass);
  box-shadow: 0 0 12px rgba(197, 160, 89, 0.15);
  transform: translateY(-1px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--whatsapp);
  color: var(--text-dark);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(18, 140, 126, 0.15);
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background-color: #0F7C6E;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(18, 140, 126, 0.3);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

.w-full {
  width: 100%;
}

/* ==========================================
   HEADER
   ========================================== */
header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background-color: rgba(250, 249, 245, 0.9);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--gold-primary);
  object-fit: cover;
  box-shadow: 0 0 10px rgba(197, 160, 89, 0.15);
}

.logo-text h1 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.logo-text span {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold-secondary);
  display: block;
  margin-top: 4px;
  font-weight: 600;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-weight: 500;
  color: var(--text-muted);
}

.nav-link:hover {
  color: var(--gold-secondary);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
  padding-top: 60px;
  padding-bottom: 80px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: sticky;
  top: 90px;
}

.badge-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(197, 160, 89, 0.1);
  border: 1px solid var(--gold-border);
  color: var(--gold-secondary);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold-secondary) 30%, #5E461A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 540px;
}

.pillars-preview {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.pillar-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
}

.icon-pillar {
  color: var(--gold-secondary);
  font-size: 14px;
}

.pillar-mini h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-white);
}

/* Highlights Card */
.highlights-card {
  width: 100%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--gold-border);
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.08);
}

.highlights-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 8px;
}

.highlights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.highlights-list li i {
  margin-top: 4px;
  font-size: 15px;
}

.highlights-list span {
  font-size: 14px;
  color: var(--text-light);
}

.highlights-list strong {
  color: var(--text-white);
}

/* Booking Form Card */
.booking-card-wrapper {
  position: relative;
}

.form-card {
  position: relative;
  z-index: 10;
}

.form-header {
  margin-bottom: 24px;
  text-align: center;
}

.form-header h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.form-header p {
  font-size: 14px;
  color: var(--text-muted);
}

.input-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.input-wrapper {
  position: relative;
  width: 100%;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-secondary);
  opacity: 0.8;
}

.input-wrapper input {
  width: 100%;
  background: #FFFFFF;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  padding: 14px 16px 14px 44px;
  color: var(--text-white);
  font-size: 15px;
  transition: var(--transition);
}

.input-wrapper input:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: #FFFFFF;
  box-shadow: 0 0 10px var(--gold-glow);
}

.error-msg {
  font-size: 12px;
  color: var(--error);
  display: none;
  margin-top: -4px;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
  color: var(--text-dark);
  border: none;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  padding: 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.25);
  transition: var(--transition);
  position: relative;
}

.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
  background: linear-gradient(135deg, #E6C587, var(--gold-primary));
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.spinner {
  position: absolute;
  right: 24px;
}

.hidden {
  display: none !important;
}

/* Toast Notification inside the Card */
.feedback-toast {
  margin-top: 20px;
  border-radius: var(--radius-md);
  padding: 16px;
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.25);
  animation: fadeIn 0.4s ease-out forwards;
}

.feedback-toast.error-toast {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.25);
}

.toast-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.toast-icon {
  font-size: 18px;
  margin-top: 2px;
  color: var(--success);
}

.error-toast .toast-icon {
  color: var(--error);
}

.toast-details h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.toast-details p {
  font-size: 13px;
  color: var(--text-light);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   ABOUT / PILLARS SECTION
   ========================================== */
.about-section {
  background-color: var(--bg-secondary);
  padding: 80px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

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

.section-tag {
  color: var(--gold-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.section-header h3 {
  font-size: 32px;
  font-weight: 700;
}

.gold-divider {
  width: 60px;
  height: 2px;
  background-color: var(--gold-primary);
  margin: 16px auto 0;
}

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

.pillar-card {
  text-align: center;
  transition: var(--transition);
  background: rgba(250, 249, 245, 0.8);
}

.pillar-card:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 160, 89, 0.5);
  background: #FFFFFF;
}

.pillar-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold-glass);
  border: 1.5px solid var(--gold-border);
  color: var(--gold-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 24px;
  box-shadow: 0 0 15px rgba(197, 160, 89, 0.15);
}

.pillar-card h4 {
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 1.5px;
}

.pillar-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
  padding: 80px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  padding: 48px;
  background: #FFFFFF;
}

.contact-info h3 {
  font-size: 32px;
  margin-bottom: 4px;
}

.contact-info .tagline {
  color: var(--gold-secondary);
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
}

.contact-divider {
  width: 40px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.08);
  margin: 16px 0;
}

.contact-desc {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 32px;
  max-width: 480px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.icon-circle {
  width: 42px;
  height: 42px;
  background-color: rgba(197, 160, 89, 0.06);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-secondary);
  font-size: 15px;
  flex-shrink: 0;
}

.contact-item h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item p {
  font-size: 14px;
  color: var(--text-muted);
}

.contact-action {
  background: rgba(0, 0, 0, 0.01);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-action h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.contact-action p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #F1EFF0;
  padding: 24px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

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

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

/* ==========================================
   ADMIN PORTAL & MODALS
   ========================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 1;
  transition: var(--transition);
}

.modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.modal-card {
  width: 90%;
  max-width: 760px;
  padding: 32px;
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid var(--gold-border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  animation: slideUp 0.3s ease-out forwards;
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.text-center {
  text-align: center;
}

.success-modal-card {
  max-width: 460px;
  padding: 40px 32px;
}

.success-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: rgba(5, 150, 105, 0.08);
  border: 1.5px solid rgba(5, 150, 105, 0.25);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 24px;
  box-shadow: 0 0 15px rgba(5, 150, 105, 0.15);
}

.success-modal-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--text-white);
}

.modal-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.success-details {
  background: rgba(0, 0, 0, 0.01);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-md);
  padding: 16px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 24px;
  text-align: left;
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.modal-header h4 {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

.btn-close:hover {
  color: var(--text-white);
}

#adminLoginView p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

#adminLoginView input {
  background: #FFFFFF;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  color: var(--text-white);
}

#adminLoginView input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-glow);
}

/* Dashboard Style */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.table-container {
  max-height: 320px;
  overflow-y: auto;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-sm);
  background: #FFFFFF;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px;
}

th {
  background-color: rgba(197, 160, 89, 0.06);
  color: var(--gold-secondary);
  font-weight: 700;
  padding: 12px 16px;
  border-bottom: 1.5px solid rgba(197, 160, 89, 0.2);
}

td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  color: var(--text-light);
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background-color: rgba(197, 160, 89, 0.02);
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px;
  gap: 12px;
  color: var(--text-muted);
}

.empty-state i {
  font-size: 32px;
  color: rgba(0, 0, 0, 0.1);
}

/* Scrollbar Styles */
.table-container::-webkit-scrollbar {
  width: 6px;
}

.table-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.02);
}

.table-container::-webkit-scrollbar-thumb {
  background: rgba(197, 160, 89, 0.25);
  border-radius: 3px;
}

.table-container::-webkit-scrollbar-thumb:hover {
  background: rgba(197, 160, 89, 0.4);
}

/* ==========================================
   BOOKING SCHEDULER & CALENDAR
   ========================================== */
.booking-scheduler {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.scheduler-step-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--gold-secondary);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
}

.scheduler-step-title h4 {
  font-size: 16px;
  font-family: var(--font-headings);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Calendar Widget */
.calendar-widget {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.calendar-month-year {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-white);
}

.btn-calendar-nav {
  background: transparent;
  border: none;
  color: var(--gold-secondary);
  font-size: 14px;
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.btn-calendar-nav:hover {
  background-color: rgba(197, 160, 89, 0.1);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-white);
  transition: var(--transition);
}

.calendar-day:hover:not(.day-weekend):not(.day-past) {
  background-color: var(--gold-glow);
  color: var(--gold-secondary);
}

.calendar-day-empty {
  aspect-ratio: 1;
}

.day-today {
  border: 1.5px solid var(--gold-primary);
  font-weight: 700;
}

.day-selected {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary)) !important;
  color: var(--text-dark) !important;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(197, 160, 89, 0.25);
}

.day-weekend {
  color: var(--text-muted);
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

.day-past {
  color: var(--text-muted);
  opacity: 0.3;
  cursor: not-allowed;
}

/* Time Slots */
.slots-container {
  margin-top: 10px;
  animation: fadeIn 0.4s ease-out forwards;
}

.slots-section-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-family: var(--font-body);
}

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

.slot-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  background-color: #FFFFFF;
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}

.slot-pill span:first-child {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-white);
}

.slot-status {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 2px;
  color: var(--gold-secondary);
}

.slot-pill:hover:not(:disabled) {
  border-color: var(--gold-primary);
  background-color: rgba(197, 160, 89, 0.05);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(197, 160, 89, 0.08);
}

.slot-pill.selected {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
}

.slot-pill.selected span {
  color: var(--text-dark) !important;
}

.slot-pill.selected .slot-status {
  color: rgba(255, 255, 255, 0.9);
}

.slot-pill:disabled {
  background-color: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.06);
  cursor: not-allowed;
}

.slot-pill.booked span:first-child {
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.5;
}

.slot-pill.booked .slot-status {
  color: var(--error);
  opacity: 0.8;
}

/* Loading Slots and Error states */
.loading-slots, .error-slots {
  grid-column: span 2;
  text-align: center;
  padding: 24px;
  font-size: 14px;
  color: var(--text-muted);
}

/* Summary Bar */
.booking-summary-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: rgba(197, 160, 89, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-top: 8px;
  animation: fadeIn 0.3s ease-out forwards;
}

.summary-icon {
  font-size: 18px;
  color: var(--gold-secondary);
}

.summary-text {
  font-size: 13px;
  color: var(--text-light);
}

.summary-text strong {
  color: var(--text-white);
  display: block;
}

/* ==========================================
   RESPONSIVE LAYOUTS (MEDIA QUERIES)
   ========================================== */
@media (max-width: 992px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 40px;
    padding-bottom: 60px;
  }
  
  .hero-content {
    align-items: center;
    text-align: center;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .pillars-preview {
    justify-content: center;
  }
  
  .highlights-card {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  
  .booking-card-wrapper {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 32px;
  }
  
  .contact-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .contact-details-list {
    align-items: center;
  }
  
  .contact-item {
    text-align: left;
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 15px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .header-container {
    flex-direction: column;
    gap: 16px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .pillars-preview {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  
  .glass-card {
    padding: 24px 16px;
  }
  
  .contact-wrapper {
    padding: 24px 16px;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .modal-card {
    padding: 24px 16px;
  }
}
