/* ============================================
   ROYAL INDIAN AIRWAYS — CHOLA THEME CSS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Cinzel:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700;800;900&family=Tiro+Tamil&display=swap');

:root {
  --primary: #6B21A8;
  --primary-light: #9333EA;
  --primary-dark: #4C1D95;
  --gold: #D4A017;
  --gold-light: #F0D060;
  --gold-dark: #B8860B;
  --magenta: #C2185B;
  --magenta-light: #E91E8C;
  --deep-blue: #1A237E;
  --bg-dark: #0D0015;
  --bg-dark-2: #150025;
  --bg-dark-3: #1E0035;
  --bg-light: #FFF8E7;
  --text-gold: #F5E6C8;
  --text-light: #E8D5B5;
  --text-muted: #9F8C70;
  --text-white: #FFFFFF;
  --text-dark: #1A0A2E;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(212, 160, 23, 0.25);
  --glass-bg-light: rgba(255, 255, 255, 0.08);
  --shadow-gold: 0 0 30px rgba(212, 160, 23, 0.15);
  --shadow-purple: 0 0 30px rgba(107, 33, 168, 0.2);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
  --transition-slow: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-heading: 'Cinzel Decorative', 'Cinzel', serif;
  --font-subheading: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  --font-brand: 'Playfair Display', serif;
  --font-tamil: 'Tiro Tamil', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-gold);
  overflow-x: hidden;
  line-height: 1.7;
  min-height: 100vh;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold), var(--primary)); border-radius: 4px; }

/* ---- SELECTION ---- */
::selection { background: var(--gold); color: var(--bg-dark); }

