/* ========================================================
   GYAN SHAKTI LIBRARY - Premium Glassmorphism Design System
   ======================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Noto+Sans+Devanagari:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --primary: #fbbf24;        /* Electric Gold */
  --primary-light: #fef08a;
  --primary-dark: #d97706;
  
  --accent: #0891b2;         /* Cyan 600 */
  --accent-light: #06b6d4;   /* Cyan 500 */
  
  --secondary: #4f46e5;      /* Tech Indigo */
  --secondary-light: #6366f1;
  
  --bg-dark: #f1f5f9;        /* Light Slate Gray */
  --bg-card: rgba(255, 255, 255, 0.65); /* Glassmorphic Card Background */
  --bg-glass: rgba(15, 23, 42, 0.04);
  --text-primary: #0f172a;   /* Slate 900 */
  --text-secondary: #334155; /* Slate 700 */
  --text-muted: #64748b;     /* Slate 500 */
  --border: rgba(15, 23, 42, 0.08);
  --border-hover: rgba(6, 182, 212, 0.3);
  --shadow-glow: rgba(6, 182, 212, 0.06);
  
  --success: #10b981;
  --danger: #ef4444;
  
  /* Gradients */
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  --gradient-gold: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(241, 245, 249, 0.65));
  
  /* Typography */
  --font-primary: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-hindi: 'Noto Sans Devanagari', sans-serif;
  
  /* Spacing & Borders */
  --section-padding: 120px 0;
  --container-width: 1200px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  
  /* Ease */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(6, 182, 212, 0.3);
  border-radius: 10px;
  border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* --- Utility --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gradient-accent);
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

.highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* --- Glowing Orbs Background --- */
.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  animation: floatOrb 22s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--secondary);
  top: -15%;
  left: -10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: var(--accent);
  bottom: -10%;
  right: -5%;
  animation-delay: -6s;
  opacity: 0.1;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: var(--primary-dark);
  top: 40%;
  left: 35%;
  animation-delay: -12s;
  opacity: 0.06;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(15, 23, 42, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 95%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 95%);
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(70px, -50px) scale(1.1); }
  66% { transform: translate(-40px, 40px) scale(0.95); }
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.35);
  border: 1px solid rgba(255,255,255,0.1);
}

.logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  transition: all 0.3s var(--ease-out);
}

.nav-links a:hover {
  color: var(--text-primary);
  background: var(--bg-glass);
}

.nav-cta {
  background: var(--gradient-accent) !important;
  color: var(--text-primary) !important;
  font-weight: 600 !important;
  padding: 10px 24px !important;
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(6, 182, 212, 0.4) !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: all 0.3s var(--ease-out);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.05);
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(251, 191, 36, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-tagline {
  font-family: var(--font-hindi);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(251, 191, 36, 0.1);
  letter-spacing: 0.5px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.hero-facilities-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  margin-bottom: 32px;
  width: 100%;
  max-width: 520px;
}

.hero-facilities-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-facilities-list .check-icon {
  color: var(--primary);
  font-weight: 800;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.4s var(--ease-out);
}

.btn svg {
  transition: transform 0.3s var(--ease-out);
}

.btn:hover svg {
  transform: scale(1.1) translateX(2px);
}

.btn-primary {
  background: var(--gradient-accent);
  color: white;
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(6, 182, 212, 0.55);
}

.btn-outline {
  background: var(--bg-glass);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(6, 182, 212, 0.08);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Hero Image & Float Badges */
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  border: 1px solid var(--border);
}

.hero-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(241, 245, 249, 0.75) 100%);
  pointer-events: none;
}

.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.badge-247 {
  bottom: 30px;
  left: -30px;
  border-left: 3px solid var(--accent);
  animation: float-left 4.5s ease-in-out infinite;
}

.slogan-card {
  top: 40px;
  right: -30px;
  border-left: 3px solid var(--primary);
  animation: float-right-anim 5s ease-in-out infinite;
}

