/* Premium Custom Stylesheet - Moksha Seva Gaya */

:root {
  --primary: #8B4513;        /* Warm terracotta / brown */
  --primary-hover: #70360f;
  --secondary: #DAA520;      /* Rich Gold */
  --secondary-hover: #b8860b;
  --dark: #2d1910;           /* Deep chocolate dark */
  --light-bg: #FAF6F0;       /* Sand cream background */
  --cream: #FFF8E7;          /* Soft cream highlight */
  --white: #ffffff;
  --text-main: #3E2723;      /* Dark brown for high contrast text */
  --text-muted: #6D5C56;     /* Muted body text */
  --green: #25D366;          /* WhatsApp green */
  --green-hover: #1ebd59;
  --shadow-sm: 0 2px 8px rgba(45, 25, 16, 0.05);
  --shadow-md: 0 8px 20px rgba(45, 25, 16, 0.08);
  --shadow-lg: 0 16px 36px rgba(45, 25, 16, 0.12);
  --border-radius-sm: 8px;
  --border-radius-md: 14px;
  --border-radius-lg: 20px;
  --font-heading: 'Outfit', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  
  scroll-behavior: smooth;
}

/* Reset and Core Layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  line-height: 1.7;
  color: var(--text-main);
  background: var(--light-bg);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.25;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  border-left: 5px solid var(--secondary);
  padding-left: 15px;
  margin-bottom: 24px;
  display: inline-block;
}

h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 12px 0;
}

p {
  margin-bottom: 16px;
  color: var(--text-muted);
}

b, strong {
  color: var(--dark);
  font-weight: 700;
}

/* Topbar styling */
.topbar {
  background: var(--dark);
  color: var(--white);
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-info i {
  color: var(--secondary);
}

.topbar-tagline {
  color: var(--cream);
  font-style: italic;
}

/* Sticky Navbar with Glassmorphism */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: background 0.3s ease;
}

.nav-inner {
  max-width: 1400px;
  margin: auto;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.85rem; /* Font size large */
  font-weight: 900;
  color: var(--primary);
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

.brand img {
  height: 55px; /* Larger logo */
  width: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.brand:hover img {
  transform: rotate(5deg) scale(1.05);
}

/* Navigation Menu */
.menu {
  display: flex;
  gap: 20px; /* Enhanced gap for spacious feel */
  align-items: center;
}

.menu a {
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.95rem; /* Better desktop readability */
  padding: 8px 0;
  position: relative;
  transition: color 0.25s ease;
}

/* Sliding underline hover effect */
.menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: width 0.25s ease;
}

.menu a:hover {
  color: var(--primary);
}

.menu a:hover::after,
.menu a.active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--primary);
  cursor: pointer;
  padding: 6px;
}

/* Hero Section */
.hero {
  min-height: 580px;
  background-size: cover;
  background-position: center;
  color: var(--white);
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45, 25, 16, 0.75) 0%, rgba(139, 69, 19, 0.85) 100%);
  z-index: 1;
}

.hero-content {
  max-width: 900px;
  margin: auto;
  padding: 80px 24px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: 160px;
  max-width: 70%;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  padding: 10px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--white);
  font-size: 3.2rem;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 30px;
  max-width: 750px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--border-radius-sm);
  font-weight: 800;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(-1px);
}

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
}

.btn-whatsapp:hover {
  background: var(--green-hover);
}

.btn-call {
  background: var(--primary);
  color: var(--white);
}

.btn-call:hover {
  background: var(--primary-hover);
}

.btn-gold {
  background: var(--secondary);
  color: var(--dark);
}

.btn-gold:hover {
  background: #e5af25;
}

/* Main Container and Sections */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 24px;
}

.section {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
  transition: box-shadow 0.3s ease;
}

.section:hover {
  box-shadow: var(--shadow-md);
}

/* Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 24px;
  align-items: center;
}

/* Info Box */
.box {
  border: 1px solid #f2ece6;
  border-radius: var(--border-radius-md);
  padding: 28px;
  background: var(--white);
  text-align: center;
  transition: all 0.3s ease;
}

.box:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
}

.box i {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 16px;
  display: inline-block;
}

/* Hotel Options styling */
.hotel-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.hotel-opt-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border: 1px solid #f2ece6;
  border-radius: var(--border-radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.hotel-opt-card:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.hotel-opt-card i {
  font-size: 1.6rem;
  color: var(--primary);
  background: var(--cream);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hotel-opt-card h4 {
  font-size: 1.05rem;
  margin-bottom: 2px;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 700;
}

.hotel-opt-card p {
  font-size: 0.85rem;
  margin-bottom: 0;
  color: var(--text-muted);
}


/* Gold Notes */
.note {
  background: #FFF9EB;
  border-left: 5px solid var(--secondary);
  padding: 20px;
  border-radius: var(--border-radius-sm);
  margin: 24px 0;
  font-size: 0.95rem;
  color: var(--text-main);
  box-shadow: inset 0 0 10px rgba(218, 165, 32, 0.03);
}

/* Photo Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.gallery-card {
  background: var(--white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f2ece6;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-card:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}

.gallery-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card div {
  padding: 14px;
}

.gallery-card h3 {
  margin: 0 0 6px 0;
  color: var(--primary);
  font-size: 1.1rem;
}

.gallery-card p {
  font-size: 0.85rem;
  margin-bottom: 0;
  line-height: 1.4;
}

/* Custom Image Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(45, 25, 16, 0.95);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease;
}

.lightbox-caption {
  color: var(--white);
  margin-top: 15px;
  text-align: center;
}

.lightbox-caption h3 {
  color: var(--secondary);
  font-size: 1.4rem;
  margin-bottom: 4px;
}

@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Service Packages Section */
.card {
  border: 1px solid #f2ece6;
  border-radius: var(--border-radius-md);
  padding: 30px;
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.card-popular {
  border: 2px solid var(--secondary);
  box-shadow: var(--shadow-md);
}

.popular {
  position: absolute;
  top: 18px;
  right: -38px;
  transform: rotate(45deg);
  background: var(--secondary);
  color: var(--dark);
  padding: 6px 45px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.price {
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  margin: 10px 0 20px;
}

.card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.card li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.card li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary);
  font-size: 0.85rem;
  margin-top: 3px;
}

/* Vedi List Grid */
.vedi-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.vedi-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--light-bg);
  padding: 12px 16px;
  border-radius: var(--border-radius-sm);
  border: 1px solid #eedfd4;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.vedi-item:hover {
  background: var(--cream);
  border-color: var(--secondary);
  transform: translateX(4px);
}

.vedi-num {
  background: var(--primary);
  color: var(--white);
  min-width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Colorful Vedi Chips Styles */
.vedi-chips-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.vedi-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 2px 6px rgba(45, 25, 16, 0.04);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
  border: 1px solid transparent;
}

.vedi-chip:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 6px 15px rgba(45, 25, 16, 0.08);
}

.vedi-chip-num {
  font-size: 0.72rem;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vedi-chip-terracotta {
  background: rgba(139, 69, 19, 0.07);
  border-color: rgba(139, 69, 19, 0.2);
  color: #70360f;
}
.vedi-chip-terracotta .vedi-chip-num {
  background: rgba(139, 69, 19, 0.15);
  color: #70360f;
}

.vedi-chip-gold {
  background: rgba(218, 165, 32, 0.08);
  border-color: rgba(218, 165, 32, 0.35);
  color: #8a6d1c;
}
.vedi-chip-gold .vedi-chip-num {
  background: rgba(218, 165, 32, 0.18);
  color: #8a6d1c;
}

.vedi-chip-saffron {
  background: rgba(230, 92, 0, 0.07);
  border-color: rgba(230, 92, 0, 0.28);
  color: #b34700;
}
.vedi-chip-saffron .vedi-chip-num {
  background: rgba(230, 92, 0, 0.15);
  color: #b34700;
}

.vedi-chip-bronze {
  background: rgba(160, 82, 45, 0.07);
  border-color: rgba(160, 82, 45, 0.28);
  color: #8B4513;
}
.vedi-chip-bronze .vedi-chip-num {
  background: rgba(160, 82, 45, 0.15);
  color: #8B4513;
}

.vedi-chip-ruby {
  background: rgba(184, 15, 10, 0.07);
  border-color: rgba(184, 15, 10, 0.25);
  color: #b31b15;
}
.vedi-chip-ruby .vedi-chip-num {
  background: rgba(184, 15, 10, 0.15);
  color: #b31b15;
}

.vedi-chip-crimson {
  background: rgba(128, 0, 0, 0.06);
  border-color: rgba(128, 0, 0, 0.25);
  color: #800000;
}
.vedi-chip-crimson .vedi-chip-num {
  background: rgba(128, 0, 0, 0.15);
  color: #800000;
}

/* Booking Form */
.form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.form-full {
  grid-column: span 2;
}

.form-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-main);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 14px;
  border: 1.5px solid #ded6cf;
  border-radius: var(--border-radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--white);
  color: var(--text-main);
  transition: all 0.25s ease;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.15);
  background: var(--white);
}

