/* ====================================================
   MANDAPFINDER – STYLESHEET
   Theme: Royal Blue + White | Cormorant + Outfit
   ==================================================== */

/* ── VARIABLES ─────────────────────────────────────── */
:root {
  --blue-900: #0a1628;
  --blue-800: #0f2044;
  --blue-700: #1a3160;
  --blue-600: #1e4080;
  --blue-500: #2455a4;
  --blue-400: #3b72c8;
  --blue-300: #6b9de0;
  --blue-100: #dce8f8;
  --blue-50:  #f0f5fc;
  --gold:     #c9a84c;
  --gold-light: #f0d68a;
  --white:    #ffffff;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(10,22,40,0.08);
  --shadow:    0 4px 24px rgba(10,22,40,0.12);
  --shadow-lg: 0 12px 48px rgba(10,22,40,0.18);
  --transition: 0.25s ease;
}

/* ── RESET & BASE ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; width: 100%; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────────── */
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
em { font-style: italic; }
.accent { color: var(--blue-500); }

/* ── LAYOUT ──────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header p { color: var(--gray-500); margin-top: 10px; font-size: 1.05rem; }
.section-tag {
  display: inline-block;
  background: var(--blue-50);
  color: var(--blue-500);
  border: 1px solid var(--blue-100);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ── PAGES ───────────────────────────────────────────── */
.page { display: none; }
.page.active { display: block; }

/* ── NAVBAR ──────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.navbar.scrolled .logo { color: var(--blue-800); }
.logo-mark { color: var(--gold); font-size: 1rem; }
.logo em { color: var(--blue-400); }
.navbar.scrolled .logo em { color: var(--blue-500); }

/* Solid navbar variant — for pages (like venue-detail) with no dark hero
   image right at the top, so the logo/links need dark text from the start */
.navbar.navbar-solid {
  background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow-sm);
}
.navbar.navbar-solid .logo,
.navbar.navbar-solid .nav-link {
  color: var(--blue-800);
}
.navbar.navbar-solid .logo em {
  color: var(--blue-500);
}
.navbar.navbar-solid .nav-link:hover,
.navbar.navbar-solid .nav-link.active {
  color: var(--blue-600);
  background: var(--blue-50);
}
.footer-logo { color: var(--white); }
.footer-logo em { color: var(--gold-light); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  transition: all var(--transition);
}
.navbar.scrolled .nav-link { color: var(--gray-700); }
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.15);
}
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active {
  color: var(--blue-600);
  background: var(--blue-50);
}
.nav-cta {
  margin-left: 8px;
  background: var(--gold);
  color: var(--blue-900) !important;
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-trigger .arrow { font-size: 0.7rem; margin-left: 4px; transition: transform var(--transition); }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 220px;
  border: 1px solid var(--gray-100);
}
.dropdown-menu.open { display: block; animation: fadeDown 0.2s ease; }
.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--gray-700);
  transition: all var(--transition);
}
.dropdown-menu a:hover { background: var(--blue-50); color: var(--blue-600); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--blue-800); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  box-shadow: var(--shadow);
}
.mobile-menu.open { max-height: 500px; padding: 16px 24px 24px; }
.mobile-menu a, .mobile-dropdown span {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
  font-weight: 500;
  cursor: pointer;
  font-size: 1rem;
}
.mobile-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 16px;
}
.mobile-sub.open { max-height: 200px; }
.mobile-sub a { border-bottom: none; font-size: 0.95rem; color: var(--blue-600); }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/home.png') center/cover no-repeat;
  transform: scale(1.05);
  animation: zoomOut 12s ease-out forwards;
}
@keyframes zoomOut { from { transform: scale(1.05); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.88) 0%, rgba(15,32,68,0.72) 60%, rgba(30,64,128,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  color: var(--white);
  max-width: 700px;
  margin-left: max(24px, calc((100vw - 1200px)/2 + 24px));
}
.hero-tag {
  display: inline-block;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeUp 0.8s 0.2s both;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 18px;
  animation: fadeUp 0.8s 0.4s both;
}
.hero-content h1 em { color: var(--gold-light); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  animation: fadeUp 0.8s 0.6s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp 0.8s 0.8s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeUp 0.8s 1s both;
}
.stat { text-align: center; }
.stat strong { display: block; font-size: 1.8rem; font-family: 'Cormorant Garamond', serif; font-weight: 700; }
.stat small { font-size: 0.8rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.08em; }
.stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 130px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.venue-page-hero { min-height: 150px; }
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?w=1400&q=80') center/cover no-repeat;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(30,64,128,0.75) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 20px;
  color: var(--white);
  text-align: center;
  width: 100%;
}
.page-hero-content h1 { color: var(--white); margin-bottom: 6px; font-size: clamp(1.4rem, 3vw, 2rem); }
.page-hero-content .hero-tag { margin-bottom: 8px; }
.page-hero-content p { color: rgba(255,255,255,0.75); font-size: 0.9rem; }

