/* Vivek Tour And Travels - Ultra Premium Editorial Future Luxury Design System */

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

:root {
  --bg-dark: #06080C;
  --surface-dark: #0E121A;
  --surface-glass: rgba(14, 18, 26, 0.75);
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(203, 163, 91, 0.3);
  --text-primary: #F8F6F0;
  --text-secondary: #9DA4B0;
  --accent-gold: #CBA35B;
  --accent-red: #E11B22;
  --accent-red-glow: rgba(225, 27, 34, 0.35);
  --card-bg: rgba(255, 255, 255, 0.04);
}

/* Light Theme Overrides */
html.light-mode {
  --bg-dark: #F3F4F6;
  --surface-dark: #FFFFFF;
  --surface-glass: rgba(255, 255, 255, 0.88);
  --border-dark: rgba(0, 0, 0, 0.1);
  --border-gold: rgba(180, 135, 45, 0.5);
  --text-primary: #111827;
  --text-secondary: #4B5563;
  --accent-gold: #B4872D;
  --accent-red: #E11B22;
  --accent-red-glow: rgba(225, 27, 34, 0.2);
  --card-bg: rgba(255, 255, 255, 0.9);
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

html.light-mode {
  color-scheme: light;
}

body {
  font-family: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* Luxury Typography */
.font-serif-display {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.font-mono-accent {
  font-family: 'JetBrains Mono', monospace;
}

/* Glassmorphism Containers */
.glass {
  background: rgba(14, 18, 26, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.glass-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
  border-color: rgba(203, 163, 91, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(203, 163, 91, 0.12);
}

/* CRED Premium Card System */
.cred-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(20, 24, 33, 0.85) 0%, rgba(10, 12, 17, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.cred-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 0%), rgba(203, 163, 91, 0.15), transparent 40%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 2;
}

.cred-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(203, 163, 91, 0.6);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(203, 163, 91, 0.2);
}

.cred-card:hover::before {
  opacity: 1;
}

.cred-card-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.cred-card:hover .cred-card-bg-img {
  transform: scale(1.08);
  opacity: 0.65;
}

.cred-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 8, 12, 0.3) 0%, rgba(6, 8, 12, 0.7) 60%, rgba(6, 8, 12, 0.95) 100%);
  z-index: 1;
}

.cred-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 9999px;
  background: rgba(6, 8, 12, 0.6);
  border: 1px solid rgba(203, 163, 91, 0.3);
  backdrop-filter: blur(8px);
  color: #CBA35B;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.cred-card:hover .cred-card-badge {
  border-color: rgba(203, 163, 91, 0.8);
  background: rgba(203, 163, 91, 0.15);
  box-shadow: 0 0 15px rgba(203, 163, 91, 0.3);
}

.cred-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F8F6F0;
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
}

.cred-card:hover .cred-card-icon {
  background: rgba(225, 27, 34, 0.15);
  border-color: rgba(225, 27, 34, 0.6);
  color: #E11B22;
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 0 20px rgba(225, 27, 34, 0.4);
}

.cred-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #9DA4B0;
  transition: color 0.3s ease;
}

.cred-card:hover .cred-card-cta {
  color: #CBA35B;
}

.cred-card-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F8F6F0;
  transition: all 0.4s ease;
}

.cred-card:hover .cred-card-arrow {
  background: #E11B22;
  border-color: #E11B22;
  color: #FFFFFF;
  transform: translateX(4px);
  box-shadow: 0 0 15px rgba(225, 27, 34, 0.5);
}

/* Masked Edge Fade for Marquee */
.mask-marquee {
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* Continuous Infinite Marquee Animation */
@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

.animate-marquee {
  display: flex;
  width: 200%;
  animation: marquee 35s linear infinite;
}

.animate-marquee:hover {
  animation-play-state: paused;
}

/* Form Input & Fields */
.dark-field {
  background-color: rgba(6, 8, 12, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #F8F6F0 !important;
  transition: all 0.3s ease !important;
}

.dark-field:focus {
  border-color: #E11B22 !important;
  box-shadow: 0 0 0 3px rgba(225, 27, 34, 0.25), 0 0 20px rgba(225, 27, 34, 0.15) !important;
  outline: none !important;
}

.dark-field::placeholder {
  color: #6C7482 !important;
}

.dark-field option {
  background-color: #0E121A !important;
  color: #F8F6F0 !important;
}

/* Active Form Tab Highlights */
.active-tab {
  background: linear-gradient(135deg, rgba(203, 163, 91, 0.25) 0%, rgba(225, 27, 34, 0.25) 100%) !important;
  border: 1px solid rgba(203, 163, 91, 0.7) !important;
  color: #F8F6F0 !important;
  box-shadow: 0 8px 25px rgba(203, 163, 91, 0.2) !important;
}

/* Pulse animation for live indicators */
@keyframes pulseGlow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.15); }
}