.form textarea {
  min-height: 100px;
  resize: vertical;
}

.form button[type="submit"] {
  grid-column: span 2;
  margin-top: 10px;
  padding: 16px;
}

/* Responsive Booking Grid */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 991px) {
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.success {
  background: #eaffef;
  border-left: 5px solid var(--green);
  padding: 15px;
  border-radius: var(--border-radius-sm);
  margin-top: 16px;
  font-weight: 500;
  font-size: 0.95rem;
  color: #1e6d30;
}

/* Testimonials / Reviews */
.reviews-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  margin-top: 24px;
  padding-bottom: 15px;
  padding-top: 5px;
}

.reviews-grid::-webkit-scrollbar {
  height: 6px;
}

.reviews-grid::-webkit-scrollbar-track {
  background: rgba(45, 25, 16, 0.05);
  border-radius: 3px;
}

.reviews-grid::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 3px;
}

.review-card {
  flex: 0 0 350px;
  max-width: 350px;
  background: #FFFBF5;
  border: 1px solid #ebd9c8;
  border-radius: var(--border-radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}

.stars {
  color: var(--secondary);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.review-card p {
  font-style: italic;
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 14px;
}

.review-card b {
  color: var(--primary);
  font-size: 0.9rem;
  display: block;
}

/* Language Selection widget wrapper */
.translate-box {
  background: var(--cream);
  border: 1px solid #eed58c;
  border-radius: var(--border-radius-md);
  padding: 30px 20px;
  margin: 20px 0;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.translate-box h3 {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--primary);
}

/* Navbar Translation Container */
.nav-translate-container {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  border: 1px solid #eed58c;
  padding: 4px 12px;
  border-radius: 20px;
  margin-left: auto;
  margin-right: 15px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  z-index: 1000;
  height: 36px;
}

.nav-translate-container:hover {
  border-color: var(--primary);
  background: #fffdf9;
  box-shadow: var(--shadow-md);
}

.nav-translate-container .language-icon {
  color: var(--primary);
  font-size: 1.15rem;
}

#google_translate_element {
  display: inline-block;
}

/* Customizing Google Translator Elements to look premium */
.goog-te-gadget {
  font-family: var(--font-body) !important;
  color: transparent !important;
  font-size: 0 !important;
  display: flex;
  align-items: center;
}

.goog-te-gadget .goog-te-combo {
  padding: 2px 6px;
  border-radius: 12px;
  border: none;
  background: transparent;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  outline: none;
  font-family: var(--font-body);
  margin: 0 !important;
}

.goog-te-gadget .goog-te-combo:focus {
  outline: none;
}

/* Hide Google logo branding and translate frame headers */
.goog-logo-link,
.goog-te-gadget span,
.goog-te-banner-frame,
iframe.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame {
  display: none !important;
  visibility: hidden !important;
}

body {
  top: 0px !important;
  position: static !important;
}

/* Mobile responsive adjustments for navigation translation container */
@media (max-width: 1024px) {
  .nav-translate-container {
    margin-right: 8px;
  }
}

@media (max-width: 480px) {
  .nav-translate-container {
    padding: 2px 8px;
    height: 30px;
    margin-right: 6px;
  }
  .nav-translate-container .language-icon {
    font-size: 1rem;
  }
  .nav-translate-container .goog-te-combo {
    font-size: 0.8rem;
    padding: 0 4px;
  }
}

/* Map iFrame */
iframe {
  width: 100%;
  height: 340px;
  border: 0;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

/* Footer Section */
.footer {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 40px 24px;
  font-size: 0.9rem;
  border-top: 3px solid var(--secondary);
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.footer p:first-child {
  color: var(--cream);
  font-weight: 700;
  font-size: 1rem;
}

/* Floating Actions */
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-whatsapp:hover {
  background: var(--green-hover);
  transform: scale(1.1) rotate(10deg);
}

/* Interactive Contact Section Styles */
.contact-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  border-bottom: 2px solid #eedfd4;
  padding-bottom: 2px;
}

.contact-tab-btn {
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  padding: 10px 16px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
}

.contact-tab-btn:hover {
  color: var(--primary);
  background: rgba(218, 165, 32, 0.05);
}

.contact-tab-btn.active {
  color: var(--primary);
  background: var(--cream);
}

.contact-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: stretch;
}

.contact-card-wrapper {
  background: var(--white);
  border-radius: var(--border-radius-md);
  padding: 30px;
  border: 1px solid #f2ece6;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 400px;
}

.contact-heading {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-subheading {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px dashed #ded6cf;
  font-size: 0.95rem;
  position: relative;
}

.contact-detail-item:last-of-type {
  border-bottom: none;
}

.contact-detail-label {
  font-weight: 700;
  color: var(--primary);
  width: 110px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-detail-label i {
  color: var(--secondary);
  width: 16px;
  text-align: center;
}

.contact-detail-value {
  color: var(--text-main);
  flex-grow: 1;
  padding-right: 32px;
  line-height: 1.5;
}

.contact-copy-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.05rem;
  transition: all 0.2s ease;
}

.contact-copy-btn:hover {
  color: var(--primary);
  transform: translateY(-50%) scale(1.15);
}

.text-green {
  color: var(--green) !important;
}

.contact-buttons-group {
  margin-top: 24px;
  justify-content: flex-start;
  gap: 12px;
}

/* Quick Inquiry Form */
.contact-quick-query-form {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-form-group {
  margin-bottom: 18px;
}

.contact-form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--text-main);
}

.contact-form-group input,
.contact-form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1.5px solid #ded6cf;
  border-radius: var(--border-radius-sm);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text-main);
  outline: none;
  font-family: inherit;
  transition: all 0.25s ease;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.contact-form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-query-submit-btn {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
}

.contact-map-wrapper {
  display: flex;
  align-items: stretch;
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

/* Mobile responsive menu */
.menu-mobile {
  display: none;
}

/* Media Queries for responsiveness */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-map-wrapper iframe {
    min-height: 320px;
  }
  h1 {
    font-size: 2.4rem;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .section {
    padding: 30px 20px;
  }
  .form {
    grid-template-columns: 1fr;
  }
  .form-full,
  .form button[type="submit"] {
    grid-column: span 1;
  }

  .hotel-options {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
  }
  
  .hotel-opt-card {
    padding: 12px 20px;
    gap: 12px;
  }

  .hotel-opt-card i {
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
  }

  /* Compact Info Box for mobile */
  .box {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 16px 20px;
    gap: 16px;
  }

  .box i {
    font-size: 1.4rem;
    margin-bottom: 0;
    width: 42px;
    height: 42px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .box h3 {
    font-size: 1.05rem;
    margin: 0 0 2px 0;
    text-align: left;
  }

  .box p {
    font-size: 0.85rem;
    margin-bottom: 0;
    text-align: left;
  }
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: block;
  }
  
  /* Slide out menu for mobile */
  .menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 250px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 20px 30px 20px;
    gap: 8px;
    transition: right 0.3s ease;
    z-index: 998;
    overflow-y: auto; /* Allow scrolling if options exceed mobile height */
  }
  
  .menu.open {
    right: 0;
  }
  
  .menu a {
    width: 100%;
    padding: 8px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid #eedfd4;
  }

  .menu a::after {
    display: none;
  }

  .menu a:hover,
  .menu a.active {
    color: var(--primary);
    border-bottom-color: var(--secondary);
  }
}