/* ── BUTTONS ──────────────────────────────────────────── */
.btn-primary {
  background: var(--blue-600);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary:hover { background: var(--blue-700); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,64,128,0.3); }
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }
.full-width { width: 100%; padding: 14px; }

/* ── CATEGORIES ──────────────────────────────────────── */
/* ── CATEGORIES ──────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr; /* Stacks cards one by one instead of 3 columns */
  gap: 40px;                 /* Increased gap between vertical cards */
  max-width: 750px;          /* Keeps the stacked cards at a beautiful, neat width */
  margin: 0 auto;            /* Centers the cards on the webpage */
}
.cat-card {
  background: var(--white);
  border: 2.5px solid var(--gold); /* CHANGED: Added a prominent golden border */
  border-radius: var(--radius-lg);
  padding: 64px 48px;        /* Increased padding to make card bigger */
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  opacity: 0;
  transition: opacity var(--transition);
}
.cat-card:hover { 
  transform: translateY(-6px); 
  box-shadow: var(--shadow-lg); 
  border-color: var(--gold-light); /* CHANGED: Changes to a lighter gold on hover */
}
.cat-card:hover::before { opacity: 1; }
.cat-card:hover * { color: var(--white) !important; position: relative; z-index: 1; }

/* Content scaling adjustments */
.cat-icon { 
  font-size: 4.5rem;         /* Increased from 3rem to match larger card */
  margin-bottom: 24px; 
  display: block; 
}
.cat-card h3 { 
  font-size: 2.2rem;         /* Increased from default size to look prominent */
  margin-bottom: 12px; 
  color: var(--blue-800); 
}
.cat-card p { 
  color: var(--gray-500); 
  font-size: 1.15rem;        /* Increased from 0.9rem */
  margin-bottom: 24px; 
}
.cat-explore { 
  font-weight: 600; 
  color: var(--blue-500); 
  font-size: 1.05rem;        /* Increased from 0.9rem */
}
/* ── WHY MANDAPFINDER ─────────────────────────────────────────── */
.why-section { background: var(--blue-50); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-icon { font-size: 2.2rem; display: block; margin-bottom: 16px; }
.why-card h4 { font-family: 'Outfit', sans-serif; font-weight: 600; margin-bottom: 8px; color: var(--blue-800); }
.why-card p { font-size: 0.9rem; color: var(--gray-500); }

/* ── TESTIMONIALS ────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testi-card.featured { background: var(--blue-800); color: var(--white); border-color: var(--blue-800); }
.testi-stars { margin-bottom: 16px; font-size: 0.9rem; }
.testi-card p { font-size: 0.95rem; color: var(--gray-700); line-height: 1.7; margin-bottom: 24px; }
.testi-card.featured p { color: rgba(255,255,255,0.85); }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testi-author strong { display: block; font-size: 0.95rem; color: var(--gray-900); }
.testi-card.featured .testi-author strong { color: var(--white); }
.testi-author small { color: var(--gray-500); font-size: 0.8rem; }
.testi-card.featured .testi-author small { color: rgba(255,255,255,0.6); }

/* ── CTA SECTION ─────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-600) 100%);
  padding: 80px 24px;
  text-align: center;
}
.cta-inner h2 { color: var(--white); margin-bottom: 12px; }
.cta-inner p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── LOCATION FILTER ─────────────────────────────────── */
.location-filter-wrap { 
  margin-bottom: 32px; 
  border-bottom: 1px solid var(--gray-100); /* Premium structural line under the tabs */
  padding-bottom: 4px;
}
.location-tabs {
  display: flex;
  gap: 28px;        /* Increased gap for a more spacious, elegant aesthetic */
  flex-wrap: wrap;
}
.loc-tab {
  background: transparent;             /* CHANGED: Removed solid background for a clean look */
  border: none;                        /* CHANGED: Removed standard box border */
  border-bottom: 2px solid transparent;/* ADDED: Setup a bottom border track for smooth active lines */
  color: var(--gray-500);
  padding: 10px 4px;                   /* CHANGED: Adjusted padding to balance the underline position */
  border-radius: 0;                    /* CHANGED: Removed the round pills shape */
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.06em;              /* ADDED: Elegant letter spacing */
  text-transform: uppercase;           /* ADDED: Capitalized text for a luxury brand look */
  transition: all var(--transition);
}
.loc-tab:hover { 
  color: var(--blue-800); 
  border-color: var(--gray-300);       /* ADDED: Subtle gray underline preview on hover */
}
.loc-tab.active {
  background: transparent;             /* CHANGED: Removed deep blue solid highlight block */
  border-color: var(--gold);           /* CHANGED: Beautiful luxury gold line indicating active status */
  color: var(--blue-900);              /* CHANGED: Changes text to contrasting dark blue */
  font-weight: 600;
  box-shadow: none;                    /* CHANGED: Stripped modern-looking blur shadows */
}
.results-info {
  margin-top: 14px;
  margin-bottom: 28px;
  color: var(--gray-500);
  font-size: 0.88rem;
  font-family: 'Cormorant Garamond', serif; /* CHANGED: Added signature elegant font style */
  font-style: italic;                  /* ADDED: Distinctive high-end subtext look */
}

/* ── VENUE FINDER BAR (City / Location / Venue Type) ──── */
.venue-finder-bar {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.finder-field {
  flex: 1 1 200px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}
.finder-field-select {
  cursor: pointer;
}
.finder-field-select:hover,
.finder-field-select:focus-within {
  background: var(--blue-50);
}
.finder-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
  line-height: 1;
}
.finder-field-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.finder-field-text label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.finder-static-value,
.finder-select-display {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-900);
}
/* The real <select> is stretched to cover the ENTIRE field box
   (icon + label + chevron included) so a click ANYWHERE on the
   field opens the dropdown — not just on the visible text.
   It's made invisible (opacity:0) and the .finder-select-display
   span (kept in sync via JS) shows the current value instead. */