.pulse-glow {
  animation: pulseGlow 2s infinite ease-in-out;
}

/* Custom Luxury Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #06080C;
}

::-webkit-scrollbar-thumb {
  background: #1E2533;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #CBA35B;
}

/* Light mode specific element tweaks */
/* Light mode specific element tweaks & high contrast overrides */
html.light-mode body {
  background-color: #F8FAFC !important;
  color: #0F172A !important;
}

/* Default light mode text color for light sections */
html.light-mode h1,
html.light-mode h2,
html.light-mode h3,
html.light-mode h4,
html.light-mode h5,
html.light-mode h6 {
  color: #0F172A !important;
}

html.light-mode p,
html.light-mode li,
html.light-mode label {
  color: #334155 !important;
}

html.light-mode .text-white:not(#festive-banner *):not(#top *):not(#services button *):not([data-testid="partners-section"] *):not([data-testid="manifesto-section"] *):not(footer *):not([data-testid="floating-call-button"] *):not([data-testid="floating-whatsapp-button"] *):not(#site-header *):not(.nav-auth-login):not(.nav-auth-register) {
  color: #0F172A !important;
}

html.light-mode .text-\[\#F4F1ED\]:not(#top *):not(#services button *):not([data-testid="partners-section"] *):not([data-testid="manifesto-section"] *):not(footer *) {
  color: #0F172A !important;
}

html.light-mode .text-\[\#F8F6F0\]:not(#top *):not(#services button *):not([data-testid="partners-section"] *):not([data-testid="manifesto-section"] *):not(footer *) {
  color: #0F172A !important;
}

