/* ==========================================
   OK Varanasi - Core Design & Styling System
   ========================================== */

/* Importing Premium Fonts */
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* Design System Variables */
:root {
  --color-saffron: #FF6B08;
  --color-marigold: #FF8C32;
  --color-navy-deep: #060E1A;
  --color-navy-dark: #0A192F;
  --color-navy-mid: #172A45;
  --color-cyan-glow: #00F2FE;
  --color-gold: #FFD56B;
  --color-text-light: #F4F6F9;
  --color-text-muted: #8892B0;
  --color-white: #FFFFFF;
  --color-glass-bg: rgba(10, 25, 47, 0.7);
  --color-glass-border: rgba(0, 242, 254, 0.15);
  
  --font-heading: 'Marcellus', serif;
  --font-body: 'Outfit', sans-serif;
  
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-glow: 0 0 20px rgba(0, 242, 254, 0.25);
  --shadow-saffron: 0 0 20px rgba(255, 107, 8, 0.25);
}

/* Global Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-navy-deep);
  color: var(--color-text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-navy-deep);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--color-saffron), var(--color-marigold));
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-cyan-glow);
}

/* Reusable Components & Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: normal;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--color-white);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 20%;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-marigold), var(--color-cyan-glow), transparent);
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 3.5rem auto;
  font-size: 1.1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  border: none;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-saffron), var(--color-marigold));
  color: var(--color-white);
  box-shadow: var(--shadow-saffron);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 8, 0.45);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--color-cyan-glow);
  color: var(--color-cyan-glow);
  box-shadow: var(--shadow-glow);
}

.btn-secondary:hover {
  background: var(--color-cyan-glow);
  color: var(--color-navy-deep);
  transform: translateY(-3px);
}

.btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 0;
}

.mobile-only-action {
  display: none;
}

/* Glassmorphism Containers */
.glass-panel {
  background: var(--color-glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-glass-border);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  border-color: rgba(0, 242, 254, 0.35);
  box-shadow: var(--shadow-glow);
}

/* ==========================================
   Header & Navigation
   ========================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 1.2rem 0;
}

header.scrolled {
  background: rgba(6, 14, 26, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 242, 254, 0.1);
  padding: 0.8rem 0;
}

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

/* Glowing Logo matching user asset */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: var(--font-heading);
}

.logo-ok {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.logo-varanasi {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-cyan-glow);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-left: 0.3rem;
  border-left: 2px solid var(--color-saffron);
  padding-left: 0.5rem;
  text-shadow: var(--shadow-glow);
  display: flex;
  flex-direction: column;
}

.logo-tagline {
  font-size: 0.6rem;
  color: var(--color-marigold);
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-item a {
  text-decoration: none;
  color: var(--color-text-light);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  position: relative;
  padding: 0.5rem 0;
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-cyan-glow);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-glow);
}

.nav-item a:hover {
  color: var(--color-cyan-glow);
}

.nav-item a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(10, 25, 47, 0.4) 0%, var(--color-navy-deep) 90%);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/varanasi_hero.png');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: -2;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero:hover .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(6, 14, 26, 0.4) 0%, var(--color-navy-deep) 95%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 850px;
  margin-top: -2rem;
  z-index: 10;
}

.hero-glow-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 107, 8, 0.15);
  border: 1px solid rgba(255, 107, 8, 0.3);
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  color: var(--color-marigold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: glow-pulse 3s infinite alternate;
}

@keyframes glow-pulse {
  0% { box-shadow: 0 0 5px rgba(255, 107, 8, 0.2); border-color: rgba(255, 107, 8, 0.3); }
  100% { box-shadow: 0 0 15px rgba(255, 107, 8, 0.5); border-color: rgba(255, 107, 8, 0.6); }
}