.hero-float-card .icon {
  width: 42px;
  height: 42px;
  background: var(--bg-glass);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.hero-float-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.hero-float-card p {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

@keyframes float-left {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes float-right-anim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* --- Features Section --- */
.features {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

.features-header {
  text-align: center;
  margin-bottom: 72px;
}

.features-header .section-desc {
  margin: 0 auto;
}

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

.feature-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35), 0 0 30px rgba(6, 182, 212, 0.1);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 54px;
  height: 54px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent-light);
  margin-bottom: 24px;
  transition: all 0.4s var(--ease-out);
}

.feature-card:hover .feature-icon {
  background: var(--gradient-accent);
  border-color: transparent;
  color: white;
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Shifts / Timings Section --- */
.shifts {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

.shifts-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.shifts-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  border: 1px solid var(--border);
}

.shifts-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.shifts-image-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--gradient-accent);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.shifts-details {
  position: relative;
}

.shifts-tabs {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

.tab-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 10px 24px;
  border-radius: 100px;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.tab-btn:hover {
  background: var(--bg-glass);
  color: var(--text-primary);
  border-color: var(--text-secondary);
}

.tab-btn.active {
  background: var(--gradient-accent);
  color: white;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.2);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s var(--ease-out) forwards;
}

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

.shift-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.shift-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.4s var(--ease-out);
}

.shift-item:hover {
  border-color: var(--border-hover);
  transform: translateX(6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.shift-time-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  transition: all 0.4s var(--ease-out);
}

.shift-item:hover .shift-time-icon {
  background: var(--gradient-accent);
  border-color: transparent;
  color: white;
}

.shift-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.shift-info p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.shift-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.2);
  padding: 2px 10px;
  border-radius: 4px;
  margin-top: 8px;
}

.highlight-night {
  border-color: rgba(251, 191, 36, 0.2);
}

.shifts-note {
  margin-top: 28px;
  padding: 16px 20px;
  background: rgba(6, 182, 212, 0.04);
  border: 1px dashed rgba(6, 182, 212, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* --- Plans & Pricing Section --- */
.pricing {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

.pricing-header {
  text-align: center;
  margin-bottom: 72px;
}

.pricing-header .section-desc {
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--primary);
  background: linear-gradient(145deg, rgba(251, 191, 36, 0.08), rgba(255, 255, 255, 0.8));
  box-shadow: 0 15px 45px rgba(251, 191, 36, 0.1);
}

.pricing-card.featured::after {
  content: '★ BEST VALUE';
  position: absolute;
  top: 24px;
  right: -35px;
  background: var(--gradient-gold);
  color: #0f172a;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 5px 36px;
  transform: rotate(45deg);
  letter-spacing: 1px;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.1);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.12);
}

.pricing-card.featured:hover {
  box-shadow: 0 25px 70px rgba(251, 191, 36, 0.15);
}

.pricing-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-light);
  margin-bottom: 20px;
}

.pricing-card.featured .pricing-label {
  color: var(--primary);
}