html.light-mode .text-\[\#9DA4B0\]:not(#top *):not(#services button *):not([data-testid="partners-section"] *):not([data-testid="manifesto-section"] *):not(footer *),
html.light-mode .text-\[\#9CA3AF\]:not(#top *):not(#services button *):not([data-testid="partners-section"] *):not([data-testid="manifesto-section"] *):not(footer *),
html.light-mode .text-\[\#6C7482\]:not(#top *):not(#services button *):not([data-testid="partners-section"] *):not([data-testid="manifesto-section"] *):not(footer *) {
  color: #334155 !important;
}

html.light-mode .text-\[\#CBA35B\]:not(#top *):not(#services button *):not([data-testid="partners-section"] *):not([data-testid="manifesto-section"] *):not(footer *) {
  color: #9A6F1A !important;
}

html.light-mode .text-\[\#E11B22\] {
  color: #D91219 !important;
}

/* Containers & Cards in Light Mode */
html.light-mode .glass {
  background: rgba(255, 255, 255, 0.96) !important;
  border-color: rgba(203, 213, 225, 0.8) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08) !important;
}

html.light-mode .glass-card,
html.light-mode .bg-\[\#0E121A\]:not([data-testid="partners-section"] *):not([data-testid="manifesto-section"] *),
html.light-mode .bg-\[\#06080C\]:not(#top):not(#services *):not([data-testid="partners-section"] *):not([data-testid="manifesto-section"] *),
html.light-mode .bg-black\/40 {
  background: #FFFFFF !important;
  border-color: #E2E8F0 !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06) !important;
  color: #1E293B !important;
}

html.light-mode .glass-card:hover {
  border-color: #B4872D !important;
  box-shadow: 0 16px 40px rgba(180, 135, 45, 0.15) !important;
}

/* Form inputs & fields in Light Mode */
html.light-mode .dark-field,
html.light-mode input:not([type="checkbox"]):not([type="radio"]),
html.light-mode select,
html.light-mode textarea {
  background-color: #FFFFFF !important;
  border: 1px solid #CBD5E1 !important;
  color: #0F172A !important;
  font-weight: 500;
}

html.light-mode .dark-field:focus,
html.light-mode input:focus,
html.light-mode select:focus,
html.light-mode textarea:focus {
  border-color: #E11B22 !important;
  box-shadow: 0 0 0 3px rgba(225, 27, 34, 0.2) !important;
  background-color: #FFFFFF !important;
}

html.light-mode .dark-field::placeholder,
html.light-mode input::placeholder,
html.light-mode textarea::placeholder {
  color: #64748B !important;
}

html.light-mode option {
  background-color: #FFFFFF !important;
  color: #0F172A !important;
}

/* Header in Light Mode */
html.light-mode header#site-header {
  background: rgba(255, 255, 255, 0.96) !important;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8) !important;
}

html.light-mode .nav-link-text,
html.light-mode .mobile-nav-link:not(.nav-auth-login):not(.nav-auth-register) {
  color: #334155 !important;
  font-weight: 600 !important;
}

html.light-mode .nav-link-text:hover,
html.light-mode .mobile-nav-link:not(.nav-auth-login):not(.nav-auth-register):hover {
  color: #E11B22 !important;
}

/* Header Nav Auth Buttons in Light & Dark Modes */
[data-testid="nav-login"],
[data-testid="nav-login-mobile"],
.nav-auth-login {
  background-color: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: #FFFFFF !important;
  transition: all 0.3s ease !important;
}

[data-testid="nav-login"]:hover,
[data-testid="nav-login-mobile"]:hover,
.nav-auth-login:hover {
  background-color: #FFFFFF !important;
  color: #06080C !important;
  border-color: #FFFFFF !important;
}

[data-testid="nav-register"],
[data-testid="nav-register-mobile"],
.nav-auth-register {
  background-color: #E11B22 !important;
  border: 1px solid #E11B22 !important;
  color: #FFFFFF !important;
  transition: all 0.3s ease !important;
}

[data-testid="nav-register"]:hover,
[data-testid="nav-register-mobile"]:hover,
.nav-auth-register:hover {
  background-color: #FFFFFF !important;
  color: #E11B22 !important;
  border-color: #FFFFFF !important;
}

html.light-mode [data-testid="nav-login"],
html.light-mode [data-testid="nav-login-mobile"],
html.light-mode .nav-auth-login {
  border: 1px solid #CBD5E1 !important;
  color: #0F172A !important;
  background-color: #F1F5F9 !important;
  transition: all 0.3s ease !important;
}

html.light-mode [data-testid="nav-login"]:hover,
html.light-mode [data-testid="nav-login-mobile"]:hover,
html.light-mode .nav-auth-login:hover {
  background-color: #0F172A !important;
  color: #FFFFFF !important;
  border-color: #0F172A !important;
}

html.light-mode [data-testid="nav-register"],
html.light-mode [data-testid="nav-register-mobile"],
html.light-mode .nav-auth-register {
  background-color: #E11B22 !important;
  color: #FFFFFF !important;
  border: 1px solid #E11B22 !important;
  transition: all 0.3s ease !important;
}

html.light-mode [data-testid="nav-register"]:hover,
html.light-mode [data-testid="nav-register-mobile"]:hover,
html.light-mode .nav-auth-register:hover {
  background-color: #0F172A !important;
  color: #FFFFFF !important;
  border-color: #0F172A !important;
}

/* Form Submit Buttons */
#login-submit-btn,
#reg-submit-btn {
  background-color: #E11B22 !important;
  color: #FFFFFF !important;
  transition: all 0.3s ease !important;
}

#login-submit-btn:hover,
#reg-submit-btn:hover {
  background-color: #B91218 !important;
  color: #FFFFFF !important;
}

html.light-mode #login-submit-btn,
html.light-mode #reg-submit-btn {
  background-color: #E11B22 !important;
  color: #FFFFFF !important;
}

html.light-mode #login-submit-btn:hover,
html.light-mode #reg-submit-btn:hover {
  background-color: #B91218 !important;
  color: #FFFFFF !important;
}

html.light-mode [data-testid="theme-toggle-btn"],
html.light-mode .theme-toggle-btn {
  border-color: rgba(180, 135, 45, 0.5) !important;
  color: #9A6F1A !important;
  background-color: rgba(180, 135, 45, 0.08) !important;
}

html.light-mode [data-testid="lang-toggle"] {
  border-color: rgba(180, 135, 45, 0.5) !important;
  color: #9A6F1A !important;
  background-color: rgba(180, 135, 45, 0.08) !important;
}