/* ---- REUSABLE ---- */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-align: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 60px;
}
.gold-line {
  width: 80px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 16px auto 24px;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 16px 0;
  background: rgba(13, 0, 21, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.1);
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(13, 0, 21, 0.95);
  border-bottom-color: rgba(212, 160, 23, 0.3);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-brand img { height: 45px; width: auto; filter: drop-shadow(0 0 10px rgba(212, 160, 23, 0.3)); transition: var(--transition); }
.nav-brand:hover img { filter: drop-shadow(0 0 20px rgba(212, 160, 23, 0.6)); transform: scale(1.05); }
.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand-name {
  font-family: var(--font-brand);
  font-size: 1.2rem; font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1.2;
}
.nav-brand-tagline { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 3px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a {
  color: var(--text-gold); text-decoration: none; font-size: 0.9rem; font-weight: 500;
  padding: 8px 16px; border-radius: var(--radius-sm); transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; width: 0; height: 2px;
  background: var(--gold); transform: translateX(-50%); transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 60%; }
.nav-links a:hover { color: var(--gold); }

.nav-auth { display: flex; gap: 12px; align-items: center; }
.nav-user-info { display: flex; align-items: center; gap: 10px; color: var(--gold); font-size: 0.9rem; }
.nav-user-avatar {
  width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  background: var(--glass-bg); font-family: var(--font-subheading); font-weight: 700; font-size: 0.85rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius-sm); font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 600; cursor: pointer; border: none;
  transition: var(--transition); text-decoration: none; position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.btn:hover::before { left: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--bg-dark); box-shadow: 0 4px 20px rgba(212, 160, 23, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212, 160, 23, 0.5); }

.btn-secondary {
  background: transparent; color: var(--gold);
  border: 1.5px solid var(--gold); 
}
.btn-secondary:hover { background: rgba(212, 160, 23, 0.1); transform: translateY(-2px); }

.btn-danger { background: linear-gradient(135deg, #dc2626, #ef4444); color: white; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 40px; font-size: 1.1rem; border-radius: var(--radius); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ---- GLASS CARD ---- */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 32px;
  transition: var(--transition);
}
.glass-card:hover {
  border-color: rgba(212, 160, 23, 0.5);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

/* ---- INPUT ---- */
.form-group { margin-bottom: 20px; position: relative; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600; color: var(--gold);
  margin-bottom: 8px; font-family: var(--font-subheading); letter-spacing: 1px;
}
.form-control {
  width: 100%; padding: 14px 18px; background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(212, 160, 23, 0.2); border-radius: var(--radius-sm);
  color: var(--text-gold); font-family: var(--font-body); font-size: 0.95rem;
  transition: var(--transition); outline: none;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 160, 23, 0.15);
  background: rgba(255,255,255,0.08);
}
.form-control::placeholder { color: var(--text-muted); }
select.form-control { cursor: pointer; appearance: none; 
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23D4A017' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
select.form-control option { background: var(--bg-dark-2); color: var(--text-gold); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 30% 50%, rgba(107, 33, 168, 0.2), transparent 70%),
              radial-gradient(ellipse at 70% 30%, rgba(26, 35, 126, 0.15), transparent 70%),
              radial-gradient(ellipse at 50% 80%, rgba(194, 24, 91, 0.1), transparent 60%),
              var(--bg-dark);
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-content { text-align: center; z-index: 2; padding: 0 20px; }
.hero-logo { width: 140px; height: 140px; margin: 0 auto 24px; animation: floatLogo 4s ease-in-out infinite; }
.hero-logo img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 0 30px rgba(212, 160, 23, 0.4)); }
.hero-title {
  font-family: var(--font-heading); font-size: clamp(2.2rem, 5vw, 4.5rem); font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--magenta-light), var(--gold-light));
  background-size: 300% 300%; animation: gradientShift 6s ease-in-out infinite;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 16px; line-height: 1.2;
}
.hero-subtitle {
  font-family: var(--font-tamil); font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--text-muted); margin-bottom: 40px; letter-spacing: 2px;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- FEATURES ---- */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.feature-card {
  text-align: center; padding: 48px 32px;
}
.feature-icon {
  width: 80px; height: 80px; margin: 0 auto 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.15), rgba(107, 33, 168, 0.15));
  border: 1px solid rgba(212, 160, 23, 0.3); font-size: 2rem;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 30px rgba(212, 160, 23, 0.3);
}
.feature-card h3 {
  font-family: var(--font-subheading); font-size: 1.2rem; color: var(--gold);
  margin-bottom: 12px;
}
.feature-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ---- BOOKING SEARCH ---- */
.booking-hero {
  min-height: 50vh; display: flex; align-items: center; padding-top: 100px;
  background: radial-gradient(ellipse at center, rgba(107, 33, 168, 0.15), transparent 70%), var(--bg-dark);
}
.search-panel { max-width: 1000px; margin: 0 auto; }
.search-tabs { display: flex; gap: 4px; margin-bottom: 24px; }
.search-tab {
  padding: 12px 28px; border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  background: var(--glass-bg); border: 1px solid transparent;
  color: var(--text-muted); cursor: pointer; font-weight: 600; font-size: 0.9rem;
  transition: var(--transition); font-family: var(--font-subheading);
}
.search-tab.active {
  background: rgba(212, 160, 23, 0.1); border-color: var(--glass-border);
  border-bottom: 2px solid var(--gold); color: var(--gold);
}
.search-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.search-form .full-width { grid-column: 1 / -1; }
.search-form .form-row { display: flex; gap: 16px; }
.search-form .form-row > * { flex: 1; }