.finder-select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  opacity: 0;
  padding: 0;
  cursor: pointer;
  z-index: 3;
}
.finder-select:focus { outline: none; }
.finder-chevron {
  color: var(--gray-500);
  font-size: 0.75rem;
  flex-shrink: 0;
  pointer-events: none;
}
.finder-divider {
  width: 1px;
  align-self: center;
  height: 34px;
  background: var(--gray-100);
  flex-shrink: 0;
}
.finder-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 0 26px;
  border-radius: var(--radius);
  transition: all var(--transition);
  margin-left: 8px;
}
.finder-btn:hover {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  box-shadow: var(--shadow-sm);
}
.finder-btn span { transition: transform var(--transition); }
.finder-btn:hover span { transform: translateX(3px); }

/* ── VENUE SEARCH BOX ────────────────────────────────── */
.venue-search-wrap {
  margin-bottom: 24px;
}
.venue-search-box {
  position: relative;
  max-width: 460px;
}
.venue-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--gray-500);
  pointer-events: none;
}
.venue-search-input {
  width: 100%;
  padding: 13px 42px 13px 44px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--gray-900);
  background: var(--white);
  transition: all var(--transition);
}
.venue-search-input::placeholder {
  color: var(--gray-500);
}
.venue-search-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}
.venue-search-clear {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gray-100);
  border: none;
  color: var(--gray-500);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.8rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.venue-search-clear:hover {
  background: var(--gray-300);
  color: var(--gray-900);
}
.venue-search-clear.show {
  display: flex;
}