/* Tab Triggers & Mode Switches in Light Mode */
html.light-mode .enquiry-tab-btn {
  background-color: #F1F5F9 !important;
  border: 1px solid #CBD5E1 !important;
  color: #334155 !important;
  font-weight: 600 !important;
}

html.light-mode .enquiry-tab-btn:hover {
  background-color: #E2E8F0 !important;
  color: #0F172A !important;
}

html.light-mode .enquiry-tab-btn.active-tab {
  background: linear-gradient(135deg, #E11B22 0%, #B4872D 100%) !important;
  border-color: #E11B22 !important;
  color: #FFFFFF !important;
  box-shadow: 0 6px 20px rgba(225, 27, 34, 0.25) !important;
}

html.light-mode .rail-mode-btn {
  background-color: #F1F5F9 !important;
  border: 1px solid #CBD5E1 !important;
  color: #334155 !important;
  font-weight: 600 !important;
}

html.light-mode .rail-mode-btn.active-mode {
  background-color: #B4872D !important;
  border-color: #B4872D !important;
  color: #FFFFFF !important;
}

html.light-mode .text-emerald-300 {
  color: #047857 !important;
}

/* ===== DARK SECTIONS RESET (Keep Crisp Light Text in Light Mode) ===== */

/* 1. Hero Section (#top) */
html.light-mode #top,
html.light-mode [data-testid="hero-section"] {
  background-color: #080A0F !important;
}

html.light-mode #top h1,
html.light-mode #top h1 span,
html.light-mode #top p,
html.light-mode #top span:not(.text-gold):not(.text-\[\#E11B22\]),
html.light-mode [data-testid="hero-section"] h1,
html.light-mode [data-testid="hero-section"] p,
html.light-mode [data-testid="hero-section"] span:not(.text-gold) {
  color: #F8F6F0 !important;
}

html.light-mode #top .text-gold,
html.light-mode [data-testid="hero-section"] .text-gold {
  color: #CBA35B !important;
}

html.light-mode #top .text-\[\#9CA3AF\],
html.light-mode #top div.text-\[\#9CA3AF\],
html.light-mode [data-testid="hero-section"] .text-\[\#9CA3AF\] {
  color: #CBD5E1 !important;
}

html.light-mode #top button.bg-\[\#E11B22\] {
  background-color: #E11B22 !important;
  color: #FFFFFF !important;
}

html.light-mode #top button.border-white\/20 {
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: #F4F1ED !important;
}

/* 2. Service Cards (#services) with dark image backgrounds */
html.light-mode #services button.cred-card {
  border-color: rgba(226, 232, 240, 0.8) !important;
  background: linear-gradient(135deg, rgba(20, 24, 33, 0.9) 0%, rgba(10, 12, 17, 0.95) 100%) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
}

html.light-mode #services button.cred-card:hover {
  border-color: rgba(203, 163, 91, 0.7) !important;
  box-shadow: 0 25px 50px rgba(203, 163, 91, 0.25) !important;
}

html.light-mode #services button.cred-card h3 {
  color: #F4F1ED !important;
}

html.light-mode #services button.cred-card p {
  color: #CBD5E1 !important;
}

html.light-mode #services button.cred-card .text-gold,
html.light-mode #services button.cred-card .text-\[\#CBA35B\] {
  color: #CBA35B !important;
}

html.light-mode #services button.cred-card .text-\[\#F4F1ED\] {
  color: #F4F1ED !important;
}

html.light-mode #services button.cred-card .text-\[\#9CA3AF\] {
  color: #CBD5E1 !important;
}

/* 3. Partners Section ([data-testid="partners-section"]) */
html.light-mode [data-testid="partners-section"] {
  background-color: #0B0E14 !important;
}

html.light-mode [data-testid="partners-section"] h2 {
  color: #F4F1ED !important;
}

html.light-mode [data-testid="partners-section"] p:not(.text-gold) {
  color: #CBD5E1 !important;
}

html.light-mode [data-testid="partners-section"] .text-gold {
  color: #CBA35B !important;
}

/* 4. Manifesto Section ([data-testid="manifesto-section"]) */
html.light-mode [data-testid="manifesto-section"] {
  background-color: #0B0E14 !important;
}

html.light-mode [data-testid="manifesto-section"] h2,
html.light-mode [data-testid="manifesto-section"] h3 {
  color: #F4F1ED !important;
}

html.light-mode [data-testid="manifesto-section"] p {
  color: #CBD5E1 !important;
}