/* ---- FLIGHT RESULTS ---- */
.flight-results { padding: 60px 0; }
.flight-card {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px; margin-bottom: 20px; padding: 28px 32px;
}
.flight-info { display: flex; align-items: center; gap: 40px; flex: 1; }
.flight-time { text-align: center; }
.flight-time .time { font-size: 1.8rem; font-weight: 700; font-family: var(--font-subheading); color: var(--gold); }
.flight-time .city { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }
.flight-route {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  flex: 1; min-width: 120px;
}
.flight-route .duration { font-size: 0.8rem; color: var(--text-muted); }
.flight-route .route-line {
  width: 100%; height: 2px; position: relative;
  background: linear-gradient(90deg, var(--gold), var(--primary), var(--gold));
}
.flight-route .route-line::before {
  content: '✈'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); font-size: 1rem; color: var(--gold);
}
.flight-route .stops { font-size: 0.75rem; color: var(--magenta); }
.flight-price { text-align: right; min-width: 140px; }
.flight-price .price { font-size: 1.6rem; font-weight: 700; color: var(--gold); font-family: var(--font-subheading); }
.flight-price .per-person { font-size: 0.8rem; color: var(--text-muted); }
.flight-class-badge {
  display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
}
.class-economy { background: rgba(52, 211, 153, 0.15); color: #34D399; border: 1px solid rgba(52, 211, 153, 0.3); }
.class-business { background: rgba(212, 160, 23, 0.15); color: var(--gold); border: 1px solid rgba(212, 160, 23, 0.3); }
.class-first { background: rgba(194, 24, 91, 0.15); color: var(--magenta-light); border: 1px solid rgba(194, 24, 91, 0.3); }

/* ---- AUTH PAGE ---- */
.auth-page { min-height: 100vh; display: flex; }
.auth-art {
  flex: 1; position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 30% 50%, rgba(107, 33, 168, 0.3), transparent 70%),
              radial-gradient(ellipse at 70% 70%, rgba(194, 24, 91, 0.2), transparent 60%), var(--bg-dark);
  display: flex; align-items: center; justify-content: center;
}
.auth-art-content { text-align: center; z-index: 2; padding: 40px; }
.auth-art-content img { width: 200px; margin-bottom: 24px; filter: drop-shadow(0 0 40px rgba(212,160,23,0.4)); animation: floatLogo 4s ease-in-out infinite; }
.auth-art-content h2 { font-family: var(--font-heading); font-size: 2rem; color: var(--gold); margin-bottom: 12px; }
.auth-art-content p { color: var(--text-muted); font-size: 1rem; font-family: var(--font-tamil); }
.auth-form-side {
  flex: 1; display: flex; align-items: center; justify-content: center; padding: 40px;
  background: var(--bg-dark-2);
}
.auth-form-container { width: 100%; max-width: 440px; }
.auth-form-container h2 {
  font-family: var(--font-heading); font-size: 1.6rem; color: var(--gold); margin-bottom: 8px;
}
.auth-form-container .auth-desc { color: var(--text-muted); margin-bottom: 32px; font-size: 0.95rem; }
.otp-inputs { display: flex; gap: 10px; justify-content: center; margin: 24px 0; }
.otp-input {
  width: 52px; height: 60px; text-align: center; font-size: 1.5rem; font-weight: 700;
  background: rgba(255,255,255,0.05); border: 2px solid rgba(212,160,23,0.2);
  border-radius: var(--radius-sm); color: var(--gold); font-family: var(--font-subheading);
  transition: var(--transition); outline: none;
}
.otp-input:focus { border-color: var(--gold); box-shadow: 0 0 20px rgba(212,160,23,0.2); }