/* ── VENUE CARDS ─────────────────────────────────────── */
.venue-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.venue-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  animation: fadeUp 0.4s both;
}
.venue-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.venue-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.venue-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.venue-card:hover .venue-card-img img { transform: scale(1.06); }
.venue-loc-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10,22,40,0.75);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.venue-card-body { padding: 24px; }
.venue-card-body h3 { margin-bottom: 8px; color: var(--blue-900); font-size: 1.2rem; }
.venue-card-area, .venue-card-capacity {
  font-size: 0.87rem;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.venue-card-desc { font-size: 0.88rem; color: var(--gray-600); margin: 10px 0 14px; line-height: 1.6; }
.venue-card-amenities { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.amenity-tag {
  background: var(--blue-50);
  color: var(--blue-600);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid var(--blue-100);
}
.venue-card-actions { display: flex; gap: 10px; }
.venue-action-btn {
  flex: 1;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  text-align: center;
  transition: all var(--transition);
  border: none;
}
.venue-action-btn.call {
  background: var(--gray-100);
  color: var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.venue-action-btn.call:hover { background: #dcfce7; color: #166534; }
.venue-action-btn.detail {
  background: var(--blue-600);
  color: var(--white);
}
.venue-action-btn.detail:hover { background: var(--blue-700); }

.no-venues { text-align: center; padding: 60px 24px; }
.no-venues span { font-size: 3rem; display: block; margin-bottom: 16px; }
.no-venues p { color: var(--gray-500); margin-bottom: 24px; }
.no-venues button { background: var(--blue-600); color: var(--white); padding: 12px 28px; border-radius: var(--radius-sm); font-weight: 600; border: none; cursor: pointer; }

.venue-card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #f59e0b;   /* gold/amber color */
  margin: 4px 0 8px;
}
.venue-card-rating span {
  color: var(--gray-500);
  font-weight: 400;
  font-size: 0.85rem;
}
/* ── VENDORS ──────────────────────────────────────────── */
.vendor-filter-wrap {
  margin-bottom: 40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.vendor-filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.vendor-tab {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  color: var(--gray-600);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 0.83rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  font-family: inherit;
}
.vendor-tab:hover { border-color: var(--blue-300); color: var(--blue-600); background: var(--blue-50); }
.vendor-tab.active { background: var(--blue-600); color: var(--white); border-color: var(--blue-600); }
.vendor-card.hidden { display: none; }
.vendor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.vendor-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  text-align: center;
}
.vendor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue-200); }
.vendor-icon { font-size: 3rem; display: block; margin-bottom: 16px; }
.vendor-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--blue-800); }
.vendor-card > p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 18px; line-height: 1.6; }
.vendor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 24px;
}
.vendor-tags li {
  background: var(--blue-50);
  color: var(--blue-600);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  border: 1px solid var(--blue-100);
}
.vendor-enquire {
  background: var(--blue-600);
  color: var(--white);
  padding: 10px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  border: none;
  width: 100%;
}
.vendor-enquire:hover { background: var(--blue-700); transform: translateY(-2px); }

/* ── VENDOR FEATURE CARDS (premium, image-rich) ───────── */
.vendor-feature-list {
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.vendor-feature-card {
  display: flex;
  align-items: stretch;
  gap: 40px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.vendor-feature-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-200);
  transform: translateY(-4px);
}
.vendor-feature-card.hidden { display: none; }
.vendor-feature-card:nth-child(even) { flex-direction: row-reverse; }

/* Media collage */
.vf-media {
  flex: 0 0 46%;
  display: flex;
  gap: 10px;
  min-width: 0;
}
.vf-media-main {
  flex: 1.4;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.vf-media-main img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.vf-media-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vf-media-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  transition: transform 0.5s ease;
}
.vendor-feature-card:hover .vf-media-main img,
.vendor-feature-card:hover .vf-media-side img { transform: scale(1.06); }