@media (max-width: 768px) {
  .topbar {
    justify-content: center;
    text-align: center;
    padding: 8px 10px;
  }
  .topbar-info {
    justify-content: center;
  }
  .brand {
    font-size: 1.35rem;
    gap: 8px;
  }
  .brand img {
    height: 38px;
  }

  /* Compact 45 Vedis scroll container for mobile screens */
  .vedi-chips-container {
    max-height: 220px;
    overflow-y: auto;
    padding: 12px 8px;
    border: 1.5px solid #eedfd4;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.5);
  }
  .vedi-chips-container::-webkit-scrollbar {
    width: 6px;
  }
  .vedi-chips-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
  }
  .vedi-chips-container::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
  }
  .vedi-chip {
    padding: 6px 12px;
    font-size: 0.85rem;
    gap: 6px;
  }
  .vedi-chip-num {
    width: 18px;
    height: 18px;
    font-size: 0.68rem;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    padding: 10px 12px;
    gap: 4px;
  }
  .brand {
    font-size: 1.12rem; /* Optimized mobile font size to avoid space/wrap */
    gap: 6px;
  }
  .brand img {
    height: 32px; /* Smaller mobile logo */
  }
  .brand span {
    white-space: nowrap; /* Prevent "Moksha Seva Gaya" from wrapping */
  }
  .hero {
    min-height: 480px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 0.95rem;
  }
  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    width: 100%;
  }
  .section {
    padding: 24px 16px;
  }
  h2 {
    font-size: 1.6rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
  }
  .gallery-card img {
    height: 110px;
  }
  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  .contact-tabs {
    flex-wrap: wrap;
    gap: 8px;
  }
  .contact-tab-btn {
    width: 100%;
    justify-content: center;
    border-radius: var(--border-radius-sm);
    padding: 12px;
  }
  .contact-tab-btn.active::after {
    display: none;
  }
  .contact-tab-btn.active {
    background: var(--secondary);
    color: var(--dark);
  }
  .contact-card-wrapper {
    padding: 20px 16px;
    min-height: auto;
  }
  .contact-detail-item {
    flex-direction: column;
    gap: 6px;
  }
  .contact-detail-label {
    width: 100%;
  }
  .contact-detail-value {
    padding-right: 0;
  }
  .contact-copy-btn {
    top: 12px;
    transform: none;
  }
  .contact-copy-btn:hover {
    transform: scale(1.1);
  }
}

/* Sub page Hero Section */
.sub-hero {
  min-height: 280px;
  background-size: cover;
  background-position: center;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sub-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45, 25, 16, 0.8) 0%, rgba(139, 69, 19, 0.9) 100%);
  z-index: 1;
}

.sub-hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
}

.sub-hero h1 {
  font-size: 2.5rem;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 8px;
}

.sub-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 0;
  max-width: 650px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Comparison Table Styling */
.comparison-table-wrapper {
  background: var(--white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid #f2ece6;
  margin-bottom: 12px;
}

.comparison-table {
  width: 100%;
  min-width: 750px; /* Force minimum width to scroll nicely on mobile */
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.comparison-table th, 
.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #eedfd4;
}

.comparison-table th {
  background-color: var(--dark);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
}

.comparison-table th:first-child {
  border-top-left-radius: var(--border-radius-md);
}

.comparison-table th:last-child {
  border-top-right-radius: var(--border-radius-md);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:nth-child(even) {
  background-color: #faf7f2;
}

.comparison-table td strong {
  color: var(--primary);
}

/* FAQ Accordion Styles & Mobile Optimization */
.faq-accordion-list {
  margin: 0 auto;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 15px;
}

.faq-item {
  background: var(--white);
  border: 1px solid #ebd9c8;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 16px 20px;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 1.02rem;
  cursor: pointer;
  background: #FFFBF5;
  transition: all 0.3s ease;
  user-select: none;
}

.faq-question span {
  line-height: 1.4;
  flex: 1;
}

.faq-question i {
  color: var(--primary);
  font-size: 0.85rem;
  transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
}

.faq-question:hover {
  background-color: var(--cream) !important;
}

.faq-item.active {
  border-color: var(--primary) !important;
  box-shadow: var(--shadow-md);
}

.faq-item.active .faq-question {
  background: var(--cream);
}

.faq-item.active .faq-question i {
  background: var(--primary);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-answer {
  animation: slideDown 0.25s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 576px) {
  .faq-accordion-list {
    padding: 0 10px;
    gap: 10px;
  }
  .faq-question {
    padding: 12px 15px;
    font-size: 0.92rem;
    gap: 10px;
  }
  .faq-question i {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }
  .faq-answer {
    padding: 12px 15px !important;
    font-size: 0.86rem !important;
  }
}

/* responsive overrides for packages page sub-hero */
@media (max-width: 768px) {
  .sub-hero h1 {
    font-size: 2rem;
  }
  .sub-hero p {
    font-size: 0.95rem;
  }
}

/* Success Modal Styling */
.success-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(45, 25, 16, 0.6);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-out;
}

.success-modal-content {
  background: var(--white);
  width: 90%;
  max-width: 480px;
  padding: 40px 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(218, 165, 32, 0.2);
  text-align: center;
  position: relative;
  animation: scaleUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-modal-icon-wrapper {
  width: 80px;
  height: 80px;
  background: #E8F5E9;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
  animation: pulseGreen 2s infinite;
}

.success-modal-icon {
  font-size: 2.5rem;
  color: var(--green);
}

.success-modal-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.success-modal-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.success-modal-btn {
  background: var(--primary);
  color: var(--white);
  padding: 12px 36px;
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.success-modal-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Modal Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleUp {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes pulseGreen {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}


/* ==========================================================================
   ADMIN PORTAL — Premium Design System (v3)
   Classes prefixed with .adm- to avoid conflicts and styled with website theme
   ========================================================================== */

/* ── Admin CSS Variables ── */
:root {
  --adm-bg: #FAF6F0;                  /* Sand cream background */
  --adm-surface: #ffffff;             /* Crisp white cards/surfaces */
  --adm-surface-2: #FFF8E7;           /* Soft cream highlight for active fields/rows */
  --adm-border: #eedfd4;              /* Soft warm border matching terracotta style */
  --adm-border-hover: #d3bca8;        /* Hover border */
  --adm-primary: #8B4513;             /* Warm terracotta / brown */
  --adm-primary-hover: #70360f;       /* Primary hover */
  --adm-secondary: #DAA520;           /* Rich Gold */
  --adm-secondary-hover: #b8860b;     /* Gold hover */
  --adm-dark: #2d1910;                /* Deep chocolate dark */
  --adm-red: #d32f2f;                 /* Crimson red */
  --adm-red-bg: rgba(211, 47, 47, 0.06);
  --adm-green: #2e7d32;               /* Dark forest green for success */
  --adm-green-bg: rgba(46, 125, 50, 0.06);
  --adm-text: #3E2723;                /* Dark brown main text */
  --adm-text-muted: #6D5C56;          /* Muted body text */
  
  /* Sidebar-specific tokens (Dark Theme Sidebar) */
  --adm-sidebar-bg: #2d1910;          /* Deep chocolate dark sidebar */
  --adm-sidebar-text: #FAF6F0;        /* Light sand text */
  --adm-sidebar-text-muted: #bcaba4;  /* Muted sidebar text */
  --adm-sidebar-border: rgba(255, 255, 255, 0.05);

  --adm-sidebar-w: 260px;
  --adm-topbar-h: 72px;
  --adm-radius: 16px;
  --adm-radius-sm: 10px;
  --adm-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --adm-shadow: 0 4px 18px rgba(45, 25, 16, 0.04);
  --adm-shadow-lg: 0 12px 30px rgba(45, 25, 16, 0.09);
}

/* ==========================================================================
   AUTH LOADING SPLASH
   ========================================================================== */
.adm-splash {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--adm-bg);
}
.adm-splash-inner {
  text-align: center;
  color: var(--adm-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
}
.adm-splash-inner p {
  margin: 0;
  color: var(--adm-text-muted);
  font-weight: 600;
}

/* ── Spinner ── */
.adm-spinner {
  width: 42px;
  height: 42px;
  border: 4px solid rgba(139, 69, 19, 0.1);
  border-top-color: var(--adm-primary);
  border-radius: 50%;
  animation: adm-spin 0.75s linear infinite;
}
.adm-spinner.large { width: 52px; height: 52px; border-width: 4.5px; }
@keyframes adm-spin { to { transform: rotate(360deg); } }

.adm-btn-spinner {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: adm-spin 0.7s linear infinite;
}

/* ==========================================================================
   LOGIN PAGE
   ========================================================================== */
.adm-login-page {
  min-height: 100vh;
  display: flex;
  font-family: var(--font-body);
  background: var(--adm-bg);
}

/* Left decorative panel */
.adm-login-left {
  flex: 1.2;
  background: linear-gradient(135deg, var(--adm-dark) 0%, var(--adm-primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: inset -10px 0 30px rgba(0,0,0,0.15);
}

.adm-login-left::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(218, 165, 32, 0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.adm-login-left-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 420px;
}

.adm-login-brand-icon {
  width: 90px; height: 90px;
  background: linear-gradient(135deg, var(--adm-secondary), var(--adm-primary));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px auto;
  font-size: 2.5rem;
  color: #fff;
  box-shadow: 0 12px 36px rgba(218, 165, 32, 0.3);
  animation: float 4s ease-in-out infinite;
}

.adm-login-left-content h1 {
  font-size: 2.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  font-family: var(--font-heading);
}

.adm-login-left-content > p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  margin-bottom: 40px;
  font-weight: 500;
}

.adm-login-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.adm-login-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 20px;
  border-radius: var(--adm-radius-sm);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
  transition: var(--adm-transition);
}
.adm-login-feature-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(6px);
}

.adm-login-feature-item i {
  color: var(--adm-secondary);
  font-size: 1.15rem;
  width: 22px;
  text-align: center;
}

/* Right form panel */
.adm-login-right {
  flex: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.adm-login-card {
  width: 100%;
  max-width: 400px;
  background: var(--adm-surface);
  border: 1.5px solid var(--adm-border);
  border-radius: var(--adm-radius);
  padding: 40px 32px;
  box-shadow: var(--adm-shadow-lg);
  display: flex;
  flex-direction: column;
  animation: adm-fadeUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes adm-fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.adm-login-card-header {
  text-align: center;
  margin-bottom: 30px;
}

.adm-login-avatar {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, var(--adm-primary), var(--adm-secondary));
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(139,69,19,0.15);
}

.adm-login-card-header h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--adm-text);
  border: none;
  padding: 0;
  margin-bottom: 6px;
  display: block;
  font-family: var(--font-heading);
}

.adm-login-card-header p {
  color: var(--adm-text-muted);
  font-size: 0.9rem;
  margin: 0;
  font-weight: 500;
}

/* Form fields */
.adm-login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 16px;
}

.adm-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.adm-field label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--adm-text);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.adm-field label i {
  color: var(--adm-primary);
  font-size: 0.85rem;
}

.adm-field input[type="text"],
.adm-field input[type="email"],
.adm-field input[type="password"],
.adm-field input[type="number"] {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--adm-border);
  border-radius: var(--adm-radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--adm-transition);
  color: var(--adm-text);
  background: #fff;
}