/* ---- MY BOOKINGS ---- */
.dashboard-page { padding-top: 100px; min-height: 100vh; }
.bookings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); gap: 24px; }
.booking-card { position: relative; overflow: hidden; }
.booking-card-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(212,160,23,0.15);
}
.booking-ref { font-family: var(--font-subheading); font-size: 0.85rem; color: var(--gold); letter-spacing: 2px; }
.status-badge {
  padding: 4px 14px; border-radius: 20px; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
}
.status-confirmed { background: rgba(52,211,153,0.15); color: #34D399; border: 1px solid rgba(52,211,153,0.3); }
.status-pending { background: rgba(251,191,36,0.15); color: #FBBF24; border: 1px solid rgba(251,191,36,0.3); }
.status-cancelled { background: rgba(239,68,68,0.15); color: #EF4444; border: 1px solid rgba(239,68,68,0.3); }
.booking-route {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px;
}
.booking-city { font-family: var(--font-subheading); font-size: 1.1rem; color: var(--text-gold); }
.booking-code { font-size: 0.8rem; color: var(--text-muted); }
.booking-arrow { color: var(--gold); font-size: 1.2rem; }
.booking-details { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; font-size: 0.85rem; }
.booking-detail-label { color: var(--text-muted); }
.booking-detail-value { color: var(--text-gold); font-weight: 600; text-align: right; }

/* ---- ADMIN DASHBOARD ---- */
.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-bottom: 40px; }
.stat-card { text-align: center; padding: 32px; }
.stat-value {
  font-family: var(--font-heading); font-size: 2.5rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { color: var(--text-muted); font-size: 0.9rem; margin-top: 8px; text-transform: uppercase; letter-spacing: 2px; }

.admin-table-wrap { overflow-x: auto; }
.admin-table {
  width: 100%; border-collapse: collapse; font-size: 0.9rem;
}
.admin-table th {
  text-align: left; padding: 14px 16px; font-family: var(--font-subheading);
  color: var(--gold); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px;
  border-bottom: 2px solid rgba(212,160,23,0.2); white-space: nowrap;
}
.admin-table td {
  padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text-gold); white-space: nowrap;
}
.admin-table tr:hover td { background: rgba(212,160,23,0.03); }

/* ---- FOOTER ---- */
.footer {
  background: var(--bg-dark-2); border-top: 1px solid rgba(212,160,23,0.15);
  padding: 60px 0 24px; position: relative; overflow: hidden;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { height: 50px; margin-bottom: 16px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 8px; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-subheading); color: var(--gold); font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px;
}
.footer-col a {
  display: block; color: var(--text-muted); text-decoration: none; font-size: 0.9rem;
  padding: 4px 0; transition: var(--transition);
}
.footer-col a:hover { color: var(--gold); padding-left: 8px; }
.footer-bottom {
  text-align: center; padding-top: 24px;
  border-top: 1px solid rgba(212,160,23,0.1);
  color: var(--text-muted); font-size: 0.8rem;
}

/* ---- ANIMATIONS ---- */
@keyframes floatLogo { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes particle {
  0% { transform: translateY(0) translateX(0) scale(0); opacity: 0; }
  20% { opacity: 1; transform: scale(1); }
  100% { transform: translateY(-100vh) translateX(50px) scale(0); opacity: 0; }
}
@keyframes spin { to { transform: rotate(360deg); } }

.animate-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* Particle */
.gold-particle {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); pointer-events: none;
  animation: particle linear infinite;
}

/* ---- LOADER ---- */
.page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity 0.5s ease;
}
.page-loader.hidden { opacity: 0; pointer-events: none; }
.page-loader img { width: 80px; animation: floatLogo 2s ease-in-out infinite; margin-bottom: 20px; }
.loader-bar { width: 200px; height: 3px; background: rgba(212,160,23,0.2); border-radius: 3px; overflow: hidden; }
.loader-bar-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--magenta)); border-radius: 3px; transition: width 0.3s; }