/* Content */
.vf-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.vf-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  background: var(--blue-50);
  color: var(--blue-600);
  border: 1px solid var(--blue-100);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.vf-icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.vf-icon {
  font-size: 2.1rem;
  flex-shrink: 0;
}
.vf-icon-row h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  color: var(--blue-900);
  margin: 0;
}
.vf-desc {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 20px;
}
.vf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}
.vf-tags li {
  background: var(--blue-50);
  color: var(--blue-600);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--blue-100);
}
.vf-enquire {
  align-self: flex-start;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: var(--white);
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  border: none;
}
.vf-enquire:hover { background: linear-gradient(135deg, var(--blue-700), var(--blue-600)); transform: translateY(-2px); box-shadow: var(--shadow); }

@media (max-width: 900px) {
  .vendor-feature-card,
  .vendor-feature-card:nth-child(even) {
    flex-direction: column;
  }
  .vf-media { flex: none; width: 100%; }
  .vf-media-main img { min-height: 220px; }
  .vendor-feature-card { padding: 20px; gap: 20px; }
}
@media (max-width: 480px) {
  .vf-media { flex-direction: column; }
  .vf-media-side { flex-direction: row; }
}

/* ── VENDORS HOME SECTION (premium) ───────────────────── */
.vendors-home-section {
  position: relative;
  background:
    radial-gradient(circle at 12% 8%, rgba(201,168,76,0.07) 0%, transparent 45%),
    radial-gradient(circle at 88% 92%, rgba(36,85,164,0.06) 0%, transparent 45%),
    var(--gray-50);
  overflow: hidden;
}
.vendors-home-glow {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.16) 0%, transparent 70%);
  pointer-events: none;
}
.vendors-home-section .section-tag {
  background: rgba(201,168,76,0.1);
  color: #a5822f;
  border-color: rgba(201,168,76,0.35);
}

.vendors-home-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.vendor-home-card {
  display: block;
  text-decoration: none;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.vendor-home-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 44px rgba(10,22,40,0.18), 0 0 0 1px rgba(201,168,76,0.35);
  border-color: var(--gold);
}

.vendor-home-img {
  position: relative;
  width: 100%;
  padding-top: 78%;
  overflow: hidden;
  background: var(--blue-800);
}
.vendor-home-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.vendor-home-card:hover .vendor-home-img img { transform: scale(1.1); }

.vendor-home-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.55) 0%, rgba(10,22,40,0.05) 45%, transparent 62%);
  transition: opacity 0.35s ease;
}

.vendor-home-body {
  padding: 20px 18px 18px;
  background: var(--white);
}

.vendor-home-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--blue-800);
  margin: 0 0 6px;
}
.vendor-home-body p {
  font-size: 0.84rem;
  color: var(--gray-500);
  line-height: 1.45;
  margin: 0 0 14px;
  min-height: 2.6em;
}
.vendor-home-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue-500);
  letter-spacing: 0.01em;
}
.vendor-home-link i {
  font-style: normal;
  transition: transform 0.3s ease;
}
.vendor-home-card:hover .vendor-home-link { color: var(--gold); }
.vendor-home-card:hover .vendor-home-link i { transform: translateX(4px); }

.vendors-home-cta {
  text-align: center;
  margin-top: 48px;
}

/* ── CONTACT ──────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-form-wrap h3, .contact-info-wrap h3 {
  font-size: 1.6rem;
  color: var(--blue-900);
  margin-bottom: 8px;
}
.form-subtitle { color: var(--gray-500); font-size: 0.95rem; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--gray-900);
  transition: border-color var(--transition);
  background: var(--white);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(59,114,200,0.12);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Contact Info */
.contact-info-wrap { padding-top: 8px; }
.contact-details { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 20px; }
.contact-detail-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-detail-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail-item strong { display: block; font-weight: 600; color: var(--blue-800); margin-bottom: 4px; font-size: 0.9rem; }
.contact-detail-item p { color: var(--gray-600); font-size: 0.9rem; line-height: 1.6; }
.social-section h4 { font-family: 'Outfit', sans-serif; font-weight: 600; color: var(--blue-800); margin-bottom: 14px; }
.social-icons { display: flex; flex-wrap: wrap; gap: 10px; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-50);
  color: var(--blue-700);
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  border: 1px solid var(--blue-100);
  transition: all var(--transition);
}
.social-btn:hover { background: var(--blue-600); color: var(--white); }