html.light-mode [data-testid="manifesto-section"] .text-gold {
  color: #CBA35B !important;
}

html.light-mode [data-testid="manifesto-section"] div.bg-\[\#0B0E14\] {
  background-color: #0B0E14 !important;
}

/* 5. Footer (footer#contact) */
html.light-mode footer,
html.light-mode #contact,
html.light-mode [data-testid="site-footer"] {
  background-color: #0F172A !important;
  border-top: 1px solid #1E293B !important;
}

html.light-mode footer h2,
html.light-mode footer h3,
html.light-mode footer p,
html.light-mode footer a,
html.light-mode footer span,
html.light-mode footer li,
html.light-mode footer .text-\[\#9DA4B0\],
html.light-mode footer .text-\[\#6C7482\],
html.light-mode [data-testid="site-footer"] p,
html.light-mode [data-testid="site-footer"] a,
html.light-mode [data-testid="site-footer"] span,
html.light-mode [data-testid="site-footer"] li,
html.light-mode [data-testid="site-footer"] .text-\[\#9DA4B0\],
html.light-mode [data-testid="site-footer"] .text-\[\#6C7482\] {
  color: #E2E8F0 !important;
}

html.light-mode footer .text-\[\#CBA35B\],
html.light-mode [data-testid="site-footer"] .text-\[\#CBA35B\] {
  color: #CBA35B !important;
}

html.light-mode footer a:hover,
html.light-mode [data-testid="site-footer"] a:hover {
  color: #FFFFFF !important;
}

/* 6. Festive Banner (#festive-banner) */
html.light-mode #festive-banner,
html.light-mode #festive-banner span,
html.light-mode #festive-banner button {
  color: #FFFFFF !important;
}

html.light-mode #festive-banner svg.text-\[\#FCE9C9\] {
  color: #FCE9C9 !important;
}

/* 7. Floating Action Buttons */
html.light-mode [data-testid="floating-call-button"] {
  background-color: #0F172A !important;
  color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

html.light-mode [data-testid="floating-call-button"] span {
  color: #FFFFFF !important;
}

html.light-mode [data-testid="floating-whatsapp-button"] {
  background-color: #25D366 !important;
  color: #FFFFFF !important;
}

html.light-mode [data-testid="floating-whatsapp-button"] span {
  color: #FFFFFF !important;
}

html.light-mode #scroll-to-top-btn {
  background-color: #FFFFFF !important;
  color: #0F172A !important;
  border-color: #CBD5E1 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

/* Mobile & Responsive Tweaks */
@media (max-width: 768px) {
  .hero-title {
    font-size: 3.25rem !important;
    line-height: 1.05 !important;
  }
}

/* ==========================================================================
   ULTRA-PREMIUM DASHBOARD LIGHT MODE SYSTEM OVERRIDES
   ========================================================================== */

/* 1. Canvas & Global Page Layout */
html.light-mode body,
html.light-mode #admin-dashboard-screen,
html.light-mode #user-dashboard-screen {
  background-color: #F8FAFC !important;
  color: #0F172A !important;
}

/* 2. Top Sticky Header */
html.light-mode header.glass,
html.light-mode header#site-header {
  background: rgba(255, 255, 255, 0.95) !important;
  border-bottom: 1px solid #E2E8F0 !important;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03) !important;
}

html.light-mode header h2,
html.light-mode header h1,
html.light-mode #admin-active-module-title,
html.light-mode #user-active-module-title {
  color: #0F172A !important;
}

/* 3. Sidebar (Side Navigation Menu) */
html.light-mode #admin-sidebar,
html.light-mode #user-sidebar {
  background-color: #FFFFFF !important;
  border-right: 1px solid #E2E8F0 !important;
  box-shadow: 10px 0 30px rgba(15, 23, 42, 0.05) !important;
}

html.light-mode #admin-sidebar-overlay,
html.light-mode #user-sidebar-overlay {
  background-color: rgba(15, 23, 42, 0.5) !important;
}

/* Sidebar User Profile Box */
html.light-mode #admin-sidebar .glass,
html.light-mode #user-sidebar .glass {
  background: #F8FAFC !important;
  border-color: #E2E8F0 !important;
}

html.light-mode #admin-sidebar h4,
html.light-mode #user-sidebar h4,
html.light-mode #admin-sidebar .text-white,
html.light-mode #user-sidebar .text-white {
  color: #0F172A !important;
}