.adm-field input:focus {
  border-color: var(--adm-primary);
  box-shadow: 0 0 0 3px rgba(139,69,19,0.12);
}

.adm-password-wrapper {
  position: relative;
}

.adm-password-wrapper input {
  padding-right: 48px;
}

.adm-toggle-password {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--adm-text-muted);
  font-size: 1rem;
  padding: 0;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.adm-toggle-password:hover { color: var(--adm-primary); }

.adm-login-error {
  background: var(--adm-red-bg);
  border: 1px solid rgba(211, 47, 47, 0.2);
  color: var(--adm-red);
  padding: 12px 16px;
  border-radius: var(--adm-radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.adm-login-submit {
  background: linear-gradient(135deg, var(--adm-primary) 0%, var(--adm-primary-hover) 100%);
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: var(--adm-radius-sm);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--adm-transition);
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
  font-family: var(--font-body);
}

.adm-login-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

.adm-login-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.adm-forgot-link {
  background: none;
  border: none;
  color: var(--adm-primary);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 6px auto 16px auto;
  font-family: var(--font-body);
  transition: color 0.2s;
}

.adm-forgot-link:hover { color: var(--adm-primary-hover); text-decoration: underline; }

.adm-back-to-site {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--adm-text-muted);
  font-weight: 600;
  border-top: 1.5px solid var(--adm-border);
  padding-top: 16px;
  transition: color 0.2s;
}

.adm-back-to-site:hover { color: var(--adm-primary); }

.adm-reset-success {
  text-align: center;
  padding: 24px 16px;
  background: var(--adm-green-bg);
  border: 1px solid rgba(46, 125, 80, 0.2);
  border-radius: var(--adm-radius);
  color: var(--adm-green);
  margin-bottom: 20px;
  line-height: 1.5;
}

.adm-reset-success i {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

.adm-reset-success p {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .adm-login-left { display: none; }
  .adm-login-right { width: 100%; flex: 1; }
}

/* ==========================================================================
   DASHBOARD LAYOUT
   ========================================================================== */
.adm-dashboard {
  display: flex;
  min-height: 100vh;
  background: var(--adm-bg);
  font-family: var(--font-body);
}

/* ── SIDEBAR ── */
.adm-sidebar {
  width: var(--adm-sidebar-w);
  background: var(--adm-sidebar-bg);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 200;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  border-right: 1px solid var(--adm-sidebar-border);
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
}

.adm-dashboard.sidebar-collapsed .adm-sidebar {
  width: 70px;
}

.adm-dashboard.sidebar-collapsed .adm-brand-text,
.adm-dashboard.sidebar-collapsed .adm-user-info,
.adm-dashboard.sidebar-collapsed .adm-nav-text,
.adm-dashboard.sidebar-collapsed .adm-nav-badge,
.adm-dashboard.sidebar-collapsed .adm-nav-label,
.adm-dashboard.sidebar-collapsed .adm-sidebar-footer span {
  display: none;
}

.adm-sidebar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 16px;
  border-bottom: 1px solid var(--adm-sidebar-border);
}

.adm-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}

.adm-brand-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--adm-secondary), var(--adm-primary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(218,165,32,0.2);
}

.adm-brand-text {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.adm-brand-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--adm-sidebar-text);
  white-space: nowrap;
}

.adm-brand-sub {
  font-size: 0.72rem;
  color: var(--adm-sidebar-text-muted);
  white-space: nowrap;
}

.adm-sidebar-toggle {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--adm-sidebar-border);
  color: var(--adm-sidebar-text-muted);
  width: 28px; height: 28px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  transition: var(--adm-transition);
}
.adm-sidebar-toggle:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* User card in sidebar */
.adm-user-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--adm-sidebar-border);
}