/* ---- MODAL ---- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--bg-dark-2); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); max-width: 560px; width: 100%;
  padding: 40px; position: relative; animation: fadeInUp 0.3s ease;
}
.modal-close {
  position: absolute; top: 16px; right: 16px; background: none; border: none;
  color: var(--text-muted); font-size: 1.5rem; cursor: pointer; transition: var(--transition);
}
.modal-close:hover { color: var(--gold); transform: rotate(90deg); }
.modal h3 { font-family: var(--font-heading); color: var(--gold); margin-bottom: 20px; font-size: 1.3rem; }

/* Toast */
.toast-container { position: fixed; top: 90px; right: 24px; z-index: 3000; display: flex; flex-direction: column; gap: 10px; }
.toast {
  padding: 16px 24px; border-radius: var(--radius-sm);
  background: var(--bg-dark-2); border: 1px solid var(--glass-border);
  color: var(--text-gold); font-size: 0.9rem; min-width: 300px;
  animation: slideInRight 0.4s ease; position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.toast.success { border-left: 4px solid #34D399; }
.toast.error { border-left: 4px solid #EF4444; }
.toast.info { border-left: 4px solid var(--gold); }

/* ---- HAMBURGER ---- */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--gold); transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .auth-art { display: none; }
  .auth-form-side { flex: 1; }
  .flight-info { gap: 20px; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--bg-dark-2); flex-direction: column; padding: 80px 24px 24px;
    transition: var(--transition); border-left: 1px solid rgba(212,160,23,0.2);
  }
  .nav-links.open { right: 0; }
  .nav-links a { padding: 14px 16px; font-size: 1rem; }
  .search-form { grid-template-columns: 1fr; }
  .search-form .form-row { flex-direction: column; }
  .flight-card { flex-direction: column; text-align: center; }
  .flight-info { flex-direction: column; gap: 16px; }
  .flight-price { text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .bookings-grid { grid-template-columns: 1fr; }
  .booking-route { flex-direction: column; gap: 8px; text-align: center; }
  .hero-title { font-size: clamp(1.6rem, 5vw, 3rem); }
  .section { padding: 60px 0; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .admin-stats { grid-template-columns: 1fr; }
  .otp-input { width: 44px; height: 52px; font-size: 1.2rem; }
}

/* ---- ABOUT PAGE ---- */
.about-hero { min-height: 60vh; display: flex; align-items: center; padding-top: 100px; text-align:center;
  background: radial-gradient(ellipse at center, rgba(107,33,168,0.15), transparent 70%), var(--bg-dark);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-grid img { width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--glass-border); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }

/* ---- CONTACT PAGE ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info-card { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-icon {
  width: 50px; height: 50px; min-width: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(212,160,23,0.15), rgba(107,33,168,0.15));
  border: 1px solid rgba(212,160,23,0.3); font-size: 1.2rem;
}
.contact-info-card h4 { font-family: var(--font-subheading); color: var(--gold); font-size: 0.95rem; margin-bottom: 4px; }
.contact-info-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ---- TABS ---- */
.tab-nav { display: flex; gap: 4px; margin-bottom: 32px; flex-wrap: wrap; }
.tab-btn {
  padding: 12px 24px; border: 1px solid rgba(212,160,23,0.2); background: var(--glass-bg);
  color: var(--text-muted); border-radius: var(--radius-sm); cursor: pointer;
  font-weight: 600; font-size: 0.9rem; transition: var(--transition); font-family: var(--font-body);
}
.tab-btn.active { background: rgba(212,160,23,0.15); color: var(--gold); border-color: var(--gold); }
.tab-content { display: none; animation: fadeIn 0.4s ease; }
.tab-content.active { display: block; }

/* ---- MISC ---- */
.empty-state { text-align: center; padding: 80px 20px; }
.empty-state svg { width: 80px; height: 80px; color: var(--text-muted); margin-bottom: 20px; opacity: 0.4; }
.empty-state h3 { font-family: var(--font-subheading); color: var(--gold); margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); }

.chola-divider {
  width: 100%; height: 40px; position: relative; margin: 40px 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40'%3E%3Cpath d='M0 20 Q300 0 600 20 Q900 40 1200 20' stroke='%23D4A01730' fill='none' stroke-width='1'/%3E%3Cpath d='M0 20 Q300 40 600 20 Q900 0 1200 20' stroke='%23D4A01720' fill='none' stroke-width='1'/%3E%3C/svg%3E") center/cover no-repeat;
}

.badge-gold { display: inline-block; padding: 2px 10px; border-radius: 12px; font-size: 0.7rem; font-weight: 700; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--bg-dark); }
.text-gold { color: var(--gold) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; } .mt-4 { margin-top: 32px; } .mb-2 { margin-bottom: 16px; } .mb-4 { margin-bottom: 32px; }

/* Admin filter bar */
.filter-bar { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; align-items: center; }
.filter-bar .form-control { max-width: 250px; padding: 10px 14px; }