/* Sidebar Nav Items */
html.light-mode .sidebar-nav-item:not(.active) {
  color: #475569 !important;
}

html.light-mode .sidebar-nav-item:not(.active):hover {
  background-color: #F1F5F9 !important;
  color: #0F172A !important;
}

html.light-mode .sidebar-nav-item.active {
  color: #FFFFFF !important;
  box-shadow: 0 8px 20px rgba(225, 27, 34, 0.25) !important;
}

/* Sidebar Footer Action Buttons */
html.light-mode #admin-logout-btn,
html.light-mode #user-logout-btn {
  background-color: #FEF2F2 !important;
  border-color: #FCA5A5 !important;
  color: #DC2626 !important;
}

html.light-mode #admin-logout-btn:hover,
html.light-mode #user-logout-btn:hover {
  background-color: #FEE2E2 !important;
  color: #B91C1C !important;
}

/* 4. Stat Cards (Metrics) */
html.light-mode #stat-total-users { color: #B4872D !important; }
html.light-mode #stat-total-tatkal { color: #E11B22 !important; }
html.light-mode #stat-total-leads { color: #0284C7 !important; }
html.light-mode #stat-revenue { color: #059669 !important; }

/* 5. Main Glass Containers & Filter Bars */
html.light-mode .glass,
html.light-mode .glass-card {
  background: #FFFFFF !important;
  border-color: #E2E8F0 !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05) !important;
  color: #1E293B !important;
}

html.light-mode .bg-black\/40,
html.light-mode .bg-black\/60,
html.light-mode .bg-black\/30 {
  background-color: #F8FAFC !important;
  border-color: #E2E8F0 !important;
  color: #0F172A !important;
}

/* Filter Input Fields */
html.light-mode input:not([type="checkbox"]):not([type="radio"]),
html.light-mode select,
html.light-mode textarea {
  background-color: #FFFFFF !important;
  border: 1px solid #CBD5E1 !important;
  color: #0F172A !important;
}

html.light-mode input:focus,
html.light-mode select:focus,
html.light-mode textarea:focus {
  border-color: #E11B22 !important;
  box-shadow: 0 0 0 3px rgba(225, 27, 34, 0.15) !important;
}

/* 6. Tatkal Ticket Post Cards in Light Mode */
html.light-mode .text-emerald-400 {
  color: #059669 !important;
  font-weight: 700 !important;
}

html.light-mode .text-cyan-400 {
  color: #0284C7 !important;
  font-weight: 700 !important;
}

html.light-mode .text-\[\#CBA35B\] {
  color: #B4872D !important;
  font-weight: 700 !important;
}

/* Status Badges */
html.light-mode .bg-emerald-500\/20,
html.light-mode .bg-emerald-500\/10 {
  background-color: #D1FAE5 !important;
  border-color: #6EE7B7 !important;
  color: #065F46 !important;
}

html.light-mode .bg-red-500\/20 {
  background-color: #FEE2E2 !important;
  border-color: #FCA5A5 !important;
  color: #991B1B !important;
}

html.light-mode .bg-white\/10,
html.light-mode .bg-white\/5 {
  background-color: #F1F5F9 !important;
  border-color: #E2E8F0 !important;
  color: #334155 !important;
}

/* Passenger Details Box inside Ticket Cards */
html.light-mode .whitespace-pre-line,
html.light-mode div.bg-black\/30 {
  background-color: #F8FAFC !important;
  border: 1px solid #E2E8F0 !important;
  color: #1E293B !important;
  font-weight: 500 !important;
}

/* Ticket Card Outer Border */
html.light-mode .glass.rounded-3xl {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
}