.adm-user-avatar {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid var(--adm-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--adm-secondary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.adm-user-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
}

.adm-user-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--adm-sidebar-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.adm-user-email {
  font-size: 0.72rem;
  color: var(--adm-sidebar-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Navigation */
.adm-nav {
  flex: 1;
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.adm-nav-label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--adm-sidebar-text-muted);
  padding: 0 8px;
  margin: 8px 0 6px 0;
  opacity: 0.6;
}

.adm-nav-item {
  background: none;
  border: none;
  color: var(--adm-sidebar-text-muted);
  padding: 11px 12px;
  border-radius: var(--adm-radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--adm-transition);
  font-family: var(--font-body);
  position: relative;
}

.adm-nav-item:hover {
  background: rgba(255,255,255,0.04);
  color: #fff;
}

.adm-nav-item.active {
  background: linear-gradient(135deg, rgba(218,165,32,0.15) 0%, rgba(139,69,19,0.08) 100%);
  color: var(--adm-secondary);
  border-left: 4px solid var(--adm-secondary);
  border-radius: 0 var(--adm-radius-sm) var(--adm-radius-sm) 0;
}

.adm-nav-icon {
  width: 22px;
  text-align: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.adm-nav-text { white-space: nowrap; }

.adm-nav-badge {
  background: var(--adm-primary);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 20px;
  margin-left: auto;
}

.adm-nav-badge.gold {
  background: var(--adm-secondary);
  color: var(--adm-dark);
}

/* Sidebar footer */
.adm-sidebar-footer {
  padding: 12px 10px;
  border-top: 1px solid var(--adm-sidebar-border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.adm-sidebar-link,
.adm-logout-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--adm-radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--adm-transition);
  text-decoration: none;
  font-family: var(--font-body);
}

.adm-sidebar-link {
  color: var(--adm-sidebar-text-muted);
  background: none;
  border: none;
}
.adm-sidebar-link:hover {
  background: rgba(255,255,255,0.04);
  color: #fff;
}

.adm-logout-btn {
  background: var(--adm-red-bg);
  color: #fca5a5;
  border: 1px solid rgba(239,68,68,0.15);
}
.adm-logout-btn:hover {
  background: rgba(239,68,68,0.25);
  color: #fff;
}

/* ── MAIN AREA ── */
.adm-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

/* Top header bar */
.adm-topbar {
  background: var(--adm-surface);
  border-bottom: 1.5px solid var(--adm-border);
  padding: 0 28px;
  height: var(--adm-topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(45, 25, 16, 0.02);
}

.adm-topbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.adm-mobile-toggle {
  background: none;
  border: 1.5px solid var(--adm-border);
  color: var(--adm-text-muted);
  width: 38px; height: 38px;
  border-radius: var(--adm-radius-sm);
  cursor: pointer;
  font-size: 1rem;
  display: none;
  align-items: center;
  justify-content: center;
  transition: var(--adm-transition);
}
.adm-mobile-toggle:hover {
  background: var(--adm-surface-2);
  color: var(--adm-primary);
}

.adm-page-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--adm-text);
  margin: 0;
  font-family: var(--font-heading);
  border: none;
  padding: 0;
  display: block;
  letter-spacing: -0.3px;
}

.adm-page-sub {
  font-size: 0.8rem;
  color: var(--adm-text-muted);
  margin: 2px 0 0 0;
  font-weight: 500;
}

.adm-topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.adm-stat-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--adm-green-bg);
  color: var(--adm-green);
  border: 1px solid rgba(46, 125, 50, 0.15);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.adm-live-dot {
  font-size: 0.5rem;
  animation: adm-pulse 1.5s ease-in-out infinite;
}

@keyframes adm-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.adm-count-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--adm-surface-2);
  color: var(--adm-primary);
  border: 1px solid var(--adm-border);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
}

/* ── Primary / Ghost buttons ── */
.adm-primary-btn {
  background: linear-gradient(135deg, var(--adm-primary) 0%, var(--adm-primary-hover) 100%);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: var(--adm-radius-sm);
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  transition: var(--adm-transition);
  font-family: var(--font-body);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.15);
}
.adm-primary-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(139, 69, 19, 0.25);
}
.adm-primary-btn:disabled { opacity: 0.7; cursor: not-allowed; }
.adm-primary-btn.large { padding: 13px 28px; font-size: 0.95rem; }

.adm-ghost-btn {
  background: var(--adm-surface);
  color: var(--adm-text-muted);
  border: 1.5px solid var(--adm-border);
  padding: 10px 20px;
  border-radius: var(--adm-radius-sm);
  font-weight: 700;
  cursor: pointer;
  font-size: 0.88rem;
  transition: var(--adm-transition);
  font-family: var(--font-body);
}
.adm-ghost-btn:hover {
  background: var(--adm-surface-2);
  border-color: var(--adm-primary);
  color: var(--adm-primary);
}

/* ── Content area ── */
.adm-content {
  padding: 28px;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
}

/* ── Empty & Loading states ── */
.adm-center-state,
.adm-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  text-align: center;
  gap: 16px;
  color: var(--adm-text-muted);
  animation: adm-fadeIn 0.3s ease-out;
}

.adm-empty-icon {
  width: 80px; height: 80px;
  background: var(--adm-surface-2);
  border: 1.5px solid var(--adm-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--adm-primary);
  box-shadow: var(--adm-shadow);
}

.adm-empty-state h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--adm-text);
  margin: 0;
  font-family: var(--font-heading);
}

.adm-empty-state p {
  max-width: 400px;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ==========================================================================
   KPI METRICS GRID
   ========================================================================== */
.adm-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.adm-metric-card {
  background: var(--adm-surface);
  border: 1.5px solid var(--adm-border);
  border-radius: var(--adm-radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--adm-shadow);
  transition: var(--adm-transition);
  animation: adm-fadeUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.adm-metric-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(45, 25, 16, 0.06);
  border-color: var(--adm-primary);
}

.adm-metric-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.adm-metric-card.primary .adm-metric-icon {
  background: var(--adm-green-bg);
  color: var(--adm-green);
}
.adm-metric-card.secondary .adm-metric-icon {
  background: rgba(218, 165, 32, 0.1);
  color: var(--adm-secondary-hover);
}
.adm-metric-card.tertiary .adm-metric-icon {
  background: rgba(21, 101, 192, 0.08);
  color: #1565c0;
}
.adm-metric-card.quaternary .adm-metric-icon {
  background: var(--adm-red-bg);
  color: var(--adm-red);
}

.adm-metric-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.adm-metric-val {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--adm-text);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.adm-metric-label {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--adm-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   SEARCH & FILTERS
   ========================================================================== */
.adm-filter-bar {
  background: var(--adm-surface);
  border: 1.5px solid var(--adm-border);
  border-radius: var(--adm-radius);
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  box-shadow: var(--adm-shadow);
  animation: adm-fadeUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.adm-search-wrapper {
  flex: 1;
  min-width: 250px;
  position: relative;
}

.adm-search-wrapper i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--adm-text-muted);
  font-size: 0.9rem;
}

.adm-search-input {
  width: 100%;
  padding: 11px 16px 11px 40px;
  border: 1.5px solid var(--adm-border);
  border-radius: var(--adm-radius-sm);
  font-size: 0.92rem;
  font-family: var(--font-body);
  color: var(--adm-text);
  background: #fff;
  outline: none;
  transition: var(--adm-transition);
}

.adm-search-input:focus {
  border-color: var(--adm-primary);
  box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.adm-filter-select {
  padding: 11px 36px 11px 16px;
  border: 1.5px solid var(--adm-border);
  border-radius: var(--adm-radius-sm);
  font-size: 0.92rem;
  font-family: var(--font-body);
  color: var(--adm-text);
  background: #fff;
  outline: none;
  cursor: pointer;
  transition: var(--adm-transition);
  min-width: 190px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236D5C56' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.adm-filter-select:focus {
  border-color: var(--adm-primary);
  box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.adm-sort-btn {
  background: var(--adm-surface-2);
  border: 1.5px solid var(--adm-border);
  color: var(--adm-primary);
  padding: 11px 16px;
  border-radius: var(--adm-radius-sm);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--adm-transition);
  font-family: var(--font-body);
}

.adm-sort-btn:hover {
  background: var(--adm-primary);
  color: #fff;
  border-color: var(--adm-primary);
}

.adm-reset-btn {
  background: none;
  border: none;
  color: var(--adm-text-muted);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: var(--adm-radius-sm);
  transition: var(--adm-transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.adm-reset-btn:hover {
  color: var(--adm-red);
  background: var(--adm-red-bg);
}

/* ==========================================================================
   BOOKINGS TABLE
   ========================================================================= */
.adm-table-wrapper {
  background: var(--adm-surface);
  border-radius: var(--adm-radius);
  border: 1.5px solid var(--adm-border);
  overflow: hidden;
  box-shadow: var(--adm-shadow);
  animation: adm-fadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.adm-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.adm-table thead {
  background: var(--adm-surface-2);
  border-bottom: 1.5px solid var(--adm-border);
}

.adm-table th {
  padding: 16px 18px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--adm-text-muted);
  white-space: nowrap;
}

.adm-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--adm-border);
  color: var(--adm-text);
  vertical-align: middle;
}

.adm-table-row:last-child td { border-bottom: none; }

.adm-table-row:hover td { background: var(--adm-surface-2); }

.adm-row-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--adm-surface-2);
  border: 1px solid var(--adm-border);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--adm-primary);
}