.hero h2 {
  font-size: 4.2rem;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.hero h2 span {
  background: linear-gradient(120deg, var(--color-cyan-glow), var(--color-marigold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Search Engine Component */
.hero-search-wrapper {
  max-width: 650px;
  margin: 0 auto 3rem auto;
}

.hero-search {
  display: flex;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 0.4rem;
  transition: var(--transition-smooth);
}

.hero-search:focus-within {
  border-color: var(--color-cyan-glow);
  box-shadow: var(--shadow-glow);
  background: rgba(255, 255, 255, 0.08);
}

.hero-search i {
  display: flex;
  align-items: center;
  padding-left: 1.5rem;
  color: var(--color-text-muted);
  font-size: 1.2rem;
}

.hero-search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.8rem 1rem;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
}

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

.hero-search button {
  border-radius: 40px;
  padding: 0.8rem 2rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* Quick Statistics Grid */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 5rem;
}

.stat-item {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  text-align: center;
  transition: var(--transition-smooth);
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 107, 8, 0.2);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-marigold);
  margin-bottom: 0.2rem;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================
   Explore & Cultural Events
   ========================================== */
.explore-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--color-navy-deep) 0%, var(--color-navy-dark) 100%);
  position: relative;
}

.explore-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.explore-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.5);
  height: 480px;
}

.explore-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.explore-visual:hover img {
  transform: scale(1.05);
}

.explore-visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(6, 14, 26, 0.9) 0%, rgba(6, 14, 26, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}

.explore-tag {
  background: var(--color-saffron);
  color: var(--color-white);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 0.8rem;
}

.explore-visual-overlay h3 {
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.explore-visual-overlay p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Event List Component */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.event-card {
  display: flex;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.2rem;
  transition: var(--transition-smooth);
  cursor: pointer;
  align-items: center;
  position: relative;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-marigold);
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.event-card:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 107, 8, 0.25);
}

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

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 8, 0.1);
  border: 1px solid rgba(255, 107, 8, 0.2);
  color: var(--color-marigold);
  border-radius: 8px;
  min-width: 70px;
  height: 70px;
  margin-right: 1.5rem;
  text-align: center;
}

.event-date .day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
}

.event-details {
  flex: 1;
}