html.light-mode .border-2.border-emerald-500\/60 {
  border-color: #10B981 !important;
  background: linear-gradient(180deg, #F0FDF4 0%, #FFFFFF 100%) !important;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.12) !important;
}

/* 7. Tables in Light Mode (Users, Payments, Leads) */
html.light-mode table thead {
  background-color: #F1F5F9 !important;
  border-bottom: 1px solid #E2E8F0 !important;
}

html.light-mode table thead th {
  color: #475569 !important;
}

html.light-mode table tbody tr {
  border-bottom: 1px solid #F1F5F9 !important;
}

html.light-mode table tbody tr:hover {
  background-color: #F8FAFC !important;
}

html.light-mode table td {
  color: #0F172A !important;
}

html.light-mode table td span.text-\[\#9CA3AF\],
html.light-mode table td span.text-gray-300 {
  color: #64748B !important;
}

/* Table Role & Status Badges */
html.light-mode .bg-blue-500\/20 {
  background-color: #DBEAFE !important;
  color: #1E40AF !important;
  border-color: #93C5FD !important;
}

html.light-mode .bg-amber-500\/20 {
  background-color: #FEF3C7 !important;
  color: #92400E !important;
  border-color: #FDE68A !important;
}

html.light-mode .bg-purple-500\/20 {
  background-color: #F3E8FF !important;
  color: #6B21A8 !important;
  border-color: #D8B4FE !important;
}

/* 8. Action Buttons inside Cards & Tables */
html.light-mode button.border-white\/20,
html.light-mode button.bg-white\/5 {
  background-color: #F1F5F9 !important;
  border-color: #CBD5E1 !important;
  color: #0F172A !important;
}

html.light-mode button.border-white\/20:hover,
html.light-mode button.bg-white\/5:hover {
  background-color: #E2E8F0 !important;
  color: #0F172A !important;
}

html.light-mode button.border-red-500\/40 {
  background-color: #FEF2F2 !important;
  border-color: #FCA5A5 !important;
  color: #DC2626 !important;
}

html.light-mode button.border-red-500\/40:hover {
  background-color: #FEE2E2 !important;
  color: #B91C1C !important;
}

/* 9. Dashboard Footer */
html.light-mode footer {
  background-color: transparent !important;
  border-top-color: #E2E8F0 !important;
}

html.light-mode footer a {
  color: #475569 !important;
}

html.light-mode footer a:hover {
  color: #E11B22 !important;
}

/* 10. Train Availability Section Light Mode System Overrides */
html.light-mode #train-availability-section {
  background-color: #F8FAFC !important;
  color: #0F172A !important;
}

html.light-mode #train-availability-section h2 {
  color: #0F172A !important;
}

html.light-mode #train-availability-section p {
  color: #475569 !important;
}

html.light-mode #train-availability-section .bg-\[\#E11B22\]\/15 {
  background-color: #FEF2F2 !important;
  border-color: #FCA5A5 !important;
  color: #DC2626 !important;
}

html.light-mode #train-availability-section .glass {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06) !important;
  color: #0F172A !important;
}

html.light-mode #train-availability-section label {
  color: #334155 !important;
  font-weight: 700 !important;
}

html.light-mode #train-availability-section input,
html.light-mode #train-availability-section select {
  background-color: #F8FAFC !important;
  border: 1px solid #CBD5E1 !important;
  color: #0F172A !important;
  font-weight: 700 !important;
}

html.light-mode #train-availability-section input:focus,
html.light-mode #train-availability-section select:focus {
  border-color: #E11B22 !important;
  box-shadow: 0 0 0 3px rgba(225, 27, 34, 0.15) !important;
  background-color: #FFFFFF !important;
}

html.light-mode #train-availability-section button.bg-white\/5 {
  background-color: #F1F5F9 !important;
  border: 1px solid #CBD5E1 !important;
  color: #1E293B !important;
  font-weight: 600 !important;
}

html.light-mode #train-availability-section button.bg-white\/5:hover {
  background-color: #E2E8F0 !important;
  color: #0F172A !important;
}

html.light-mode #rail-results-count-text {
  color: #0F172A !important;
}

html.light-mode #rail-results-header .text-gray-400 {
  color: #64748B !important;
}

html.light-mode #rail-trains-feed .glass {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.05) !important;
}

html.light-mode #rail-trains-feed h3 {
  color: #0F172A !important;
}

html.light-mode #rail-trains-feed .bg-black\/40 {
  background-color: #F8FAFC !important;
  border: 1px solid #E2E8F0 !important;
}

html.light-mode #rail-trains-feed .bg-black\/40 .text-white {
  color: #0F172A !important;
}

html.light-mode #rail-trains-feed .bg-black\/40 .text-\[\#9CA3AF\] {
  color: #64748B !important;
}

html.light-mode #rail-trains-feed .bg-\[\#0B0F17\]\/60 {
  background-color: #F8FAFC !important;
  border: 1px solid #E2E8F0 !important;
}

html.light-mode #rail-trains-feed .text-\[\#CBA35B\] {
  color: #B4872D !important;
  font-weight: 700 !important;
}