/* ── MODALS ───────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}
.modal-overlay.active { display: flex; animation: fadeIn 0.25s ease; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s ease;
}
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
  color: var(--gray-700);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--transition);
  border: none;
}
.modal-close:hover { background: rgba(0,0,0,0.15); }
.modal-img-wrap { position: relative; height: 260px; overflow: hidden; }
.modal-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.modal-location-badge {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(10,22,40,0.8);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
}
.modal-body { padding: 28px; }
.modal-body h2 { margin-bottom: 12px; color: var(--blue-900); }
.modal-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}
.modal-meta-row span { font-size: 0.88rem; color: var(--gray-600); }
.modal-body p { color: var(--gray-700); line-height: 1.7; margin-bottom: 24px; font-size: 0.95rem; }
.modal-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.modal-action-btn {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}
.modal-action-btn.outline {
  background: var(--gray-100);
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
}
.modal-action-btn.outline:hover { background: var(--gray-200); }
.modal-action-btn.primary {
  background: var(--blue-600);
  color: var(--white);
  flex: 1;
}
.modal-action-btn.primary:hover { background: var(--blue-700); }

/* Enquiry Modal */
.enquiry-modal { padding: 32px; max-width: 480px; }
.enquiry-modal h3 { margin-bottom: 6px; color: var(--blue-900); }
.enquiry-subject {
  color: var(--blue-500);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 24px;
  padding: 8px 14px;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--blue-400);
}

/* ── FOOTER ───────────────────────────────────────────── */
.footer {
  background: var(--blue-900);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-about { font-size: 0.9rem; line-height: 1.7; margin: 16px 0 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--blue-500); color: var(--white); transform: translateY(-2px); }
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-contact p { font-size: 0.88rem; margin-bottom: 10px; line-height: 1.6; }
.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* ── SCROLL TOP & TOAST ───────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 900;
  border: none;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--blue-700); transform: translateY(-2px); }

.toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--blue-800);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  z-index: 3000;
  opacity: 0;
  transition: all 0.35s ease;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── ANIMATIONS ───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── TABLET ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .venue-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { gap: 20px; }
  .vendor-grid { grid-template-columns: repeat(3, 1fr); }
  .vendors-home-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* ── MOBILE ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }

  /* Navbar */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  /* Hero */
  .hero-content {
    padding: 100px 24px 60px;
    margin-left: 0;
    max-width: 100%;
    text-align: center;
  }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }

  /* Page hero — extra top padding so content clears the fixed navbar on mobile */
  .page-hero-content { padding: 96px 24px 22px; }
  .page-hero { min-height: 0; }

  /* Cats */
  .cat-grid { grid-template-columns: 1fr; gap: 16px; }
  .cat-card { padding: 32px 24px 28px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; }

  /* Venues */
  .venue-cards-grid { grid-template-columns: 1fr; }
  .location-tabs { gap: 8px; }
  .loc-tab { padding: 8px 16px; font-size: 0.82rem; }

  /* Venue Finder Bar */
  .venue-finder-bar { flex-direction: column; padding: 10px; }
  .finder-field { flex: 1 1 auto; width: 100%; }
  .finder-divider { display: none; }
  .finder-btn { width: 100%; justify-content: center; padding: 14px 26px; margin-left: 0; margin-top: 4px; }

  /* Vendors */
  .vendor-grid { grid-template-columns: 1fr 1fr; }
  .vendor-filter-tabs { gap: 6px; }
  .vendor-tab { padding: 7px 13px; font-size: 0.78rem; }
  .vendors-home-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .vendor-home-body { padding: 18px 14px 16px; }
  .vendor-home-body h4 { font-size: 1.1rem; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* CTA */
  .cta-btns { flex-direction: column; align-items: center; }

  /* Modal */
  .modal { margin: 0; border-radius: var(--radius) var(--radius) 0 0; max-height: 95vh; }
  .modal-overlay { align-items: flex-end; }
  .modal-actions { flex-direction: column; }

  /* Scroll top */
  .scroll-top { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions button { width: 100%; text-align: center; }
  .why-grid { grid-template-columns: 1fr; }
}
.about-content{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:60px;
    margin-top:40px;
}

.about-text h3{
    margin:30px 0 15px;
    font-size:28px;
}

.about-text p{
    line-height:1.9;
    color:#666;
    margin-bottom:20px;
}

.about-features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
    margin-top:30px;
}