.event-details h4 {
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.event-details p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.event-time {
  font-size: 0.8rem;
  color: var(--color-cyan-glow);
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ==========================================
   Places to Visit
   ========================================== */
.places-section {
  padding: 8rem 0;
  background: var(--color-navy-dark);
}

.places-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.6rem 1.6rem;
  border-radius: 30px;
  color: var(--color-text-muted);
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--color-cyan-glow);
  color: var(--color-navy-deep);
  border-color: var(--color-cyan-glow);
  box-shadow: var(--shadow-glow);
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.place-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--color-navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.place-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 107, 8, 0.3);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.place-image-wrapper {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.place-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.place-card:hover .place-image-wrapper img {
  transform: scale(1.08);
}

.place-category-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(6, 14, 26, 0.85);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid var(--color-marigold);
  color: var(--color-marigold);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.place-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.place-info h3 {
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.place-description {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.place-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.place-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.place-meta i {
  color: var(--color-cyan-glow);
}

/* ==========================================
   Food Section
   ========================================== */
.food-section {
  padding: 8rem 0;
  background: var(--color-navy-deep);
  position: relative;
}

/* Design Element: Side Glow */
.food-section::before {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 107, 8, 0.1) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.food-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.food-showcase {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 45px rgba(0,0,0,0.5);
  height: 520px;
}

.food-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.food-showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(6, 14, 26, 0.9) 0%, rgba(6, 14, 26, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}

.food-menu-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.food-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.2rem;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.food-item:hover, .food-item.active {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 107, 8, 0.3);
}

.food-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.food-header h4 {
  font-size: 1.3rem;
  color: var(--color-white);
}

.food-tag {
  font-size: 0.75rem;
  color: var(--color-marigold);
  border: 1px solid rgba(255, 140, 50, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
  background: rgba(255, 140, 50, 0.05);
}

.food-item p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.food-places {
  font-size: 0.85rem;
  color: var(--color-cyan-glow);
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ==========================================
   Business Directory
   ========================================== */
.directory-section {
  padding: 8rem 0;
  background: var(--color-navy-dark);
}

.directory-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.directory-search-bar {
  display: flex;
  background: var(--color-navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 0.3rem 0.5rem 0.3rem 1.2rem;
  align-items: center;
  max-width: 450px;
  flex: 1;
}

.directory-search-bar input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--color-white);
  padding: 0.5rem;
  width: 100%;
  font-family: var(--font-body);
}

.directory-search-bar i {
  color: var(--color-text-muted);
}

.directory-filters-container {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.dir-filter-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--color-text-muted);
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.dir-filter-btn:hover, .dir-filter-btn.active {
  background: var(--color-marigold);
  color: var(--color-white);
  border-color: var(--color-marigold);
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.directory-card {
  background: var(--color-navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.8rem;
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.directory-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-cyan-glow);
  box-shadow: var(--shadow-glow);
}

.directory-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.directory-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(0, 242, 254, 0.1);
  color: var(--color-cyan-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.directory-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255, 213, 107, 0.1);
  color: var(--color-gold);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.directory-card h3 {
  font-size: 1.35rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.directory-tag {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-muted);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.directory-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  flex: 1;
}

.directory-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.directory-contact-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.directory-contact-info i {
  color: var(--color-cyan-glow);
  width: 15px;
}

/* Directory Call To Action */
.directory-cta-card {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(255, 107, 8, 0.1) 0%, rgba(0, 242, 254, 0.1) 100%);
  border: 1px dashed rgba(0, 242, 254, 0.3);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.directory-cta-card h3 {
  font-size: 2rem;
  color: var(--color-white);
}

.directory-cta-card p {
  color: var(--color-text-muted);
  max-width: 600px;
}

/* ==========================================
   Travel Guides
   ========================================== */
.guides-section {
  padding: 8rem 0;
  background: var(--color-navy-deep);
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.guide-card {
  background: var(--color-navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.guide-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 140, 50, 0.25);
}

.guide-banner {
  height: 200px;
  position: relative;
}

.guide-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-duration {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--color-saffron);
  color: var(--color-white);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.guide-card-content {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.guide-card-content h3 {
  font-size: 1.4rem;
  color: var(--color-white);
  margin-bottom: 0.8rem;
}

.guide-card-content p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.guide-step {
  display: flex;
  gap: 0.8rem;
  font-size: 0.85rem;
  align-items: center;
}

.guide-step-num {
  background: rgba(0, 242, 254, 0.1);
  color: var(--color-cyan-glow);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.guide-step-text {
  color: var(--color-text-light);
}

/* ==========================================
   Contact Us Section
   ========================================== */
.contact-section {
  padding: 8rem 0;
  background: var(--color-navy-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info-panel h3 {
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.contact-info-panel p {
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-detail-item {
  display: flex;
  gap: 1.2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 107, 8, 0.1);
  color: var(--color-marigold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid rgba(255, 107, 8, 0.2);
}

.contact-text h4 {
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 0.2rem;
}

.contact-text p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.contact-form-panel {
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: var(--color-white);
  font-family: var(--font-body);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-cyan-glow);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ==========================================
   Modals
   ========================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 9, 17, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 2rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: var(--color-navy-mid);
  border: 1px solid var(--color-glass-border);
  border-radius: 20px;
  width: 100%;
  max-width: 650px;
  padding: 2.5rem;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-glow);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  color: var(--color-cyan-glow);
}

.modal-title {
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.8rem;
}

/* ==========================================
   Footer
   ========================================== */
footer {
  background: var(--color-navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 0 2rem 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  max-width: 250px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.footer-socials a:hover {
  background: var(--color-cyan-glow);
  color: var(--color-navy-deep);
  box-shadow: var(--shadow-glow);
}

.footer-links-col h4 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links-col a {
  text-decoration: none;
  color: var(--color-text-muted);
  transition: var(--transition-smooth);
}

.footer-links-col a:hover {
  color: var(--color-cyan-glow);
  padding-left: 5px;
}

.footer-newsletter p {
  margin-bottom: 1.2rem;
}

.newsletter-form {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 0.3rem;
}

.newsletter-form input {
  background: transparent;
  border: none;
  outline: none;
  padding: 0.5rem 1rem;
  color: var(--color-white);
  flex: 1;
  font-family: var(--font-body);
}

.newsletter-form button {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================
   Responsive Styling (Media Queries)
   ========================================== */
@media (max-width: 1024px) {
  .hero h2 {
    font-size: 3.2rem;
  }
  .explore-grid, .food-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .explore-visual, .food-showcase {
    height: 380px;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-navy-dark);
    flex-direction: column;
    padding: 6rem 2.5rem 2rem 2.5rem;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    z-index: 999;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-item a {
    font-size: 1.2rem;
    display: block;
  }
  
  .nav-actions {
    display: none !important;
  }
  
  .mobile-only-action {
    display: block !important;
  }
  
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .logo-ok {
    font-size: 1.8rem;
  }
  
  .logo-varanasi {
    font-size: 1rem;
    letter-spacing: 1px;
    padding-left: 0.3rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
}

/* Form success message toast styling */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--color-navy-mid);
  border: 1px solid var(--color-cyan-glow);
  box-shadow: var(--shadow-glow);
  padding: 1rem 1.8rem;
  border-radius: 8px;
  color: var(--color-white);
  z-index: 9999;
  transform: translateY(150%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.toast-notification.active {
  transform: translateY(0);
}

.toast-notification i {
  color: var(--color-cyan-glow);
  font-size: 1.2rem;
}


/* Theme toggle support */
body.light-mode{
  --color-saffron:#FF6B08;
  --color-marigold:#FF8C32;

  --color-navy-deep:#f4f7fb;
  --color-navy-dark:#ffffff;
  --color-navy-mid:#eef4ff;

  --color-cyan-glow:#0066ff;   /* IMPORTANT */

  --color-text-light:#0066ff;
  --color-text-muted:#5f6f87;
  --color-white:#0066ff;

  --color-glass-bg:rgba(255,255,255,.72);
  --color-glass-border:rgba(0,102,255,.15);

  --shadow-glow:0 0 20px rgba(0,102,255,.25);
}

/* If your CSS uses custom variables like these, this will flip the page properly */
body.light-mode {
  background: var(--color-navy-deep);
  color: var(--color-text-light);
}

/* Optional: make buttons and cards feel better in light mode */
body.light-mode .glass-panel,
body.light-mode .card,
body.light-mode .guide-card,
body.light-mode .event-card,
body.light-mode .directory-card {
  background: var(--color-navy-mid);
  color: var(--color-text-light);
}

/* Theme button */
#theme-toggle {
  min-width: 42px;
}



/* =====================================================
   COMPLETE MOBILE FOOTER + HERO FIX
   ===================================================== */

img{max-width:100%;height:auto;}

.hero-content{
  width:100%;
  max-width:850px;
  margin:0 auto;
  padding:0 20px;
}

.hero-search-wrapper{
  width:100%;
  max-width:650px;
  margin:0 auto 2rem;
}

@media (max-width:768px){

.container{padding:0 16px;}

.hero{
  min-height:auto;
  padding:110px 0 60px;
}

.hero-content{
  max-width:100%;
  padding:0;
  margin:0 auto;
}

.hero h2{
  font-size:2rem!important;
  line-height:1.25;
  margin-bottom:16px;
}

.hero-description{
  font-size:1rem;
  margin:0 auto 20px;
}

.hero-search{
  display:flex;
  flex-direction:column;
  gap:12px;
  border-radius:18px;
  padding:12px;
}

.hero-search i{display:none;}

.hero-search input,
.hero-search button{
  width:100%;
}

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

.hero-actions .btn{
  width:100%;
}

.hero-stats{
  grid-template-columns:1fr;
  margin-top:2rem;
}

.explore-grid,
.food-grid,
.contact-grid,
.guides-grid,
.footer-grid,
.places-grid,
.directory-grid{
  grid-template-columns:1fr!important;
}

.footer-grid{
  gap:2rem;
  text-align:center;
}

.footer-brand p{
  max-width:100%;
}

.footer-socials{
  justify-content:center;
}

.footer-newsletter{
  width:100%;
}

.newsletter-form{
  display:flex;
  flex-direction:column;
  gap:12px;
  background:transparent;
  border:none;
  padding:0;
}

.newsletter-form input{
  width:100%;
  border:1px solid rgba(255,255,255,.15);
  border-radius:12px;
  padding:14px 16px;
  background:rgba(255,255,255,.05);
}

.newsletter-form button{
  width:100%;
  height:48px;
  border-radius:12px;
}

.footer-bottom{
  flex-direction:column;
  text-align:center;
}
}

@media (max-width:480px){
.hero h2{font-size:1.8rem!important;}
.section-title{font-size:2rem;}
}




/* ===== Premium Mobile Responsive Patch ===== */
@media (max-width:768px){
  body{overflow-x:hidden;}
  header{padding:.6rem 0;}
  .container{padding:0 16px;}
  .nav-actions .btn-primary{display:none;}
  .mobile-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    border-radius:12px;
    background:rgba(255,255,255,.06);
    backdrop-filter:blur(12px);
  }
  .nav-menu{
    position:fixed;
    top:70px;
    right:12px;
    width:230px;
    max-width:calc(100vw - 24px);
    background:rgba(10,25,47,.96);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:14px;
    display:flex;
    flex-direction:column;
    gap:6px;
    transform:translateX(120%);
    opacity:0;
    visibility:hidden;
    transition:.3s ease;
    box-shadow:0 18px 40px rgba(0,0,0,.45);
    z-index:1001;
  }
  .nav-menu.active{
    transform:translateX(0);
    opacity:1;
    visibility:visible;
  }
  .nav-item a{
    display:block;
    padding:12px 14px;
    border-radius:12px;
  }
  .nav-item a:hover{
    background:rgba(255,255,255,.06);
  }

  .hero{
    min-height:auto;
    padding-top:110px;
    padding-bottom:50px;
  }
  .hero-content{
    margin-top:0;
  }
  .hero h2{
    font-size:2.2rem;
    line-height:1.2;
    word-break:break-word;
  }
  .hero-description{
    font-size:.95rem;
    padding:0 4px;
  }
  .hero-search{
    flex-direction:column;
    border-radius:18px;
    padding:10px;
    gap:10px;
  }
  .hero-search i{display:none;}
  .hero-search input{
    width:100%;
    padding:12px;
  }
  .hero-search button{
    width:100%;
  }
  .hero-actions{
    flex-direction:column;
    gap:12px;
  }
  .hero-actions .btn{
    width:100%;
  }
  .hero-stats{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    margin-top:30px;
  }

  .explore-grid,
  .food-grid,
  .guides-grid,
  .contact-grid{
    grid-template-columns:1fr;
    gap:24px;
  }
  .places-grid,
  .directory-grid{
    grid-template-columns:1fr;
  }
  .explore-visual,
  .food-showcase{
    height:300px;
  }
  .directory-controls{
    flex-direction:column;
    align-items:stretch;
  }
  .directory-search-bar{
    max-width:100%;
  }
}


/* Business Listing Select */
#biz-category {
    background: var(--card-bg);
    color: #fff;
    border: 1px solid var(--color-cyan-glow);
}

#biz-category option {
    background: #0f172a;   /* Dark background */
    color: #ffffff;        /* White text */
}

#biz-category:focus {
    border-color: var(--color-cyan-glow);
    box-shadow: 0 0 10px rgba(0,255,255,.35);
}