.adm-yatri-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}

.adm-yatri-avatar {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--adm-primary), var(--adm-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(139,69,19,0.15);
}

.adm-phone-link {
  color: var(--adm-primary);
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.adm-phone-link:hover { text-decoration: underline; color: var(--adm-primary-hover); }

.adm-pkg-chip {
  background: linear-gradient(135deg, var(--adm-surface-2), #fde68a);
  color: #92400e;
  border: 1px solid #fcd34d;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.adm-date-text {
  color: var(--adm-text);
  font-weight: 700;
  font-size: 0.85rem;
}

.adm-detail-btn {
  background: var(--adm-surface-2);
  color: var(--adm-primary);
  border: 1px solid var(--adm-border);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--adm-transition);
  font-family: var(--font-body);
  white-space: nowrap;
}
.adm-detail-btn:hover {
  background: var(--adm-primary);
  color: #fff;
  border-color: var(--adm-primary);
  transform: translateY(-1px);
}

/* ── Action Groups in Table Row ── */
.adm-actions-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.adm-action-icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--adm-transition);
  border: 1px solid var(--adm-border);
}

.adm-action-icon-btn.call {
  background: var(--adm-surface-2);
  color: var(--adm-primary);
}

.adm-action-icon-btn.call:hover {
  background: var(--adm-primary);
  color: #fff;
  border-color: var(--adm-primary);
  transform: translateY(-1px);
}

.adm-action-icon-btn.whatsapp {
  background: #dcfce7;
  color: #16a34a;
  border-color: #bbf7d0;
}

.adm-action-icon-btn.whatsapp:hover {
  background: #bbf7d0;
  transform: translateY(-1px);
}

/* ==========================================================================
   PACKAGE EDITOR
   ========================================================================== */
.adm-editor-panel {
  background: var(--adm-surface);
  border-radius: var(--adm-radius);
  border: 1.5px solid var(--adm-border);
  overflow: hidden;
  box-shadow: var(--adm-shadow-lg);
  animation: adm-fadeUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.adm-editor-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1.5px solid var(--adm-border);
  background: var(--adm-surface-2);
}

.adm-editor-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--adm-text);
  margin: 0;
  font-family: var(--font-heading);
}

.adm-editor-sub {
  font-size: 0.8rem;
  color: var(--adm-text-muted);
  margin: 4px 0 0 0;
}

.adm-editor-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--adm-text-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.adm-editor-close:hover { color: var(--adm-primary); }

.adm-editor-form { padding: 28px; }

.adm-editor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.adm-checkbox-field {
  justify-content: center;
}

.adm-toggle-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--adm-text);
}
.adm-toggle-label input { display: none; }

.adm-toggle-track {
  width: 44px; height: 24px;
  background: #e2e8f0;
  border-radius: 30px;
  position: relative;
  transition: background-color 0.2s;
  flex-shrink: 0;
}

.adm-toggle-thumb {
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px; left: 3px;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.adm-toggle-label input:checked + .adm-toggle-track {
  background: var(--adm-secondary);
}
.adm-toggle-label input:checked + .adm-toggle-track .adm-toggle-thumb {
  transform: translateX(20px);
}

.adm-features-block {
  border-top: 1.5px solid var(--adm-border);
  padding-top: 24px;
  margin-bottom: 28px;
}

.adm-features-label {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--adm-text);
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.adm-features-label i { color: var(--adm-primary); }

.adm-features-hint {
  font-size: 0.8rem;
  color: var(--adm-text-muted);
  margin: 4px 0 16px 0;
}

.adm-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.adm-feature-row {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: adm-fadeIn 0.2s ease-out;
}

.adm-feature-num {
  width: 26px; height: 26px;
  background: var(--adm-surface-2);
  border: 1px solid var(--adm-border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--adm-primary);
  flex-shrink: 0;
}

.adm-feature-row input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--adm-border);
  border-radius: var(--adm-radius-sm);
  font-size: 0.9rem;
  outline: none;
  color: var(--adm-text);
  transition: border-color 0.2s;
}
.adm-feature-row input:focus { border-color: var(--adm-primary); }

.adm-feature-del {
  background: var(--adm-red-bg);
  border: 1px solid rgba(211, 47, 47, 0.15);
  color: var(--adm-red);
  width: 38px; height: 38px;
  border-radius: var(--adm-radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--adm-transition);
}
.adm-feature-del:hover {
  background: rgba(211,47,47,0.25);
  color: #fff;
  border-color: var(--adm-red);
}

.adm-add-feature-btn {
  background: none;
  border: 1.5px dashed var(--adm-border);
  color: var(--adm-primary);
  padding: 10px 18px;
  border-radius: var(--adm-radius-sm);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--adm-transition);
  font-family: var(--font-body);
}
.adm-add-feature-btn:hover {
  background: var(--adm-surface-2);
  border-color: var(--adm-primary);
}

.adm-editor-actions {
  border-top: 1.5px solid var(--adm-border);
  padding-top: 24px;
  display: flex;
  gap: 12px;
}

/* ==========================================================================
   PACKAGES TAB
   ========================================================================== */
.adm-pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.adm-pkg-card {
  background: var(--adm-surface);
  border: 1.5px solid var(--adm-border);
  border-radius: var(--adm-radius);
  padding: 26px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--adm-shadow);
  display: flex;
  flex-direction: column;
  transition: var(--adm-transition);
  animation: adm-fadeUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.adm-pkg-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--adm-shadow-lg);
  border-color: var(--adm-primary);
}

.adm-pkg-card.popular {
  border-color: var(--adm-secondary);
  box-shadow: 0 8px 24px rgba(218, 165, 32, 0.1);
}

.adm-popular-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(218, 165, 32, 0.12);
  color: var(--adm-secondary-hover);
  border: 1px solid rgba(218, 165, 32, 0.3);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
}

.adm-pkg-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.adm-pkg-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--adm-text);
  margin: 0;
  font-family: var(--font-heading);
}

.adm-pkg-price {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--adm-primary);
  margin-top: 6px;
  font-family: var(--font-heading);
}

.adm-pkg-order-badge {
  font-size: 0.75rem;
  font-weight: 800;
  background: var(--adm-surface-2);
  border: 1px solid var(--adm-border);
  color: var(--adm-primary);
  padding: 2px 8px;
  border-radius: 6px;
}

.adm-pkg-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.adm-pkg-features li {
  font-size: 0.88rem;
  color: var(--adm-text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.adm-pkg-features li i {
  color: var(--adm-primary);
  margin-top: 3px;
  font-size: 0.8rem;
}

.adm-pkg-card-actions {
  display: flex;
  gap: 10px;
  border-top: 1px dashed var(--adm-border);
  padding-top: 18px;
}

.adm-edit-btn,
.adm-delete-btn {
  flex: 1;
  padding: 8px 12px;
  border-radius: var(--adm-radius-sm);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--adm-transition);
  font-family: var(--font-body);
}

.adm-edit-btn {
  background: var(--adm-surface-2);
  color: var(--adm-primary);
  border: 1px solid var(--adm-border);
}
.adm-edit-btn:hover {
  background: var(--adm-primary);
  color: #fff;
  border-color: var(--adm-primary);
}

.adm-delete-btn {
  background: var(--adm-red-bg);
  color: var(--adm-red);
  border: 1px solid rgba(211, 47, 47, 0.15);
}
.adm-delete-btn:hover {
  background: rgba(211,47,47,0.25);
  color: #fff;
  border-color: var(--adm-red);
}

/* ==========================================================================
   BOOKING DETAIL MODAL
   ========================================================================== */
.adm-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 25, 16, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: adm-fadeIn 0.2s ease-out;
}

.adm-modal {
  background: var(--adm-surface);
  border: 1.5px solid var(--adm-border);
  border-radius: var(--adm-radius);
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--adm-shadow-lg);
  animation: adm-scaleUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