.feature-item{
    display:flex;
    gap:15px;
    align-items:flex-start;
}

.feature-item span{
    color:#B76E2B;
    font-size:22px;
    font-weight:bold;
}

.about-stats{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.about-stat-card{
    padding:30px 20px;
    border-radius:16px;
    text-align:center;
    background:#faf8f5;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.about-stat-card h3{
    color:#B76E2B;
    font-size:32px;
    margin-bottom:10px;
}

@media(max-width:768px){
    .about-content{
        grid-template-columns:1fr;
    }

    .about-features{
        grid-template-columns:1fr;
    }
}
.location-highlight{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin:25px 0;
}

.location-highlight div{
    background:#faf8f5;
    padding:12px 20px;
    border-radius:30px;
    border:1px solid #eee;
    font-weight:600;
    color:#B76E2B;
}

/* ====================================================
   VENUE DETAIL PAGE
   ==================================================== */

/* ── BREADCRUMB ──────────────────────────────────────── */
.vd-breadcrumb {
  background: var(--blue-50);
  border-bottom: 1px solid var(--blue-100);
  padding: 14px 0;
}
.vd-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 14px;
}
.vd-back-btn {
  background: none;
  border: 1.5px solid var(--blue-300);
  color: var(--blue-600);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.vd-back-btn:hover {
  background: var(--blue-600);
  color: var(--white);
  border-color: var(--blue-600);
}
.vd-breadcrumb-trail {
  font-size: 0.88rem;
  color: var(--gray-500);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ── GALLERY SECTION ────────────────────────────────── */
.vd-gallery-section {
  background: transparent;
  padding: 28px 0;
}
.vd-top-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 32px;
  align-items: start;
}
.vd-gallery-col { min-width: 0; }
.vd-gallery-main {
  position: relative;
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--blue-900);
}
.vd-gallery-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s ease;
}
.vd-gallery-badge {
  position: absolute;
  bottom: 18px;
  left: 20px;
  background: rgba(10,22,40,0.72);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(6px);
}

/* Thumbnail strip */
.vd-gallery-thumbs {
  display: flex;
  gap: 8px;
  padding: 10px 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.vd-gallery-thumbs::-webkit-scrollbar { display: none; }

.vd-thumb {
  flex: 0 0 100px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2.5px solid transparent;
  transition: border-color var(--transition), transform var(--transition);
  scroll-snap-align: start;
}
.vd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vd-thumb:hover { transform: translateY(-2px); }
.vd-thumb.active { border-color: var(--gold); }

/* ── DETAIL BODY ─────────────────────────────────────── */
.vd-detail-body {
  padding: 50px 0 80px;
}

/* Left main info */
.vd-name-top {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 14px;
}
.vd-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.vd-meta-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 1.05rem;
  color: var(--blue-800);
  font-weight: 500;
}
.vd-meta-icon { font-size: 1.15rem; }

.vd-section-block { margin-bottom: 40px; }
.vd-block-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--blue-900);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--blue-100);
}
.vd-desc-text {
  font-size: 1.15rem;
  color: var(--gray-700);
  line-height: 1.85;
}

/* Amenities grid */
.vd-amenities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.vd-amenity-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: border-color var(--transition), background var(--transition);
}
.vd-amenity-chip:hover {
  border-color: var(--blue-300);
  background: var(--blue-50);
}
.vd-amenity-icon { font-size: 1.2rem; }