.pricing-amount {
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-amount .currency {
  font-size: 1.6rem;
  font-weight: 600;
  vertical-align: super;
  color: var(--primary);
}

.pricing-period {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 36px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.pricing-features li {
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: 900;
  font-size: 0.8rem;
  min-width: 18px;
  height: 18px;
  background: rgba(16, 185, 129, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* --- Seat Calculator & Booking Form --- */
.booking-section {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

.booking-wrapper {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 64px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.booking-wrapper::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: var(--accent);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.08;
  pointer-events: none;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}

.calculator-box {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-top: 32px;
}

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

.calc-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.calc-input {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
  transition: all 0.3s;
}

.calc-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
}

.calc-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

.calc-results {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.discount-pill {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--success);
  background: rgba(16, 185, 129, 0.12);
  padding: 2px 10px;
  border-radius: 4px;
}

.total-row {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  border-top: 1px dashed var(--border);
  padding-top: 16px;
}

.total-row #totalAmount {
  color: var(--primary);
  font-size: 1.6rem;
}

/* Booking Form */
.booking-form-wrapper {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: inset 0 0 30px rgba(255,255,255,0.2);
}

.form-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-input {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 0.92rem;
  outline: none;
  transition: all 0.3s;
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
  background: rgba(255, 255, 255, 1);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.form-checkbox input {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--accent);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
}

/* --- FAQ Section --- */
.faq-section {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

.faq-header {
  text-align: center;
  margin-bottom: 64px;
}

.faq-header .section-desc {
  margin: 0 auto;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s;
}

.accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-primary);
  padding: 22px 28px;
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: all 0.3s;
}

.accordion-header .icon {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--accent-light);
  transition: transform 0.3s;
}

.accordion-item:hover {
  border-color: rgba(6, 182, 212, 0.25);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
  padding: 0 28px;
}

.accordion-body p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-bottom: 22px;
}

.accordion-item.active {
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.accordion-item.active .accordion-header {
  color: var(--accent-light);
}

.accordion-item.active .accordion-header .icon {
  transform: rotate(45deg);
}

/* --- Contact & Location Section --- */
.contact {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

.contact-wrapper {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 64px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.contact-card {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.contact-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary);
  transition: all 0.4s var(--ease-out);
}

.contact-item:hover .contact-item-icon {
  background: var(--gradient-accent);
  border-color: transparent;
  color: white;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.25);
}

.contact-item-text h4 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.contact-item-text p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-link {
  color: var(--accent-light);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.contact-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

.contact-map {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 380px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.1) contrast(1.05);
  transition: filter 0.4s;
}

.contact-map:hover iframe {
  filter: grayscale(0);
}

/* --- Footer --- */
.footer {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 1;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.footer-text {
  font-size: 0.95rem;
  color: var(--text-primary);
}

.footer-subtext {
  font-family: var(--font-hindi);
  font-size: 1rem;
  color: var(--primary);
  opacity: 0.95;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent-light);
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Scroll reveal triggers */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-out);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger indices */
.stagger-children .reveal:nth-child(1) { transition-delay: 0.05s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.15s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.25s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(7) { transition-delay: 0.35s; }
.stagger-children .reveal:nth-child(8) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(9) { transition-delay: 0.45s; }
.stagger-children .reveal:nth-child(10) { transition-delay: 0.5s; }

/* --- Responsive Layout Breakpoints --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats {
    width: 100%;
    justify-content: center;
  }
  
  .hero-visual {
    max-width: 540px;
    margin: 0 auto;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .shifts-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .shifts-image {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .shifts-image img {
    height: 380px;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .pricing-card.featured {
    grid-column: auto;
    max-width: 100%;
    margin: 0;
    width: 100%;
  }
  
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 40px;
  }
  
  .contact-map {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    padding: 100px 30px 40px;
    transition: right 0.4s var(--ease-out);
    border-left: 1px solid var(--border);
    gap: 8px;
    align-items: stretch;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    width: 100%;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
  }
  
  .nav-cta {
    text-align: center;
    margin-top: 16px;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .booking-wrapper {
    padding: 30px;
  }
  
  .booking-form-wrapper {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  :root {
    --section-padding: 80px 0;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-tagline {
    font-size: 1.25rem;
  }
  
  .hero-stats {
    gap: 24px;
  }
  
  .hero-facilities-list {
    grid-template-columns: 1fr;
    margin-bottom: 24px;
    align-self: flex-start;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .badge-247 {
    left: 10px;
    bottom: -15px;
  }
  
  .slogan-card {
    right: 10px;
    top: -15px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    grid-column: span 1;
  }
  
  .calculator-box {
    padding: 20px;
  }
  
  .shifts-tabs {
    flex-direction: column;
    gap: 8px;
  }
  
  .tab-btn {
    width: 100%;
    text-align: center;
  }
}