@keyframes adm-scaleUp {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes adm-fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.adm-modal-head {
  padding: 20px 24px;
  border-bottom: 1.5px dashed var(--adm-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--adm-surface-2);
  position: relative;
}

/* Receipt cutouts on the sides of the dashed border */
.adm-modal-head::before,
.adm-modal-head::after {
  content: '';
  position: absolute;
  bottom: -8px;
  width: 16px;
  height: 16px;
  background: var(--adm-bg);
  border-radius: 50%;
  border: 1.5px solid var(--adm-border);
  z-index: 5;
}

.adm-modal-head::before { left: -9px; }
.adm-modal-head::after { right: -9px; }

.adm-modal-head-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.adm-modal-head-left h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--adm-text);
  margin: 0;
  font-family: var(--font-heading);
}

.adm-modal-head-left p {
  font-size: 0.8rem;
  color: var(--adm-text-muted);
  margin: 2px 0 0 0;
  font-weight: 500;
}

.adm-modal-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--adm-primary), var(--adm-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 3px 8px rgba(139,69,19,0.18);
}

.adm-modal-x {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--adm-text-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.adm-modal-x:hover { color: var(--adm-primary); }

.adm-modal-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

.adm-modal-section-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--adm-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  margin-top: 24px;
  border-bottom: 1.5px solid var(--adm-border);
  padding-bottom: 6px;
}

.adm-modal-section-title:first-of-type {
  margin-top: 0;
}

.adm-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 20px;
}

.adm-modal-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.adm-modal-field.full {
  grid-column: span 2;
}

.adm-modal-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--adm-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.adm-modal-label i {
  color: var(--adm-primary);
}

.adm-modal-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--adm-text);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.adm-modal-val a {
  color: var(--adm-primary);
}

.adm-wa-link {
  background: #dcfce7;
  color: #16a34a !important;
  border: 1px solid #bbf7d0;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.adm-wa-link:hover {
  background: #bbf7d0;
}

.adm-modal-textbox {
  background: var(--adm-surface-2);
  border: 1px solid var(--adm-border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.9rem;
  color: var(--adm-text);
  min-height: 60px;
  white-space: pre-wrap;
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.6;
}

.adm-modal-foot {
  padding: 16px 24px;
  background: var(--adm-surface);
  border-top: 1.5px solid var(--adm-border);
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.adm-call-btn,
.adm-wa-btn {
  padding: 10px 20px;
  border-radius: var(--adm-radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--adm-transition);
  font-family: var(--font-body);
}

.adm-call-btn {
  background: var(--adm-surface-2);
  color: var(--adm-primary);
  border: 1.5px solid var(--adm-border);
}
.adm-call-btn:hover {
  background: var(--adm-primary);
  color: #fff;
  border-color: var(--adm-primary);
}

.adm-wa-btn {
  background: #dcfce7;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}
.adm-wa-btn:hover { background: #bbf7d0; }

/* ── RESPONSIVE OVERRIDES ── */
.adm-sidebar-overlay {
  display: none;
}

@media (max-width: 1024px) {
  :root { --adm-sidebar-w: 230px; }
  .adm-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .adm-dashboard {
    flex-direction: column;
  }
  
  /* Slide-in sidebar drawer for mobile */
  .adm-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100vh;
    width: var(--adm-sidebar-w);
    transform: translateX(-100%);
    z-index: 9999;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .adm-dashboard:not(.sidebar-collapsed) .adm-sidebar {
    transform: translateX(0);
  }
  
  .adm-sidebar-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(45, 25, 16, 0.4);
    z-index: 1999;
    backdrop-filter: blur(2px);
    animation: adm-fadeIn 0.25s ease-out;
  }
  
  .adm-sidebar-toggle { display: none; }
  .adm-user-card { border-bottom: 1.5px solid var(--adm-sidebar-border); }
  .adm-sidebar-close-mobile { display: flex; }
  
  .adm-mobile-toggle { display: flex; }
  .adm-topbar { padding: 0 16px; }
  .adm-content { padding: 20px 16px; }
  .adm-editor-grid { grid-template-columns: 1fr; }
  .adm-modal-grid { grid-template-columns: 1fr; }
  .adm-modal-field.full { grid-column: auto; }
  
  /* Convert horizontal table to beautiful responsive cards */
  .adm-table {
    display: block;
    width: 100%;
    border: none;
    background: none;
    box-shadow: none;
  }
  
  .adm-table thead {
    display: none; /* Hide header row */
  }
  
  .adm-table tbody {
    display: block;
    width: 100%;
  }
  
  .adm-table tr {
    display: block;
    width: 100%;
    background: var(--adm-surface);
    border: 1.5px solid var(--adm-border);
    border-radius: var(--adm-radius);
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: var(--adm-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
  }
  
  .adm-table tr:hover {
    transform: translateY(-2px);
    box-shadow: var(--adm-shadow-lg);
    border-color: var(--adm-primary);
  }
  
  .adm-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed var(--adm-border);
    padding: 12px 0;
    text-align: right;
    width: 100%;
    font-size: 0.9rem;
  }
  
  .adm-table td:last-child {
    border-bottom: none;
  }
  
  /* Inject header descriptions through data-label attr */
  .adm-table td::before {
    content: attr(data-label);
    font-weight: 800;
    color: var(--adm-text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    text-align: left;
    margin-right: 15px;
    letter-spacing: 0.5px;
  }
  
  /* Action cell styling in mobile cards */
  .adm-table td.adm-cell-actions {
    justify-content: flex-end;
    padding-top: 14px;
  }
  
  .adm-table td.adm-cell-actions::before {
    display: none;
  }
  
  .adm-yatri-cell {
    justify-content: flex-end;
    width: 100%;
  }
  
  .adm-filter-bar {
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  
  .adm-search-wrapper {
    min-width: 100%;
  }
  
  .adm-filter-select {
    width: 100%;
  }
  
  .adm-sort-btn {
    width: 100%;
    justify-content: center;
  }
  
  .adm-reset-btn {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 500px) {
  .adm-login-right { padding: 24px 16px; }
  .adm-login-card { padding: 30px 20px; }
  .adm-topbar-right .adm-count-chip { display: none; }
  .adm-modal { max-height: 95vh; }
  .adm-modal-body { padding: 16px; }
  .adm-modal-foot { padding: 12px 16px; justify-content: center; }
  .adm-call-btn, .adm-wa-btn { flex: 1; justify-content: center; font-size: 0.82rem; padding: 10px; }
  .adm-metrics-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Bottom Sheet Modal Styling */
.bottom-sheet-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(45, 25, 16, 0.55);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: flex-end; /* Align bottom sheet to bottom of viewport */
  animation: fadeIn 0.3s ease-out;
}

.bottom-sheet-content {
  background: var(--white);
  width: 100%;
  max-width: 600px;
  max-height: 85vh; /* Keep some visibility of backdrop at the top */
  border-top-left-radius: var(--border-radius-lg);
  border-top-right-radius: var(--border-radius-lg);
  box-shadow: 0 -8px 32px rgba(45, 25, 16, 0.18);
  border-top: 4px solid var(--secondary);
  padding: 30px;
  overflow-y: auto; /* Enable scrolling for forms on small screens */
  position: relative;
  animation: slideUp 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bottom-sheet-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.bottom-sheet-close:hover {
  color: var(--primary);
}

.bottom-sheet-drag-handle {
  width: 45px;
  height: 5px;
  background: #ded6cf;
  border-radius: 3px;
  margin: -15px auto 20px auto;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

@media (max-width: 480px) {
  .bottom-sheet-content {
    padding: 24px 16px;
    max-height: 90vh;
  }
}

/* Mobile Nav Backdrop */
.nav-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(45, 25, 16, 0.4);
  backdrop-filter: blur(2px);
  z-index: 997; /* Just below mobile menu z-index (998) */
  animation: fadeIn 0.25s ease-out;
}

/* About Section Styles & Font Optimization */
.about-section-content {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 24px;
}

.about-welcome {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.about-description {
  margin-bottom: 20px;
}

.about-features-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.about-features-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  color: var(--text-main);
}

.about-features-list li::before {
  content: "🕉️";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 1.15rem;
}

.about-packages-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}

@media (max-width: 768px) {
  .about-packages-summary {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.about-package-item {
  background: var(--cream);
  padding: 24px;
  border-radius: var(--border-radius-md);
  border-top: 3px solid var(--secondary);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.about-package-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--primary);
}

.about-package-item h4 {
  font-family: var(--font-heading);
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1.25rem;
  font-weight: 700;
}

.about-package-item p {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
  color: var(--text-muted);
}

.about-footer-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-top: 28px;
}

/* Horizontal scroll adjustments for reviews on mobile screens */
@media (max-width: 768px) {
  .reviews-grid {
    gap: 16px;
    margin-left: -10px;
    margin-right: -10px;
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .reviews-grid .review-card {
    flex: 0 0 285px !important;
    max-width: 285px !important;
  }
}

/* Infinite Horizontal Marquee for Vedis */
.vedi-marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 15px 0;
  background: transparent;
}

/* Mask to fade edges (left and right) for premium look */
.vedi-marquee-container::before,
.vedi-marquee-container::after {
  content: "";
  height: 100%;
  width: 80px;
  position: absolute;
  top: 0;
  z-index: 2;
  pointer-events: none;
}

.vedi-marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--white) 0%, rgba(255, 255, 255, 0) 100%);
}

.vedi-marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--white) 0%, rgba(255, 255, 255, 0) 100%);
}