/* ── ACTION CARD (right sticky) ─────────────────────── */
.vd-action-card {
  position: sticky;
  top: 100px;
}
.vd-action-card-inner {
  background: var(--white);
  border: 1.5px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vd-action-venue-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blue-900);
}
.vd-action-area {
  font-size: 1rem;
  color: var(--gray-500);
}
.vd-action-divider {
  height: 1px;
  background: var(--gray-300);
  margin: 6px 0 8px;
}
.vd-action-btn {
  display: block;
  width: 100%;
  padding: 17px 22px;
  border-radius: var(--radius-sm);
  font-size: 1.08rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.vd-btn-call {
  background: #16a34a;
  color: var(--white);
}
.vd-btn-call:hover { background: #15803d; transform: translateY(-1px); }

.vd-btn-enquire {
  background: var(--blue-600);
  color: var(--white);
}
.vd-btn-enquire:hover { background: var(--blue-700); transform: translateY(-1px); }

.vd-btn-outline {
  background: var(--white);
  color: var(--gray-700);
  border: 1.5px solid var(--gray-300);
}
.vd-btn-outline:hover {
  border-color: var(--blue-300);
  background: var(--blue-50);
  color: var(--blue-700);
}

.vd-action-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-top: 6px;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .vd-top-grid {
    grid-template-columns: 1fr;
  }
  .vd-action-card {
    position: static;
  }
  .vd-gallery-main img { height: 300px; }
}

@media (max-width: 600px) {
  .vd-gallery-main img { height: 230px; }
  .vd-meta-row { gap: 8px; }
  .vd-meta-chip { font-size: 0.80rem; padding: 7px 12px; }
  .vd-back-btn { font-size: 0.78rem; padding: 5px 12px; }
}

/* ── ZOOM HINT on vendor gallery main image ───────────── */
.vd-zoom-hint {
  position: absolute;
  bottom: 18px;
  right: 20px;
  background: rgba(10,22,40,0.72);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity var(--transition);
}
.vd-gallery-main:hover .vd-zoom-hint { opacity: 1; }

/* ── LIGHTBOX (full-screen image viewer) ──────────────── */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6,12,24,0.95);
  z-index: 3000;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.active { display: flex; animation: fadeIn 0.2s ease; }
.lightbox-img {
  max-width: 88vw;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  cursor: default;
}
.lightbox-close {
  position: absolute;
  top: 22px;
  right: 28px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media (max-width: 600px) {
  .lightbox-nav { width: 40px; height: 40px; font-size: 1.4rem; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 12px; right: 12px; }
}
@media (max-width: 768px) {
  /* Prevent horizontal overflow and fix container padding */
  body, html {
    overflow-x: hidden !important;
    width: 100%;
  }
  
  .container {
    padding: 0 16px;
    width: 100%;
    max-width: 100%;
  }

  .vendor-feature-card {
    flex-direction: column !important;
    padding: 16px;
    gap: 16px;
  }

  .vf-media {
    width: 100% !important;
    flex: none !important;
  }

  .vf-media-main img {
    min-height: 200px !important;
    max-height: 250px;
  }
  
  .vendor-grid {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 768px) {
  .page-hero-content {
    padding: 70px 16px 20px !important; 
  }
  
  .venue-page-hero {
    min-height: 120px !important;
  }
}

@media (max-width: 768px) {
  .vendor-feature-card {
    flex-direction: column !important;
    padding: 16px;
    gap: 16px;
  }

  .vf-media {
    width: 100% !important;
    flex: none !important;
    flex-direction: row !important; 
    gap: 8px;
    overflow: hidden;
  }

  .vf-media-main {
    flex: 2 !important;
  }

  .vf-media-side {
    flex: 1 !important;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .vf-media-main img, 
  .vf-media-side img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    min-height: unset !important;
  }

  .vf-media-main img {
    height: 180px !important;
  }

  .vf-media-side img {
    height: 86px !important;
  }
}

@media (max-width: 480px) {
  .vf-media {
    flex-direction: column !important;
  }
  
  .vf-media-side {
    flex-direction: row !important;
  }
  
  .vf-media-side img {
    height: 100px !important;
  }
}