.vedi-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: vediMarqueeScroll 40s linear infinite;
}

/* Pause on hover so users can hover/read a specific vedi chip */
.vedi-marquee-container:hover .vedi-marquee-track {
  animation-play-state: paused;
}

.vedi-marquee-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.vedi-marquee-column .vedi-chip {
  white-space: nowrap; /* Prevent text wrapping inside chips */
}

@keyframes vediMarqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Online Pinddaan Cards Premium Styles */
.online-box-card {
  position: relative;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--border-radius-lg);
  padding: 32px 24px;
  box-shadow: 0 10px 30px rgba(139, 69, 19, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

/* Hover effects with subtle color scaling and float animation */
.online-box-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(139, 69, 19, 0.12);
}

.online-box-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  transition: height 0.3s ease;
}

.online-box-card:hover::before {
  height: 6px;
}

/* Distinct card designs */
.online-box-card-1 {
  border-color: rgba(255, 69, 0, 0.12);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF8F5 100%);
}
.online-box-card-1::before {
  background: linear-gradient(90deg, #FF7F50 0%, #FF4500 100%);
}

.online-box-card-2 {
  border-color: rgba(218, 165, 32, 0.12);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFDF3 100%);
}
.online-box-card-2::before {
  background: linear-gradient(90deg, #FFD700 0%, #DAA520 100%);
}

.online-box-card-3 {
  border-color: rgba(139, 69, 19, 0.12);
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF6F2 100%);
}
.online-box-card-3::before {
  background: linear-gradient(90deg, #CD853F 0%, #8B4513 100%);
}

/* Icon Styles with animated background */
.online-box-icon-wrapper {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.online-box-card-1 .online-box-icon-wrapper {
  background: rgba(255, 69, 0, 0.08);
  color: #FF4500;
  animation: pulseOrange 2.5s infinite;
}

.online-box-card-2 .online-box-icon-wrapper {
  background: rgba(218, 165, 32, 0.1);
  color: #DAA520;
  animation: pulseGold 2.5s infinite 0.5s;
}

.online-box-card-3 .online-box-icon-wrapper {
  background: rgba(139, 69, 19, 0.08);
  color: #8B4513;
  animation: pulseBrown 2.5s infinite 1s;
}

.online-box-icon-wrapper i {
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.online-box-card:hover .online-box-icon-wrapper i {
  transform: scale(1.15) rotate(5deg);
}

.online-box-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

.online-box-card-1 h3 { color: #E64A19; }
.online-box-card-2 h3 { color: #B7791F; }
.online-box-card-3 h3 { color: #795548; }

.online-box-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Pulsing Keyframe animations */
@keyframes pulseOrange {
  0% { box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.3); }
  70% { box-shadow: 0 0 0 10px rgba(255, 69, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 69, 0, 0); }
}

@keyframes pulseGold {
  0% { box-shadow: 0 0 0 0 rgba(218, 165, 32, 0.3); }
  70% { box-shadow: 0 0 0 10px rgba(218, 165, 32, 0); }
  100% { box-shadow: 0 0 0 0 rgba(218, 165, 32, 0); }
}

@keyframes pulseBrown {
  0% { box-shadow: 0 0 0 0 rgba(139, 69, 19, 0.3); }
  70% { box-shadow: 0 0 0 10px rgba(139, 69, 19, 0); }
  100% { box-shadow: 0 0 0 0 rgba(139, 69, 19, 0); }
}

/* Mobile View Layout (display: flex row with icon on left) */
@media (max-width: 768px) {
  .online-box-card {
    flex-direction: row !important;
    align-items: flex-start !important;
    text-align: left !important;
    padding: 20px !important;
    gap: 16px !important;
  }
  
  .online-box-card::before {
    width: 4px !important;
    height: 100% !important;
    left: 0 !important;
    top: 0 !important;
    background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 100%);
  }
  
  .online-box-card-1::before {
    background: linear-gradient(180deg, #FF7F50 0%, #FF4500 100%) !important;
  }
  .online-box-card-2::before {
    background: linear-gradient(180deg, #FFD700 0%, #DAA520 100%) !important;
  }
  .online-box-card-3::before {
    background: linear-gradient(180deg, #CD853F 0%, #8B4513 100%) !important;
  }

  .online-box-card:hover::before {
    width: 6px !important;
    height: 100% !important;
  }

  .online-box-icon-wrapper {
    margin-bottom: 0 !important;
    width: 50px !important;
    height: 50px !important;
    flex-shrink: 0 !important;
  }

  .online-box-icon-wrapper i {
    font-size: 1.35rem !important;
  }

  .online-box-card h3 {
    font-size: 1.1rem !important;
    margin-top: 0 !important;
    margin-bottom: 4px !important;
    text-align: left !important;
  }

  .online-box-card p {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
    text-align: left !important;
  }
  
  .online-box-text-content {
    display: flex !important;
    flex-direction: column !important;
  }
}

/* Gaya Ji Katha Section Styles */
.katha-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.katha-card {
  background: var(--cream);
  border: 1px solid rgba(139, 69, 19, 0.1);
  border-radius: var(--border-radius-md);
  padding: 28px;
  display: flex;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.katha-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--secondary);
  transition: all 0.35s ease;
}

.katha-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(139, 69, 19, 0.25);
  background: var(--white);
}

.katha-card:hover::before {
  width: 6px;
  background: var(--primary);
}

.katha-icon-wrapper {
  background: rgba(139, 69, 19, 0.08);
  color: var(--primary);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.katha-card:hover .katha-icon-wrapper {
  background: var(--primary);
  color: var(--white);
  transform: rotate(360deg);
}

.katha-content {
  display: flex;
  flex-direction: column;
}

.katha-content h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.katha-content p {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 8px;
  color: var(--text-main);
}

.katha-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .katha-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .katha-card {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }
  .katha-icon-wrapper {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
}

/* ==========================================================================
   BLOG PAGE & DETAILS STYLES
   ========================================================================== */
.blog-page {
  background: var(--light-bg);
  min-height: 80vh;
  padding-bottom: 60px;
}

.blog-detail {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(139, 69, 19, 0.05);
  border: 1.5px solid #ebd9c8;
}

.blog-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-content-body p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-main);
  text-align: justify;
}

.blog-content-body h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 32px;
  margin-bottom: 16px;
  border-left: 4px solid var(--secondary);
  padding-left: 12px;
}

.blog-content-body ul {
  margin-bottom: 20px;
}

.blog-content-body li {
  margin-bottom: 8px;
  position: relative;
  list-style-type: none;
  padding-left: 20px;
}

.blog-content-body li::before {
  content: "•";
  color: var(--secondary);
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: -2px;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #ebd9c8;
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.blog-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 768px) {
  .blog-detail {
    padding: 24px;
    border-radius: var(--border-radius-sm);
    padding-bottom: 100px !important;
  }
  .blog-content-body h2 {
    font-size: 1.3rem;
  }
  .mobile-blog-sticky-footer {
    display: flex !important;
  }
}
