/*
Theme Name: Indore Light
Theme URI: https://indore.city/
Author: Indore City
Description: Lightweight listing theme without Elementor.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: indore-light
*/

:root {
  /* ============ MAIN COLORS ============ */
  --bg: #ffffff;
  --text: #101828;
  --muted: #667085;
  --brand: #1f4bd8;
  --brand-dark: #1a3fae;
  --border: #e5e7eb;
  --card: #f8fafc;
  --shadow: 0 10px 30px rgba(16, 24, 40, 0.1);
  --radius: 14px;
  
  /* ============ ACCENT COLORS ============ */
  --warm-1: #f97316;
  --warm-2: #facc15;
  --warm-3: #22c55e;
  --cool-1: #38bdf8;
  --cool-2: #6366f1;

  /* ============ PROFESSIONAL PALETTE ============ */
  --primary-color: #0066cc;
  --primary-dark: #0052a3;
  --primary-light: #003d80;
  --secondary-text: #4b5563;
  --tertiary-text: #6b7280;
  --light-gray: #f9fafb;
  --border-light: #e5e7eb;
  
  /* ============ ACCENT COLORS FOR ICONS ============ */
  --icon-weather: #f59e0b;
  --icon-traffic: #ef4444;
  --icon-event: #8b5cf6;
  --icon-success: #10b981;
  
  /* ============ SPACING ============ */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 12px;
  --spacing-lg: 16px;
  --spacing-xl: 24px;
  --spacing-2xl: 32px;
  --spacing-3xl: 40px;
  
  /* ============ SHADOWS ============ */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 15px rgba(0, 102, 204, 0.2);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  
  /* ============ BORDER RADIUS ============ */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 14px;
  --radius-xl: 16px;
  --radius-full: 999px;
  
  /* ============ TRANSITIONS ============ */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, "Helvetica Neue", Arial, sans-serif;
  background: #fcfcff;
  color: var(--text);
  line-height: 1.6;
}

@keyframes indore-fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.muted {
  color: var(--muted);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--brand);
}

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

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 100%);
  border-bottom: 1px solid #e5e7eb;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #0066cc 0%, #0052a3 50%, #003d80 100%);
  opacity: 1;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
  position: relative;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-wrapper img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #1f2937;
  font-weight: 800;
  font-size: 18px;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 8px;
}

.logo-text:hover {
  color: #0066cc;
  background: rgba(0, 102, 204, 0.05);
}

.logo-icon {
  width: 28px;
  height: 28px;
  color: #0066cc;
  stroke-width: 2.5;
}

.logo-text-inner {
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: white;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
  border: none;
  cursor: pointer;
}

.btn-primary-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.btn-primary-sm:active {
  transform: translateY(0);
}

.nav-primary {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-primary ul {
  list-style: none;
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-primary li {
  position: relative;
}

.nav-primary .sub-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 200px;
  width: max-content;
  max-width: 360px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  z-index: 20;
  transform: translateY(-6px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  align-items: flex-start;
  text-align: left;
  overflow: visible;
  backdrop-filter: blur(4px);
}

.nav-primary li > .sub-menu::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -10px;
  right: -10px;
  height: 16px;
  background: transparent;
}

/* Third-level submenu (nested under .sub-menu) */
.nav-primary .sub-menu .sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 8px;
  min-width: 180px;
  width: max-content;
  max-width: 320px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  z-index: 25;
  transform: translateX(-6px);
  transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out, transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  align-items: flex-start;
  text-align: left;
  overflow: visible;
  backdrop-filter: blur(4px);
}

/* Hover buffer zone for third-level menu */
.nav-primary .sub-menu li > .sub-menu::before {
  content: "";
  position: absolute;
  top: -15px;
  right: 100%;
  width: 15px;
  bottom: -15px;
  height: auto;
  background: transparent;
  z-index: 26;
}

.nav-primary .sub-menu li:hover > .sub-menu,
.nav-primary .sub-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
  box-shadow: 0 16px 50px rgba(0, 102, 204, 0.15);
}

.nav-primary li:hover > .sub-menu,
.nav-primary li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  box-shadow: 0 16px 50px rgba(0, 102, 204, 0.15);
}

.nav-primary .sub-menu a {
  color: #4b5563;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 8px;
  white-space: nowrap;
  text-align: left;
  width: 100%;
  transition: all 0.2s ease;
  font-size: 14px;
}

.nav-primary .sub-menu a:hover {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 102, 204, 0.05) 100%);
  color: #0066cc;
  transform: translateX(2px);
}

.nav-primary a {
  color: #4b5563;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  text-transform: capitalize;
  position: relative;
  transition: all 0.3s ease;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.nav-primary a:hover {
  color: #0066cc;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.08) 0%, rgba(0, 102, 204, 0.04) 100%);
}

.nav-primary a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0066cc 0%, #0052a3 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-primary a:hover::after,
.nav-primary .current-menu-item > a::after,
.nav-primary .current-menu-ancestor > a::after {
  transform: scaleX(1);
}

.nav-primary .current-menu-item > a,
.nav-primary .current-menu-ancestor > a {
  color: #0066cc;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.12) 0%, rgba(0, 102, 204, 0.06) 100%);
}

.header-search {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header-search input {
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 999px;
  min-width: 220px;
  background: #fff;
}

.button,
input[type="submit"],
button {
  background: linear-gradient(135deg, var(--brand), var(--cool-2));
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
button:hover {
  background: linear-gradient(135deg, var(--brand-dark), var(--cool-1));
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(29, 78, 216, 0.2);
}

.button:focus-visible,
button:focus-visible,
input[type="submit"]:focus-visible {
  outline: 2px solid rgba(56, 189, 248, 0.6);
  outline-offset: 2px;
}

.hero {
  padding: 84px 0 56px;
  background-image:
    radial-gradient(circle at top, rgba(29, 78, 216, 0.12), transparent 50%),
    linear-gradient(180deg, #fff7ed, #ffffff),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply, normal, soft-light;
}

.hero-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  animation: indore-fade-up 0.6s ease both;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(24, 68, 239, 0.08);
  border: 1px solid rgba(24, 68, 239, 0.2);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-media {
  display: grid;
  gap: 12px;
}

.hero-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  max-height: 360px;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-badges span {
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-badges span:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(16, 24, 40, 0.12);
}

.hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 12px;
}

.hero p {
  color: var(--hero-paragraph-color, var(--muted));
  max-width: 680px;
}

.hero-search {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.hero-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin: 16px 0;
}

.hero-kpis .kpi {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: var(--shadow);
}

.hero-kpis .kpi strong {
  font-size: 18px;
  display: block;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.trust-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 600;
}

.trust-bar span {
  background: #fff;
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.action-chip {
  border: 1px solid var(--border);
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.action-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(16, 24, 40, 0.12);
}

.hero-search input {
  flex: 1 1 280px;
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: 999px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.stat {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  font-size: 20px;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
}

.cta {
  padding: 32px;
  border-radius: var(--radius);
  background: linear-gradient(120deg, #1d4ed8, #0ea5e9);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-banner .button {
  background: #fff;
  color: #1e40af;
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
}

.newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input {
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 999px;
  min-width: 220px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.hero-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.section {
  padding: 80px 0;
  position: relative;
}

.section:nth-child(4) {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.02) 0%, rgba(0, 82, 163, 0.01) 100%);
  border-top: 1px solid #e0e8ff;
  border-bottom: 1px solid #e0e8ff;
}

.section.alt {
  background: linear-gradient(180deg, #fff7ed, #ffffff);
}

/* ============ ARCHIVE LISTING PAGE ============ */
.archive-hero.premium {
  color: #1f2937;
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.archive-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 40px;
}

.archive-header {
  text-align: center;
  margin-bottom: 40px;
}

.archive-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -1px;
  color: #1f2937;
}

.archive-subtitle {
  font-size: 18px;
  color: #6b7280;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-weight: 500;
}

.premium-filter {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 12px;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 32px;
  align-items: center;
}

.filter-search {
  position: relative;
  display: flex;
  align-items: center;
  background: #f9fafb;
  border-radius: 10px;
  padding: 0 12px;
  border: 1px solid #f3f4f6;
}

.filter-icon {
  width: 18px;
  height: 18px;
  color: #9ca3af;
  flex-shrink: 0;
}

.filter-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 10px;
  font-size: 14px;
  color: #1f2937;
  outline: none;
}

.filter-input::placeholder {
  color: #d1d5db;
}

.filter-select-wrapper {
  position: relative;
}

.filter-select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: white;
  color: #4b5563;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px;
  padding-right: 32px;
}

.filter-select:hover {
  border-color: #0066cc;
  background-color: #f9fafb;
}

.filter-button {
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
  white-space: nowrap;
}

.filter-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.archive-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  background: linear-gradient(135deg, #f0f4ff 0%, #f8faff 100%);
  border: 2px solid #e0e8ff;
  border-radius: 12px;
}

.stat-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-size: 24px;
  font-weight: 800;
  color: #0066cc;
}

.stat-text {
  font-size: 12px;
  color: #6b7280;
  text-align: center;
  max-width: 100px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: #e0e8ff;
}

/* ============ LISTINGS SECTION ============ */
.listings-section {
  padding: 60px 0;
  background: #fafbfc;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #001a4d;
  margin: 0;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #0066cc 0%, #003d80 100%);
  border-radius: 2px;
}

.section-subtitle {
  color: #6b7280;
  font-size: 14px;
  margin: 8px 0 0 0;
  font-weight: 500;
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.no-results {
  text-align: center;
  padding: 80px 40px;
  background: white;
  border-radius: 16px;
  border: 2px solid #e5e7eb;
}

.no-results-icon {
  font-size: 64px;
  margin-bottom: 16px;
}

.no-results h3 {
  font-size: 24px;
  font-weight: 800;
  color: #1f2937;
  margin: 0 0 12px 0;
}

.no-results p {
  color: #6b7280;
  font-size: 16px;
  margin: 0 0 24px 0;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: white;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ============ PAGINATION STYLES ============ */
/* CSS Custom Properties for easy customization */
:root {
  --pagination-bg: #ffffff;
  --pagination-border: #e5e7eb;
  --pagination-text: #6b7280;
  --pagination-link: #4b5563;
  --pagination-link-hover-bg: #f3f4f6;
  --pagination-link-active-bg: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  --pagination-link-active-text: #ffffff;
  --pagination-radius: 8px;
  --pagination-padding: 8px 12px;
  --pagination-gap: 6px;
}

.nav-links,
.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--pagination-gap);
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Pagination Links */
.page-numbers,
.nav-links a,
.nav-links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: var(--pagination-padding);
  background: var(--pagination-bg);
  border: 1px solid var(--pagination-border);
  border-radius: var(--pagination-radius);
  color: var(--pagination-link);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
  cursor: pointer;
}

/* Hover State */
.page-numbers:hover:not(.dots):not(.current),
.nav-links a:hover {
  background: var(--pagination-link-hover-bg);
  border-color: #d1d5db;
  color: #0066cc;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Current/Active Page */
.page-numbers.current,
.nav-links .page-numbers.current {
  background: var(--pagination-link-active-bg);
  color: var(--pagination-link-active-text);
  border: 1px solid #0052a3;
  font-weight: 700;
  cursor: default;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* Disabled/Dots */
.page-numbers.dots,
.nav-links .dots {
  background: transparent;
  border: none;
  cursor: default;
  color: var(--pagination-text);
  font-weight: 500;
}

.page-numbers.dots:hover,
.nav-links .dots:hover {
  background: transparent;
  transform: none;
  box-shadow: none;
}

/* Previous/Next Navigation */
.nav-previous,
.nav-next {
  display: flex;
  gap: 4px;
}

.nav-previous a,
.nav-next a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-weight: 700;
}

.nav-previous a::before {
  content: "←";
}

.nav-next a::after {
  content: "→";
}

/* Responsive Pagination */
@media (max-width: 600px) {
  .nav-links,
  .pagination {
    gap: 4px;
  }

  .page-numbers,
  .nav-links a,
  .nav-links span {
    min-width: 32px;
    height: 32px;
    padding: 6px 8px;
    font-size: 13px;
  }

  /* Hide page numbers on very small screens, keep prev/next */
  .page-numbers:not(.current):not(.prev):not(.next):not(.dots) {
    display: none;
  }
}

/* ============ TAXONOMY CATEGORY PAGE ============ */
.taxonomy-hero.premium {
  color: #1f2937;
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.taxonomy-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 40px;
}

.taxonomy-header {
  text-align: center;
  margin-bottom: 40px;
}

.taxonomy-icon {
  display: inline-block;
  font-size: 56px;
  margin-bottom: 16px;
  animation: float 3s ease-in-out infinite;
}

.taxonomy-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -1px;
  color: #1f2937;
}

.taxonomy-description {
  font-size: 18px;
  color: #6b7280;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-weight: 500;
}

.taxonomy-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px;
  background: linear-gradient(135deg, #f0f4ff 0%, #f8faff 100%);
  border: 2px solid #e0e8ff;
  border-radius: 12px;
}

.meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.meta-label {
  font-size: 12px;
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.meta-value {
  font-size: 20px;
  font-weight: 800;
  color: #0066cc;
}

.meta-divider {
  width: 1px;
  height: 44px;
  background: #e0e8ff;
}

/* ============ TAXONOMY SECTION ============ */
.taxonomy-section {
  padding: 60px 0;
  background: #fafbfc;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .premium-filter {
    grid-template-columns: 1fr 1fr;
  }

  .filter-button {
    grid-column: 1 / -1;
  }

  .archive-title,
  .taxonomy-title {
    font-size: 44px;
  }

  .archive-stats,
  .taxonomy-meta {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .archive-hero-content,
  .taxonomy-hero-content {
    padding: 60px 20px;
  }

  .archive-title,
  .taxonomy-title {
    font-size: 36px;
  }

  .archive-subtitle,
  .taxonomy-description {
    font-size: 16px;
  }

  .premium-filter {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .filter-select-wrapper,
  .filter-button {
    grid-column: auto;
  }

  .listings-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
  }

  .archive-stats,
  .taxonomy-meta {
    flex-direction: column;
    gap: 12px;
  }

  .stat-divider,
  .meta-divider {
    width: 100%;
    height: 1px;
  }

  .taxonomy-icon {
    font-size: 40px;
  }
}

.section-title h2 {
  position: relative;
  padding-bottom: 8px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--warm-1), var(--warm-2), var(--warm-3), var(--cool-1));
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.mood-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.mood-card {
  padding: 28px;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.06) 0%, rgba(0, 82, 163, 0.03) 100%);
  border: 2px solid #e0e8ff;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative;
  overflow: hidden;
}

.mood-card:hover {
  transform: translateY(-6px);
  border-color: #0066cc;
  box-shadow: 0 16px 40px rgba(0, 102, 204, 0.15);
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 82, 163, 0.05) 100%);
}

.mood-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 12px;
}

.mood-card p {
  font-size: 14px;
  color: #6b7280;
  margin: 0 0 16px;
}

.steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.step-card {
  padding: 32px;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.06) 0%, rgba(0, 82, 163, 0.03) 100%);
  border: 2px solid #e0e8ff;
  border-radius: 18px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.6s ease-out;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 102, 204, 0.05) 100%);
  pointer-events: none;
}

.step-card:hover {
  transform: translateY(-10px);
  border-color: #0066cc;
  box-shadow: 0 24px 60px rgba(0, 102, 204, 0.25);
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.12) 0%, rgba(0, 82, 163, 0.06) 100%);
}

.step-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #1f2937;
  margin: 0;
}

.step-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 8px 0 0;
}

.pulse-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.pulse-card {
  padding: 28px;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.08) 0%, rgba(0, 82, 163, 0.04) 100%);
  border: 2px solid #e0e8ff;
  border-radius: 18px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.6s ease-out;
}

.pulse-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 102, 204, 0.05) 100%);
  pointer-events: none;
}

.pulse-card:hover {
  transform: translateY(-8px);
  border-color: #0066cc;
  box-shadow: 0 20px 50px rgba(0, 102, 204, 0.2);
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.12) 0%, rgba(0, 82, 163, 0.06) 100%);
}

.pulse-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 12px 0 8px;
  color: #1f2937;
}

.pulse-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

.pulse-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f4ff 0%, #f8faff 100%);
  border: 2px solid #dce7ff;
  box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
  font-size: 32px;
  margin-bottom: 16px;
  animation: pulse-icon 3s ease-in-out infinite;
}

.pulse-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.pulse-list li {
  font-size: 14px;
  color: #4b5563;
  padding: 6px 0;
  border-left: 3px solid #0066cc;
  padding-left: 12px;
  font-weight: 500;
}

.highlight-grid img {
  height: 240px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.highlight-grid .card:hover img {
  transform: scale(1.08);
}

.category-card img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card {
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 102, 204, 0.15);
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.12);
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.listing-card .card-media {
  display: block;
  position: relative;
}

.card-media-fallback {
  height: 180px;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}

.listing-card .card-title {
  font-size: 18px;
  line-height: 1.4;
}

.listing-card .contact-list a {
  color: var(--brand-dark);
  font-weight: 600;
}

.location-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(250, 204, 21, 0.15));
  border: 1px solid rgba(249, 115, 22, 0.3);
  font-weight: 700;
  color: #9a3412;
}

.location-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.card-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.card-meta span {
  background: var(--card);
  padding: 4px 10px;
  border-radius: 999px;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
}

.single-header {
  margin: 24px 0 10px;
}

.single-content {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 28px;
}

.listing-content {
  display: grid;
  gap: 18px;
}

.listing-section {
  margin-top: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
}

.listing-section h3 {
  margin-top: 0;
  font-size: 18px;
}

.rich-text p {
  color: var(--text);
  line-height: 1.7;
}

.listing-overview {
  border-left: 4px solid var(--brand);
}

.listing-hero {
  padding: 64px 0 32px;
  background: radial-gradient(circle at top, rgba(29, 78, 216, 0.12), transparent 50%),
    linear-gradient(180deg, #f8fafc, #ffffff);
}

.listing-theme-modern {
  background: linear-gradient(120deg, rgba(56, 189, 248, 0.18), rgba(99, 102, 241, 0.08)), #ffffff;
}

.listing-theme-vibrant {
  background: linear-gradient(120deg, rgba(249, 115, 22, 0.2), rgba(250, 204, 21, 0.12)), #ffffff;
}

.listing-theme-clean {
  background: linear-gradient(120deg, rgba(34, 197, 94, 0.16), rgba(56, 189, 248, 0.1)), #ffffff;
}

.listing-theme-elegant {
  background: linear-gradient(120deg, rgba(99, 102, 241, 0.14), rgba(15, 23, 42, 0.05)), #ffffff;
}

.listing-hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: center;
}

.listing-hero-image {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.listing-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.listing-hero-actions .button {
  padding: 10px 16px;
  border-radius: 12px;
}

.listing-tagline {
  font-size: 18px;
}

.listing-hero-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.listing-hero-facts div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: var(--shadow);
}

.listing-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
}

.listing-hero-facts strong {
  display: block;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge-verified {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
}

.badge-unverified {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--muted);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-links a {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 600;
  color: var(--brand-dark);
}

.share-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.share-links a {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 600;
  color: var(--brand-dark);
}

.listing-section {
  margin-top: 24px;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill-list li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-dark);
}

.listing-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.listing-gallery img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.highlights-bar {
  background: linear-gradient(120deg, rgba(24, 68, 239, 0.08), rgba(15, 23, 42, 0.03)), #ffffff;
  border: 1px solid rgba(24, 68, 239, 0.2);
}

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px 12px;
}

.highlight-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--brand-dark);
}

.highlight-list li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.16);
  color: #15803d;
  font-size: 12px;
  font-weight: 800;
}

.verify-lock {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  border: 1px dashed rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.04);
}

.verify-lock-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(239, 68, 68, 0.12);
  font-size: 20px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
}

.action-buttons {
  display: grid;
  gap: 8px;
}

.map-embed iframe {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 12px;
}

.rating-summary {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.review-card p {
  margin-bottom: 0;
}

.rating-score {
  font-size: 32px;
  font-weight: 800;
  color: var(--brand-dark);
}

.rating-stars {
  display: flex;
  gap: 2px;
  font-size: 16px;
}

.rating-stars .star {
  color: #e5e7eb;
}

.rating-stars .star.filled {
  color: #f59e0b;
}

.review-list {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.review-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.comment-form-rating {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rating-input {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 4px;
}

.rating-input input {
  display: none;
}

.rating-input label {
  cursor: pointer;
  font-size: 20px;
  color: #e5e7eb;
}

.rating-input input:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
  color: #f59e0b;
}

.inquiry-form {
  display: grid;
  gap: 8px;
}

.ai-search-card {
  display: grid;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.ai-search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.ai-search-form input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.ai-filter-row {
  display: grid;
  gap: 8px;
}

.ai-filter-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ai-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-pill {
  background: #f8fafc;
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-dark);
}

.trust-strip {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.trust-badges span {
  background: #f8fafc;
  border: 1px solid var(--border);
  padding: 8px 10px;
  border-radius: 12px;
  font-weight: 600;
  color: var(--brand-dark);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f4ff 0%, #f8faff 100%);
  border: 2px solid #dce7ff;
  box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.icon-badge svg {
  width: 28px;
  height: 28px;
  stroke: #0066cc;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-card .icon-badge,
.mood-card .icon-badge {
  margin-bottom: 16px;
}

.step-card:hover .icon-badge,
.trust-badges span:hover .icon-badge {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 16px 40px rgba(0, 102, 204, 0.3);
  background: linear-gradient(135deg, #dce7ff 0%, #e0e8ff 100%);
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.stat-card-lg {
  display: grid;
  gap: 6px;
  text-align: left;
}

.stat-card-lg strong {
  font-size: 28px;
}

.testimonial-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.testimonial-card {
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.faq-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.faq-card h3 {
  margin-top: 0;
}

@media (max-width: 860px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }
}

.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.claim-page {
  display: grid;
  gap: 16px;
}

.claim-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.claim-badge {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
}

.claim-perks {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: grid;
  gap: 10px;
}

.claim-perks ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.indore-form {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.indore-form input,
.indore-form textarea {
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 12px;
}

.indore-form select {
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
}

.claimed-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: grid;
  gap: 6px;
}

.notice {
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 12px;
  font-weight: 600;
}

.notice.success {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
}

/* Professional Claim Page Styling */
.claim-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.claim-hero-section {
  background: linear-gradient(135deg, var(--brand-color, #0066cc) 0%, #0052a3 100%);
  color: white;
  border-radius: 20px;
  padding: 60px 40px;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.claim-hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin: 12px 0;
  line-height: 1.2;
}

.claim-badge-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.claim-hero-text {
  font-size: 16px;
  opacity: 0.95;
  line-height: 1.6;
  margin: 16px 0 0;
}

.claim-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.stat-box strong {
  display: block;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
}

.stat-box span {
  font-size: 12px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .claim-hero-section {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 30px;
  }
  
  .claim-hero-content h1 {
    font-size: 32px;
  }
  
  .claim-hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.claim-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.claim-form-section {
  background: white;
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.claim-form {
  display: grid;
  gap: 20px;
  visibility: visible;
}

.form-group {
  display: grid;
  gap: 8px;
  visibility: visible;
}

.form-group label {
  font-weight: 600;
  color: #1f2937;
  display: block;
}

.form-hint {
  font-size: 13px;
  color: #6b7280;
  margin-top: -4px;
}

.form-hint a {
  color: var(--brand-color, #0066cc);
  text-decoration: none;
  font-weight: 600;
}

.form-hint a:hover {
  text-decoration: underline;
}

.claim-select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--border, #e5e7eb);
  border-radius: 10px;
  font-size: 14px;
  background: white;
  cursor: pointer;
  transition: all 0.2s ease;
  appearance: menulist;
  display: block;
  visibility: visible;
  color: #1f2937;
}

.claim-select:hover {
  border-color: #d1d5db;
}

.claim-select:focus {
  outline: none;
  border-color: var(--brand-color, #0066cc);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.selected-listing-card {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(34, 197, 94, 0.04) 100%);
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.selected-listing-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #22c55e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.selected-listing-info strong {
  display: block;
  color: #1f2937;
  margin-bottom: 4px;
}

.selected-listing-info p {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}

.business-type-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #0066cc;
  background: rgba(0, 102, 204, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.claim-btn {
  background: var(--brand-color, #0066cc) !important;
  color: white !important;
  padding: 14px 24px !important;
  border: none !important;
  border-radius: 10px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  width: 100%;
  text-align: center;
}

.claim-btn:hover {
  background: #0052a3 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3) !important;
}

.claim-benefits-section {
  background: white;
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  height: fit-content;
  top: 0;
  position: sticky;
}

.claim-benefits-section h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1f2937;
}

.benefits-grid {
  display: grid;
  gap: 16px;
}

.benefit-card {
  padding: 16px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  text-align: center;
  transition: all 0.2s ease;
}

.benefit-card:hover {
  background: #f3f4f6;
  border-color: var(--brand-color, #0066cc);
}

.benefit-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.benefit-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 6px;
}

.benefit-card p {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
}

@media (max-width: 968px) {
  .claim-container {
    grid-template-columns: 1fr;
  }
  
  .claim-benefits-section {
    position: static;
  }
}

/* ============ Professional Homepage Styling ============ */
/* ============ PREMIUM HERO SECTION ============ */
.hero.premium {
  color: #1f2937;
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

/* Hero Search Prominent Layout */
.hero.premium.hero-search-prominent {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero-search-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 80px 20px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-header-top {
  margin-bottom: 50px;
  animation: fadeInDown 0.8s ease-out;
  max-width: 1000px;
}

/* Animation Variations */
@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zoom {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes bounce {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.8; transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Apply animations dynamically based on data attribute */
[data-animation="fade"] .hero-header { animation: fade var(--hero-animation-duration, 0.8s) ease-out; }
[data-animation="fade"] .hero-headline { animation: fade var(--hero-animation-duration, 0.8s) ease-out 0.2s both; }
[data-animation="fade"] .hero-subheading { animation: fade var(--hero-animation-duration, 0.8s) ease-out 0.3s both; }
[data-animation="fade"] .hero-search-prominent-wrapper { animation: fade var(--hero-animation-duration, 0.8s) ease-out 0.4s both; }
[data-animation="fade"] .hero-quick-access { animation: fade var(--hero-animation-duration, 0.8s) ease-out 0.5s both; }
[data-animation="fade"] .hero-stats-bar { animation: fade var(--hero-animation-duration, 0.8s) ease-out 0.6s both; }

[data-animation="slide-up"] .hero-header { animation: slide-up var(--hero-animation-duration, 0.8s) ease-out; }
[data-animation="slide-up"] .hero-headline { animation: slide-up var(--hero-animation-duration, 0.8s) ease-out 0.2s both; }
[data-animation="slide-up"] .hero-subheading { animation: slide-up var(--hero-animation-duration, 0.8s) ease-out 0.3s both; }
[data-animation="slide-up"] .hero-search-prominent-wrapper { animation: slide-up var(--hero-animation-duration, 0.8s) ease-out 0.4s both; }
[data-animation="slide-up"] .hero-quick-access { animation: slide-up var(--hero-animation-duration, 0.8s) ease-out 0.5s both; }
[data-animation="slide-up"] .hero-stats-bar { animation: slide-up var(--hero-animation-duration, 0.8s) ease-out 0.6s both; }

[data-animation="zoom"] .hero-header { animation: zoom var(--hero-animation-duration, 0.8s) ease-out; }
[data-animation="zoom"] .hero-headline { animation: zoom var(--hero-animation-duration, 0.8s) ease-out 0.2s both; }
[data-animation="zoom"] .hero-subheading { animation: zoom var(--hero-animation-duration, 0.8s) ease-out 0.3s both; }
[data-animation="zoom"] .hero-search-prominent-wrapper { animation: zoom var(--hero-animation-duration, 0.8s) ease-out 0.4s both; }
[data-animation="zoom"] .hero-quick-access { animation: zoom var(--hero-animation-duration, 0.8s) ease-out 0.5s both; }
[data-animation="zoom"] .hero-stats-bar { animation: zoom var(--hero-animation-duration, 0.8s) ease-out 0.6s both; }

[data-animation="bounce"] .hero-header { animation: bounce var(--hero-animation-duration, 0.8s) ease-out; }
[data-animation="bounce"] .hero-headline { animation: bounce var(--hero-animation-duration, 0.8s) ease-out 0.2s both; }
[data-animation="bounce"] .hero-subheading { animation: bounce var(--hero-animation-duration, 0.8s) ease-out 0.3s both; }
[data-animation="bounce"] .hero-search-prominent-wrapper { animation: bounce var(--hero-animation-duration, 0.8s) ease-out 0.4s both; }
[data-animation="bounce"] .hero-quick-access { animation: bounce var(--hero-animation-duration, 0.8s) ease-out 0.5s both; }
[data-animation="bounce"] .hero-stats-bar { animation: bounce var(--hero-animation-duration, 0.8s) ease-out 0.6s both; }

[data-animation="pulse"] .hero-header { animation: pulse 2s ease-in-out infinite; }
[data-animation="pulse"] .hero-headline { animation: pulse 2.5s ease-in-out infinite; }
[data-animation="pulse"] .hero-subheading { animation: pulse 3s ease-in-out infinite; }
[data-animation="pulse"] .hero-search-prominent-wrapper { animation: pulse 3.5s ease-in-out infinite; }
[data-animation="pulse"] .hero-quick-access { animation: pulse 4s ease-in-out infinite; }
[data-animation="pulse"] .hero-stats-bar { animation: pulse 4.5s ease-in-out infinite; }

/* Prominent Search Bar Styling */
.search-bar-prominent {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.hero-search-prominent-wrapper {
  width: 100%;
  margin: 0 auto 40px;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero.premium::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: float-slow 20s ease-in-out infinite;
}

.hero.premium::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 82, 163, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: float-slow 25s ease-in-out infinite reverse;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 1;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 60px;
  animation: fadeInUp 0.8s ease-out;
}

/* Hero layout variations */
.hero-layout.position-left {
  grid-template-columns: 1fr 1.1fr;
}

.hero-layout.position-left .hero-content {
  order: 2;
}

.hero-layout.position-left .hero-media {
  order: 1;
}

.hero-layout.position-full {
  grid-template-columns: 1fr;
}

.hero-layout.position-full .hero-media {
  display: none;
}
  margin: 0 auto;
  padding: 120px 60px;
  animation: fadeInUp 0.8s ease-out;
}

/* Hero Header */
.hero-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-badge {
  display: inline-block;
  width: fit-content;
  background: linear-gradient(135deg, #0066cc 0%, #003d80 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3), 0 2px 8px rgba(0, 0, 0, 0.4);
  animation: slideInDown 0.6s ease-out;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.hero-trust-line {
  font-size: 14px;
  color: var(--hero-paragraph-color, #6b7280);
  font-weight: 500;
}

/* Hero Headline */
.hero-headline-wrapper {
  margin-bottom: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.hero-headline {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--hero-title-color, #0066cc) 0%, color-mix(in srgb, var(--hero-title-color, #0066cc) 80%, #000) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.hero-subheading {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
  max-width: 900px;
  color: var(--hero-paragraph-color, #4b5563);
  margin-left: auto;
  margin-right: auto;
}

/* Search Container - Prominent */
.hero-search.premium-search {
  margin: 0 auto;
  display: block;
  width: 100%;
}

.search-container {
  display: grid;
  gap: 12px;
  width: 100%;
}

.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: white;
  border-radius: 20px;
  padding: 12px 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  border: 2px solid transparent;
  width: 100%;
}
}

.search-wrapper:focus-within {
  box-shadow: 0 40px 120px rgba(0, 102, 204, 0.4);
  border-color: #0066cc;
  transform: translateY(-4px);
}

.search-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-left: 16px;
  color: #6b7280;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

.search-input {
  flex: 1;
  border: none;
  padding: 18px 14px;
  font-size: 18px;
  color: #1f2937;
  background: transparent;
  outline: none;
}

.search-input::placeholder {
  color: #d1d5db;
}

.search-button {
  background: linear-gradient(135deg, #0066cc 0%, #003d80 100%);
  color: white;
  border: none;
  border-radius: 14px;
  padding: 18px 50px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  margin-right: 8px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.35);
}

.search-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(0, 102, 204, 0.5);
}

.search-button:active {
  transform: translateY(-1px);
}

.search-tips {
  font-size: 13px;
  color: var(--hero-paragraph-color, #6b7280);
  font-weight: 500;
  text-align: center;
}

/* Quick Access */
.hero-quick-access {
  margin-bottom: 40px;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.access-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--hero-paragraph-color, #4b5563);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.quick-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 16px;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 14px;
  color: #1f2937;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.quick-action:hover {
  border-color: #0066cc;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.08) 0%, rgba(0, 102, 204, 0.03) 100%);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 102, 204, 0.2);
}

.action-icon {
  font-size: 28px;
  line-height: 1;
}

/* Hero Stats Bar */
.hero-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(240, 244, 255, 0.95) 0%, rgba(248, 250, 255, 0.95) 50%, rgba(240, 248, 255, 0.95) 100%);
  border: 2px solid #dce7ff;
  border-radius: 16px;
  margin-top: 40px;
  box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15), 0 2px 8px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  text-align: center;
}

.stat-icon {
  font-size: 28px;
  line-height: 1;
}

.stat-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-color, #0066cc);
  line-height: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 13px;
  color: var(--hero-paragraph-color, #6b7280);
  font-weight: 600;
  margin-top: 4px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent 0%, #dce7ff 50%, transparent 100%);
}

/* ===== TITLE SHADOW CLASSES ===== */
.title-shadow-none .hero-headline {
  text-shadow: none;
  filter: none;
}

.title-shadow-light .hero-headline {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.15));
}

.title-shadow-medium .hero-headline {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.title-shadow-strong .hero-headline {
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6), 0 8px 24px rgba(0, 0, 0, 0.5);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
}

.title-shadow-extra-strong .hero-headline {
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.8), 0 12px 32px rgba(0, 0, 0, 0.7);
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.8));
}

/* ===== PARAGRAPH SHADOW CLASSES ===== */
.paragraph-shadow-none .hero-subheading,
.paragraph-shadow-none .hero-trust-line,
.paragraph-shadow-none .search-tips {
  text-shadow: none;
  filter: none;
}

.paragraph-shadow-light .hero-subheading,
.paragraph-shadow-light .hero-trust-line,
.paragraph-shadow-light .search-tips {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.3));
}

.paragraph-shadow-medium .hero-subheading,
.paragraph-shadow-medium .hero-trust-line,
.paragraph-shadow-medium .search-tips {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.paragraph-shadow-strong .hero-subheading,
.paragraph-shadow-strong .hero-trust-line,
.paragraph-shadow-strong .search-tips {
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
}

/* Hero Media */
.hero-media {
  position: relative;
  height: 500px;
}

.hero-image-container {
  position: relative;
  height: 100%;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 102, 204, 0.3), 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: fadeInRight 0.8s ease-out 0.2s both;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

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

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.2) 0%, rgba(0, 82, 163, 0.1) 100%);
  pointer-events: none;
}

.image-badge-primary {
  position: absolute;
  top: 28px;
  right: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  color: #0066cc;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 102, 204, 0.2);
  animation: slideInDown 0.8s ease-out 0.6s both;
}

.image-floating-card {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  color: #1f2937;
  padding: 18px 24px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  max-width: 300px;
  animation: float 3s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.card-icon {
  font-size: 28px;
  line-height: 1;
}

.card-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.card-text small {
  font-size: 12px;
  color: #6b7280;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 80px 40px;
  }

  .hero-headline {
    font-size: 52px;
  }

  .hero-media {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .hero-layout {
    padding: 60px 24px;
  }

  .hero-headline {
    font-size: 40px;
  }

  .hero-subheading {
    font-size: 18px;
  }

  .quick-actions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats-bar {
    flex-direction: column;
    gap: 16px;
  }

  .stat-item {
    width: 100%;
    justify-content: center;
  }

  .stat-divider {
    display: none;
  }

  .hero-media {
    height: 300px;
  }

  .hero-headline-wrapper {
    margin-bottom: 24px;
  }
}



/* Section Header Styling */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 20px;
}

.section-title {
  flex: 1;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1f2937;
}

.section-subtitle {
  font-size: 15px;
  color: #6b7280;
  margin: 0;
}

.section-header .button {
  flex-shrink: 0;
  align-self: center;
}

/* Premium Trust Section */
.premium-trust-section {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.08) 0%, rgba(0, 82, 163, 0.04) 100%);
  border-top: 2px solid #e0e8ff;
  border-bottom: 2px solid #e0e8ff;
  position: relative;
  overflow: hidden;
}

.premium-trust-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.trust-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.trust-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #001a4d;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #0066cc 0%, #003d80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-content .muted.large {
  font-size: 16px;
  margin-bottom: 32px;
  color: #4b5563;
  line-height: 1.7;
}

.trust-badges-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  border: 2px solid #dce7ff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  color: #0066cc;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
}

.trust-badge-item:hover {
  transform: translateY(-4px);
  border-color: #0066cc;
  box-shadow: 0 12px 30px rgba(0, 102, 204, 0.2);
}

.badge-icon {
  display: flex;
  align-items: center;
  width: 20px;
  height: 20px;
}

.badge-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--brand-color, #0066cc);
  stroke-width: 2;
  fill: none;
}

.trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.trust-stat {
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  border: 2px solid #dce7ff;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.08);
}

.trust-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 102, 204, 0.03) 100%);
  pointer-events: none;
}

.trust-stat:hover {
  transform: translateY(-8px);
  border-color: #0066cc;
  box-shadow: 0 16px 40px rgba(0, 102, 204, 0.2);
}

.trust-stat strong {
  display: block;
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, #0066cc 0%, #003d80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.trust-stat span {
  font-size: 14px;
  color: #6b7280;
  font-weight: 600;
}

@media (max-width: 968px) {
  .trust-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .trust-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Step Cards */
.step-card {
  display: grid;
  gap: 12px;
  text-align: center;
  padding: 36px 28px;
  position: relative;
}

.step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0066cc 0%, #003d80 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  box-shadow: 0 12px 30px rgba(0, 102, 204, 0.35);
  border: 3px solid white;
}

/* Mood Cards */
.mood-grid {
  grid-template-columns: repeat(4, 1fr);
}

.mood-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 768px) {
  .mood-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Dual CTA Banner */
.cta-banner.dual-cta {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px;
}

.cta-item {
  display: grid;
  gap: 16px;
}

.cta-item h3 {
  margin: 0;
  font-size: 20px;
  color: #1f2937;
}

.cta-item p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
}

.cta-divider {
  width: 1px;
  background: #e5e7eb;
}

@media (max-width: 768px) {
  .cta-banner.dual-cta {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .cta-divider {
    display: none;
  }
}

/* Location Grid */
.location-grid {
  grid-template-columns: repeat(3, 1fr);
}

.location-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 24px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  text-decoration: none;
  color: #1f2937;
  transition: all 0.2s ease;
}

.location-box:hover {
  border-color: var(--brand-color, #0066cc);
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 102, 204, 0.02) 100%);
  transform: translateY(-2px);
}

.location-name {
  font-weight: 600;
  font-size: 15px;
}

.location-count {
  font-size: 13px;
  color: #6b7280;
}

@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Testimonial Section */
.testimonial-section {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 102, 204, 0.02) 100%);
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: white;
}

.testimonial-stars {
  font-size: 14px;
}

.testimonial-card p {
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

.testimonial-author {
  font-weight: 600;
  font-size: 13px;
  color: #1f2937;
}

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

/* FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.faq-item {
  padding: 24px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}

.faq-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 12px;
}

.faq-item p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

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

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
}

.newsletter-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  color: white;
  padding: 40px;
}

.newsletter-box h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 8px;
  color: white;
}

.newsletter-box .muted {
  color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  background: white;
  border-radius: 10px;
  padding: 4px;
}

.newsletter-form input {
  border: none;
  padding: 12px 16px;
  background: transparent;
  color: #1f2937;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #9ca3af;
}

.newsletter-form button {
  background: var(--brand-color, #0066cc);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-right: 4px;
}

.newsletter-form button:hover {
  background: #0052a3;
}

@media (max-width: 768px) {
  .newsletter-box {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .newsletter-form {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form button {
    width: 100%;
    margin-right: 0;
  }
}

/* Button Variants */
.button-small {
  padding: 11px 20px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
}

.button-secondary {
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%) !important;
  color: #0066cc !important;
  border: 2px solid #0066cc !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15) !important;
}

.button-secondary:hover {
  background: linear-gradient(135deg, #0066cc 0%, #003d80 100%) !important;
  color: white !important;
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.35) !important;
  transform: translateY(-2px) !important;
}

.claim-process-section {
  background: white;
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.claim-process-section h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
  color: #1f2937;
  text-align: center;
}

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

.process-step {
  text-align: center;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -12px;
  width: 24px;
  height: 2px;
  background: #e5e7eb;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--brand-color, #0066cc) 0%, #0052a3 100%);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
}

.process-step strong {
  display: block;
  font-size: 16px;
  color: #1f2937;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .process-step:not(:last-child)::after {
    display: none;
  }
}

.claim-payment-section {
  background: white;
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.claim-payment-section h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1f2937;
}

.payment-box {
  margin-top: 24px;
  padding: 24px;
  background: #f9fafb;
  border: 2px dashed #e5e7eb;
  border-radius: 12px;
}

.notice.error {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}

.payment-box {
  margin-top: 16px;
}

#indore-claim-pay-button {
  background: #0066cc;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  display: inline-block;
  min-width: 180px;
  text-align: center;
}

#indore-claim-pay-button:hover {
  background: #0052a3;
}

#indore-claim-pay-button:disabled {
  background: #999;
  cursor: not-allowed;
}

#indore-claim-pay-status {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 6px;
  display: none;
}

#indore-claim-pay-status:not(:empty) {
  display: block;
  background: #eff6ff;
  color: #0066cc;
  border: 1px solid #0066cc;
}

.payment-box p.muted {
  color: #666;
  font-size: 14px;
  margin: 16px 0;
  padding: 12px;
  background: #f5f5f5;
  border-left: 4px solid #ddd;
  border-radius: 4px;
}

.form-section {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.form-section h4 {
  margin: 0;
}

.dashboard-shell {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.dashboard-hero {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.dashboard-label {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(29, 78, 216, 0.12);
  color: var(--brand-dark);
  font-weight: 700;
  margin-bottom: 8px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.dashboard-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dashboard-actions .button-leads {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-color: #059669;
  color: white;
  position: relative;
}

.dashboard-actions .button-leads:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  border-color: #047857;
}

.dashboard-actions .button-leads .badge {
  display: inline-block;
  background: #ef4444;
  color: white;
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  margin-left: 6px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.stat-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  gap: 6px;
}

.stat-card.unread {
  background: linear-gradient(135deg, #fef3c7 0%, #fef08a 100%);
  border-color: #fbbf24;
}

.stat-card.unread strong {
  color: #d97706;
}

.stat-card .stat-label {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stat-card.unread .stat-label {
  color: #b45309;
}

.stat-card strong {
  font-size: 22px;
}

.dashboard-list {
  display: grid;
  gap: 12px;
}

.dashboard-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
}

.tips-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.dashboard-editor {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 8px;
}

.tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.tab-button {
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
}

.tab-button.active {
  background: linear-gradient(135deg, var(--brand), var(--cool-2));
  color: #fff;
  border-color: transparent;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: grid;
  gap: 12px;
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.theme-option {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.theme-option input {
  display: none;
}

.theme-thumb {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #f5f6f8;
}

.theme-thumb img {
  display: block;
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.theme-label {
  font-weight: 700;
  color: var(--text);
  font-size: 14px;
}

.theme-option input:checked + .theme-thumb {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(24, 68, 239, 0.2);
}

.theme-option input:checked + .theme-thumb + .theme-label {
  color: var(--brand);
}

.theme-option:hover {
  transform: translateY(-2px);
  border-color: var(--brand);
  box-shadow: 0 14px 30px rgba(24, 68, 239, 0.15);
}

.selected-listing {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
}

.listing-sidebar .sidebar-card {
  margin-top: 16px;
  padding: 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.sidebar {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--card);
}

.site-footer {
  background: linear-gradient(135deg, #0f172a 0%, #1a2d4d 50%, #1e3a8a 100%);
  padding: 80px 0 0;
  margin-top: 100px;
  color: #ffffff;
  position: relative;
  border-top: none;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
}

.footer-wrapper {
  display: flex;
  flex-direction: column;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 50px;
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
  animation: fadeInUp 0.8s ease-out;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-section h3,
.footer-section h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section h3 {
  font-size: 18px;
}

.footer-brand {
  margin-bottom: 8px;
}

.footer-brand h3 {
  margin: 0;
}

.footer-brand .custom-logo {
  max-width: 100%;
  height: auto;
}

.footer-description {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.85);
}

.footer-about {
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 16px;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-section ul li {
  margin: 0;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.footer-section ul li a::before {
  content: '';
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.footer-section ul li a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-section ul li a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.contact-item {
  font-size: 14px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact-item a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 13px;
  margin: 0;
  opacity: 0.85;
  color: rgba(255, 255, 255, 0.8);
}

.footer-copyright a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-copyright a:hover {
  color: #ffffff;
}

.footer-tagline {
  font-size: 13px;
  margin: 0;
  opacity: 0.85;
  color: rgba(255, 255, 255, 0.8);
  text-align: right;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 60px 0 0;
    margin-top: 80px;
  }

  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding: 40px 0;
  }

  .footer-about {
    max-width: 100%;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 16px;
  }

  .footer-copyright,
  .footer-tagline {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-section h3,
  .footer-section h4 {
    font-size: 15px;
  }

  .footer-section ul li a {
    font-size: 13px;
  }

  .contact-item {
    font-size: 13px;
  }
}

.contact-item a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-item a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom p {
  margin: 8px 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-bottom a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.site-footer .nav-primary ul {
  justify-content: center;
  margin-bottom: 14px;
}

@media (max-width: 860px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-search input {
    min-width: 180px;
    width: 100%;
  }

  .single-content {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   SINGLE LISTING PAGE STYLES
===================================================== */

.listing-hero {
  background: linear-gradient(180deg, rgba(0, 102, 204, 0.08) 0%, rgba(0, 82, 163, 0.04) 100%);
  padding: 50px 0;
  margin-top: 60px;
  border-bottom: 2px solid rgba(0, 102, 204, 0.1);
  position: relative;
}

.listing-hero.premium {
  background: linear-gradient(180deg, rgba(0, 102, 204, 0.04) 0%, rgba(0, 82, 163, 0.04) 100%);
}

.listing-hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.listing-hero-gallery {
  display: grid;
  gap: 12px;
}

.hero-main-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 102, 204, 0.2);
  height: 380px;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-main-image:hover {
  box-shadow: 0 30px 60px rgba(0, 102, 204, 0.25);
  transform: translateY(-4px);
}

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

.verified-badge-large {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.gallery-thumb {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  height: 80px;
  object-fit: cover;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-thumb:hover {
  border-color: var(--primary-color);
  transform: scale(1.08);
  box-shadow: 0 12px 24px rgba(0, 102, 204, 0.25);
}

.listing-hero-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.listing-meta-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.listing-category {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.category-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.location-badge {
  display: inline-block;
  background: rgba(0, 102, 204, 0.1);
  color: var(--primary-dark);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-radius: 12px;
  border: 1px solid #fbbf24;
  box-shadow: 0 4px 12px rgba(251, 146, 60, 0.15);
}

.stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 12px;
  font-weight: 600;
  color: #b45309;
}

/* ===== Business Stats ===== */

.business-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  padding: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border-radius: 14px;
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 12px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 10px;
  border: 1px solid rgba(0, 102, 204, 0.1);
  font-size: 13px;
  font-weight: 600;
  color: #1f2937;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: linear-gradient(135deg, #f1f5f9 0%, #e0e7ff 100%);
  border-color: var(--primary-color);
  box-shadow: 0 6px 16px rgba(0, 102, 204, 0.12);
  transform: translateY(-2px);
}

.stat-icon {
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 82, 163, 0.08) 100%);
  border-radius: 8px;
  animation: pulse-icon 2.5s ease-in-out infinite;
}

.stat-item.trending .stat-icon {
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.15) 0%, rgba(255, 140, 0, 0.1) 100%);
  animation: bounce-fire 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}

.stat-text {
  line-height: 1.5;
  font-size: 12px;
  color: #6b7280;
}

.stat-item strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

@keyframes pulse-icon {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(0.95);
  }
}

@keyframes bounce-fire {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-4px) scale(1.1);
  }
}

/* ===== Listing Tabs ===== */

.listing-tabs-container {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.listing-tabs-nav {
  display: flex;
  gap: 0;
  padding: 0;
  background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
  border-bottom: 2px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tab-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 20px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: #6b7280;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
}

.tab-nav-btn:hover {
  color: var(--primary-color);
  background: rgba(0, 102, 204, 0.05);
}

.tab-nav-btn.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
  background: white;
}

.tab-icon {
  font-size: 16px;
  line-height: 1;
}

.tab-label {
  font-weight: 600;
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
  padding: 32px;
}

.tab-content.active {
  display: block;
}

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

/* ===== Booking Content ===== */

.booking-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.booking-card {
  padding: 28px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.booking-card:hover {
  box-shadow: 0 8px 24px rgba(0, 102, 204, 0.12);
  transform: translateY(-4px);
  border-color: var(--primary-color);
}

.booking-icon {
  font-size: 40px;
  margin-bottom: 12px;
  display: inline-block;
}

.booking-card h3 {
  margin: 12px 0 8px 0;
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
}

.booking-card p {
  margin: 0 0 20px 0;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

.hours-booking {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.hours-booking li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 102, 204, 0.1);
  font-size: 13px;
}

.hours-booking li:last-child {
  border-bottom: none;
}

.hours-booking span {
  color: #6b7280;
  font-weight: 500;
}

.hours-booking strong {
  color: var(--primary-color);
  font-weight: 700;
}

.listing-title {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #0f172a 0%, #1f2937 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.listing-tagline {
  font-size: 18px;
  color: #6b7280;
  margin: 0;
}

.highlights-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-block;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #78350f;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.quick-facts {
  display: grid;
  gap: 12px;
}

.fact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  border-radius: 12px;
  border: 1px solid rgba(0, 102, 204, 0.1);
  transition: all 0.3s ease;
}

.fact:hover {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
}

.fact-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #9ca3af;
  letter-spacing: 0.5px;
}

.fact-value {
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
}

.action-buttons-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:active::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 102, 204, 0.4);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 82, 163, 0.08) 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 102, 204, 0.2);
}

.btn-secondary:active {
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
}

/* ===== Details Section ===== */

.listing-details-section {
  padding: 40px 0;
}

.listing-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
}

.listing-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: linear-gradient(135deg, #e0f2fe 0%, #cffafe 100%);
  border: 2px solid #06b6d4;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.15);
}

.banner-icon {
  font-size: 32px;
}

.banner-content {
  flex: 1;
}

.banner-content h3 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 700;
  color: #0c4a6e;
}

.banner-content p {
  margin: 0;
  font-size: 14px;
  color: #075985;
}

/* ===== Content Sections ===== */

.content-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.content-section h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.rich-text-content {
  color: #4b5563;
  line-height: 1.8;
  font-size: 15px;
}

.rich-text-content p {
  margin: 0 0 14px 0;
}

/* ===== Facilities Grid ===== */

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

.facility-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.facility-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.facility-card:hover {
  box-shadow: 0 12px 32px rgba(0, 102, 204, 0.15);
  transform: translateY(-6px);
  border-color: var(--primary-color);
}

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

.facility-card h3 {
  margin: 0 0 14px 0;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

.facility-list {
  margin: 0;
  padding-left: 20px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.facility-list li {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.6;
}

/* ===== Info Grid ===== */

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.info-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
}

.info-card h3 {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
}

.info-card p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* ===== Trust Grid ===== */

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.trust-icon {
  font-size: 32px;
}

.trust-card h4 {
  margin: 0 0 6px 0;
  font-size: 15px;
  font-weight: 700;
  color: #1f2937;
}

.trust-card p {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}

.cert-list {
  margin: 0;
  padding-left: 16px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cert-list li {
  font-size: 13px;
  color: #6b7280;
}

/* ===== FAQ Accordion ===== */

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  transition: all var(--transition-fast);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px;
  cursor: pointer;
  background: #f9fafb;
  transition: all var(--transition-fast);
}

.faq-question:hover {
  background: #f3f4f6;
}

.faq-question strong {
  font-size: 15px;
  color: #1f2937;
  flex: 1;
}

.faq-toggle {
  font-size: 20px;
  color: var(--primary-color);
  font-weight: 700;
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 16px 16px 16px;
  margin: 0;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* ===== Reviews Section ===== */

.rating-summary-large {
  display: flex;
  justify-content: center;
  margin: 20px 0 30px 0;
}

.rating-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 30px 40px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: 16px;
  min-width: 200px;
}

.rating-number {
  font-size: 48px;
  font-weight: 800;
  color: #92400e;
}

.rating-stars-large {
  display: flex;
  gap: 2px;
  font-size: 18px;
}

.rating-stars-large .star.filled {
  color: #f59e0b;
}

.rating-stars-large .star:not(.filled) {
  color: #e5e7eb;
}

.rating-total {
  font-size: 14px;
  color: #b45309;
  font-weight: 600;
}

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

.review-item {
  padding: 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.review-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.review-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 10px;
}

.review-head strong {
  font-size: 15px;
  color: #1f2937;
}

.review-stars {
  display: flex;
  gap: 2px;
  font-size: 14px;
  margin-top: 4px;
}

.review-stars .star.filled {
  color: #f59e0b;
}

.review-stars .star:not(.filled) {
  color: #e5e7eb;
}

.review-date {
  font-size: 13px;
  color: #9ca3af;
}

.review-item p {
  margin: 0;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}

.muted {
  color: #9ca3af;
  font-size: 14px;
  text-align: center;
  padding: 20px;
}

/* ===== Review Form ===== */

.review-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-top: 20px;
}

.review-form textarea,
.review-form input[type="text"],
.review-form input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  box-sizing: border-box;
  transition: all var(--transition-fast);
}

.review-form textarea:focus,
.review-form input[type="text"]:focus,
.review-form input[type="email"]:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.review-form .submit {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.review-form .submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* ===== Sidebar ===== */

.listing-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-section {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.sidebar-section:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 102, 204, 0.3);
}

.sidebar-section h3 {
  margin: 0 0 14px 0;
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-section h4 {
  margin: 0 0 10px 0;
  font-size: 15px;
  font-weight: 700;
  color: #1f2937;
}

.sticky-sidebar {
  position: sticky;
  top: 80px;
}

/* ===== Contact Section ===== */

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #9ca3af;
  letter-spacing: 0.5px;
}

.detail-value {
  font-size: 14px;
  color: #1f2937;
  word-break: break-word;
}

.detail-value a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.detail-value a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* ===== Hours Section ===== */

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.hour-row:last-child {
  border-bottom: none;
}

.hour-row span {
  font-size: 13px;
  color: #6b7280;
}

.hour-row strong {
  font-size: 14px;
  color: #1f2937;
}

/* ===== Map Section ===== */

.map-container {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 250px;
  border: none;
}

/* ===== Inquiry Form ===== */

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inquiry-form input,
.inquiry-form textarea {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  box-sizing: border-box;
  transition: all var(--transition-fast);
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.inquiry-form button {
  margin-top: 4px;
}

/* ===== Share Section ===== */

.share-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  color: white;
  text-decoration: none;
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
}

.share-btn.facebook {
  background: #1f2937;
}

.share-btn.whatsapp {
  background: #25d366;
}

.share-btn.twitter {
  background: #1f2937;
}

.share-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ===== Social Links ===== */

.social-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.social-link {
  display: block;
  padding: 8px 12px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  transition: all var(--transition-fast);
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* ===== Verification Badge ===== */

.verification-badge {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 2px solid #6ee7b7;
  text-align: center;
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.12);
}

.badge-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.verification-badge h4 {
  margin: 0 0 4px 0;
  font-size: 15px;
  font-weight: 700;
  color: #065f46;
}

.verification-badge p {
  margin: 0;
  font-size: 12px;
  color: #047857;
}

/* ===== Responsive ===== */

@media (max-width: 1024px) {
  .listing-hero-content {
    grid-template-columns: 1fr;
  }

  .listing-layout {
    grid-template-columns: 1fr;
  }

  .facilities-grid,
  .info-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .sticky-sidebar {
    position: static;
  }

  .business-stats {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px;
  }

  .stat-item {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .stat-icon {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  .stat-item strong {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .listing-title {
    font-size: 28px;
  }

  .listing-tagline {
    font-size: 16px;
  }

  .hero-gallery-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }

  .action-buttons-hero {
    grid-template-columns: 1fr;
  }

  .content-section h2 {
    font-size: 20px;
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .share-buttons {
    grid-template-columns: repeat(3, 1fr);
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .listing-tabs-nav {
    gap: 0;
  }

  .tab-nav-btn {
    flex: 1;
    padding: 12px 10px;
    font-size: 12px;
  }

  .tab-label {
    display: none;
  }

  .tab-content {
    padding: 20px;
  }

  .booking-info {
    grid-template-columns: 1fr;
  }

  /* Today in Indore - Mobile */
  .pulse-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pulse-card {
    padding: 20px;
  }

  .pulse-icon {
    width: 56px;
    height: 56px;
    font-size: 28px;
  }

  .mood-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
  }

  .mood-card {
    padding: 20px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .section-header h2::after {
    width: 48px;
  }

  /* Footer Responsive */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    font-size: 12px;
  }

  .footer-section h3 {
    font-size: 18px;
  }

  .footer-section h4 {
    font-size: 16px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }}

/* Enhanced Animations */
@keyframes float-slow {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-30px) translateX(10px);
  }
}

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

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Menu Toggle Styles */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 51;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  height: 24px;
}

.hamburger-icon .line {
  width: 100%;
  height: 2.5px;
  background: #4b5563;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-toggle[aria-expanded="true"] .line-1 {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle[aria-expanded="true"] .line-2 {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .line-3 {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Navbar */
@media (max-width: 1024px) {
  .header-inner {
    padding: 12px 0;
    gap: 16px;
  }

  .nav-primary ul {
    gap: 6px;
  }

  .nav-primary a {
    padding: 6px 10px;
    font-size: 13px;
  }

  .nav-primary .sub-menu {
    min-width: 180px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .header-inner {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .header-left {
    flex: 1;
    min-width: 0;
  }

  .header-right {
    order: 3;
    width: 100%;
    margin-top: 12px;
  }

  .header-right .btn-primary-sm {
    flex: 1;
    justify-content: center;
  }

  .nav-primary {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    backdrop-filter: blur(10px);
    z-index: 49;
    transition: left 0.3s ease;
    flex-direction: column;
    padding-top: 70px;
    overflow-y: auto;
  }

  .nav-primary.is-open {
    left: 0;
  }

  .nav-primary ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .nav-primary li {
    width: 100%;
  }

  .nav-primary a {
    display: block;
    width: 100%;
    padding: 14px 20px;
    border-radius: 0;
    font-size: 16px;
    text-transform: none;
    border-bottom: 1px solid #e5e7eb;
  }

  .nav-primary a::after {
    display: none;
  }

  .nav-primary a:hover {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.12) 0%, rgba(0, 102, 204, 0.06) 100%);
    color: #0066cc;
    padding-left: 24px;
  }

  .nav-primary .sub-menu {
    position: static;
    top: auto;
    left: auto;
    background: #f8faff;
    border: none;
    border-left: 3px solid #0066cc;
    border-radius: 0;
    padding: 0;
    flex-direction: column;
    gap: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    flex-direction: column;
    width: 100%;
    margin: 0;
  }

  .nav-primary li.menu-item-has-children > a::after {
    content: "▶";
    position: static;
    display: inline-block;
    float: right;
    transform: none;
    transform-origin: none;
    background: none;
    height: auto;
    width: auto;
    font-size: 12px;
    color: #0066cc;
  }

  .nav-primary li.menu-item-has-children.is-expanded > a::after {
    transform: rotate(90deg);
  }

  .nav-primary .sub-menu.is-open {
    display: flex;
  }

  .nav-primary .sub-menu a {
    padding: 12px 20px 12px 40px;
    border: none;
    border-bottom: 1px solid rgba(0, 102, 204, 0.1);
    font-size: 14px;
  }

  .nav-primary .sub-menu a:hover {
    background: rgba(0, 102, 204, 0.08);
    transform: none;
  }

  .nav-primary li:hover > .sub-menu,
  .nav-primary li:focus-within > .sub-menu {
    box-shadow: none;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 10px 0;
    gap: 12px;
  }

  .logo-text {
    font-size: 16px;
    padding: 6px 8px;
  }

  .logo-icon {
    width: 24px;
    height: 24px;
  }

  .nav-primary {
    padding-top: 60px;
  }

  .nav-primary a {
    padding: 12px 16px;
    font-size: 15px;
  }

  .nav-primary .sub-menu a {
    padding: 10px 16px 10px 36px;
  }

  .header-right .btn-primary-sm {
    padding: 10px 12px;
    font-size: 13px;
  }
}

/* ===== Professional Listing Card Styles ===== */
.listings-grid-pro {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin: 40px 0;
}

.listing-card-pro {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.listing-card-pro:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
  border-color: #0066cc;
}

/* Image Section */
.listing-card-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #f0f4f8, #e8ecf1);
  overflow: hidden;
}

.listing-card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

/* Badges */
.listing-card-category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 102, 204, 0.95);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
  z-index: 2;
}

.listing-card-trending-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #ff6b35;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  backdrop-filter: blur(8px);
  z-index: 2;
}

/* Content Section */
.listing-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Title */
.listing-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #001a4d;
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.listing-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.listing-card-title a:hover {
  color: #0066cc;
}

/* Rating */
.listing-card-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6b7280;
}

.listing-card-rating .stars {
  color: #f59e0b;
  letter-spacing: 1px;
}

.listing-card-rating .review-count {
  font-weight: 600;
  color: #001a4d;
}

/* Location */
.listing-card-location {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.4;
  margin: 4px 0;
}

.listing-card-location .location-icon {
  flex-shrink: 0;
  font-size: 16px;
}

.listing-card-location .location-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

/* Description */
.listing-card-description {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 2px 0;
}

/* Details Section */
.listing-card-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
  margin: 8px 0;
  font-size: 13px;
}

.listing-card-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.listing-card-detail-item .detail-icon {
  flex-shrink: 0;
  font-size: 16px;
  margin-top: 2px;
}

.listing-card-detail-item .detail-content {
  flex-grow: 1;
  color: #6b7280;
  line-height: 1.3;
}

.listing-card-detail-item .detail-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #9ca3af;
  margin-bottom: 2px;
}

.listing-card-detail-item .detail-value {
  display: block;
  color: #001a4d;
  font-weight: 600;
}

.listing-card-detail-item a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.listing-card-detail-item a:hover {
  color: #0052a3;
  text-decoration: underline;
}

/* Footer Actions */
.listing-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
}

.listing-card-footer .btn-view-details {
  flex: 1;
  padding: 10px 16px;
  background: linear-gradient(135deg, #0066cc, #0052a3);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.listing-card-footer .btn-view-details:hover {
  background: linear-gradient(135deg, #0052a3, #003d7a);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
  transform: translateY(-2px);
}

.listing-card-footer .btn-website {
  width: 44px;
  height: 44px;
  padding: 0;
  background: #f3f4f6;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  color: #0066cc;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.listing-card-footer .btn-website:hover {
  background: #0066cc;
  color: #fff;
  border-color: #0066cc;
  transform: translateY(-2px);
}

/* ===== Category Hero Section ===== */
.listing-category-hero {
  position: relative;
  padding: 80px 0 60px;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.listing-category-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.listing-category-hero .hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-category-hero .hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 26, 77, 0.7), rgba(0, 102, 204, 0.5));
  z-index: 1;
}

.listing-category-hero .container {
  position: relative;
  z-index: 2;
}

.category-hero-content {
  max-width: 900px;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}

.category-icon-large {
  font-size: 80px;
  line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.category-header-text {
  flex: 1;
}

.category-title {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px 0;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.category-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.6;
}

/* Category Meta Grid */
.category-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-meta-item {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.category-meta-item:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
}

.category-meta-item .meta-icon {
  font-size: 32px;
  line-height: 1;
}

.category-meta-item .meta-info {
  display: flex;
  flex-direction: column;
}

.category-meta-item .meta-value {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.category-meta-item .meta-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ===== Category Listing Section ===== */
.listing-category-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f9fafb, #f3f4f6);
}

.category-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 30px;
}

.category-section-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #001a4d;
  margin: 0;
  line-height: 1.2;
}

.category-section-header .section-subtitle {
  font-size: 16px;
  color: #6b7280;
  margin: 8px 0 0 0;
}

.section-filters {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.section-filters .filter-label {
  font-size: 14px;
  font-weight: 600;
  color: #001a4d;
  white-space: nowrap;
}

.section-filters .sort-select {
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #fff;
  color: #001a4d;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.section-filters .sort-select:hover,
.section-filters .sort-select:focus {
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
  outline: none;
}

/* Pagination */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin: 60px 0 0 0;
  padding-top: 40px;
  border-top: 1px solid #e5e7eb;
}

.pagination-wrapper .page-numbers {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pagination-wrapper .page-numbers a,
.pagination-wrapper .page-numbers span {
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  color: #001a4d;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-block;
}

.pagination-wrapper .page-numbers a:hover {
  background: #0066cc;
  border-color: #0066cc;
  color: #fff;
}

.pagination-wrapper .page-numbers .current {
  background: #0066cc;
  border-color: #0066cc;
  color: #fff;
}

/* No Results Card */
.no-results-card {
  text-align: center;
  padding: 80px 40px;
  background: #fff;
  border-radius: 16px;
  border: 2px dashed #e5e7eb;
}

.no-results-card .no-results-icon {
  font-size: 64px;
  margin-bottom: 20px;
  line-height: 1;
}

.no-results-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #001a4d;
  margin: 0 0 12px 0;
}

.no-results-card p {
  font-size: 16px;
  color: #6b7280;
  margin: 8px 0;
}

.no-results-card .no-results-hint {
  font-size: 14px;
  color: #9ca3af;
  margin: 12px 0 24px 0;
}

.no-results-card .btn-primary {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(135deg, #0066cc, #0052a3);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.no-results-card .btn-primary:hover {
  background: linear-gradient(135deg, #0052a3, #003d7a);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* ===== Responsive Cards ===== */
@media (max-width: 1024px) {
  .listings-grid-pro {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
  }

  .category-meta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-header {
    gap: 24px;
  }

  .category-icon-large {
    font-size: 60px;
  }

  .category-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .listings-grid-pro {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
  }

  .listing-card-pro {
    border-radius: 12px;
  }

  .listing-card-image-wrapper {
    height: 180px;
  }

  .listing-card-content {
    padding: 16px;
    gap: 12px;
  }

  .listing-card-title {
    font-size: 16px;
  }

  .listing-card-details {
    gap: 10px;
    padding: 12px 0;
  }

  .category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
  }

  .category-icon-large {
    font-size: 50px;
  }

  .category-title {
    font-size: 28px;
  }

  .category-description {
    font-size: 16px;
  }

  .category-meta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .category-meta-item {
    padding: 16px;
  }

  .category-meta-item .meta-value {
    font-size: 18px;
  }

  .category-section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .category-section-header h2 {
    font-size: 24px;
  }

  .section-filters {
    width: 100%;
  }

  .listing-category-hero {
    padding: 60px 0 40px;
    min-height: 400px;
  }
}

@media (max-width: 480px) {
  .listings-grid-pro {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 24px 0;
  }

  .listing-card-image-wrapper {
    height: 160px;
  }

  .listing-card-content {
    padding: 14px;
    gap: 10px;
  }

  .listing-card-title {
    font-size: 15px;
  }

  .listing-card-details {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px 0;
  }

  .listing-card-footer {
    gap: 8px;
  }

  .listing-card-footer .btn-website {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .category-meta-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .category-icon-large {
    font-size: 40px;
  }

  .category-title {
    font-size: 22px;
  }

  .category-description {
    font-size: 14px;
  }

  .category-meta-item {
    padding: 12px;
  }

  .category-section-header h2 {
    font-size: 20px;
  }

  .section-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .section-filters .filter-label {
    text-align: left;
  }

  .section-filters .sort-select {
    width: 100%;
  }

  .no-results-card {
    padding: 60px 20px;
  }

  .no-results-card h3 {
    font-size: 20px;
  }

  .listing-category-hero {
    padding: 40px 0 30px;
    min-height: 300px;
  }
}

/* ===== DESIGN V1 - PREMIUM SEARCH-FOCUSED HOMEPAGE ===== */

/* Hero Section V1 */
.hero-v1-premium {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-v1-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(248, 250, 255, 0.92) 0%, rgba(240, 244, 255, 0.88) 50%, rgba(224, 232, 255, 0.92) 100%);
  z-index: 1;
  backdrop-filter: blur(2px);
}

.hero-v1-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.hero-v1-header {
  margin-bottom: 50px;
}

.hero-v1-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.12) 0%, rgba(0, 102, 204, 0.08) 100%);
  border: 1px solid rgba(0, 102, 204, 0.3);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: #0066cc;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  animation: float-badge 3s ease-in-out infinite;
}

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

.hero-v1-title {
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 20px;
  background: linear-gradient(135deg, var(--hero-title-color, #0066cc) 0%, color-mix(in srgb, var(--hero-title-color, #0066cc) 80%, #000) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  position: relative;
  animation: text-shimmer 0.8s ease-out forwards;
}

@keyframes text-shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 0 0;
  }
}

.hero-v1-subtitle {
  font-size: 18px;
  color: var(--hero-paragraph-color, #4b5563);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 50px;
  font-weight: 500;
}

/* Search Form V1 */
.hero-v1-search-wrapper {
  margin-bottom: 50px;
}

.hero-v1-search-form {
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 102, 204, 0.15);
  transition: all 0.3s ease;
}

.hero-v1-search-form:focus-within {
  box-shadow: 0 25px 80px rgba(0, 102, 204, 0.2);
}

.search-input-group {
  display: flex;
  gap: 12px;
  align-items: center;
}

.search-icon {
  width: 20px;
  height: 20px;
  color: #9ca3af;
  flex-shrink: 0;
}

.search-input-v1 {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 14px 0;
  background: transparent;
  color: #1f2937;
  font-weight: 500;
}

.search-input-v1::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.search-button-v1 {
  background: linear-gradient(135deg, var(--hero-title-color, #0066cc) 0%, color-mix(in srgb, var(--hero-title-color, #0066cc) 80%, #000) 100%);
  color: white;
  border: none;
  padding: 12px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.search-button-v1::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
}

.search-button-v1:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 102, 204, 0.3);
}

.search-button-v1:hover::before {
  left: 100%;
}

.search-hint {
  display: block;
  color: #6b7280;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

/* Quick Categories */
.hero-v1-categories {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.category-btn-v1 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 50px;
  color: #1f2937;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.category-btn-v1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.category-btn-v1 span {
  font-size: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.category-btn-v1:hover {
  border-color: var(--hero-title-color, #0066cc);
  color: var(--hero-title-color, #0066cc);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.15);
}

.category-btn-v1:hover::before {
  opacity: 1;
}

/* Stats Bar V1 */
.hero-v1-stats {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background: white;
  border-radius: 16px;
  padding: 24px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-v1-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-v1-item strong {
  font-size: 24px;
  font-weight: 900;
  color: var(--hero-title-color, #0066cc);
  animation: count-up 0.8s ease-out;
}

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

.stat-v1-item span {
  font-size: 13px;
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-v1-divider {
  width: 1px;
  height: 30px;
  background: #e5e7eb;
}

/* Section Styling V1 */
.section-v1 {
  padding: 100px 20px;
  position: relative;
}

.section-v1:nth-child(even) {
  background: linear-gradient(135deg, #f8fafc 0%, #f0f4ff 100%);
}

.section-header-v1 {
  text-align: center;
  margin-bottom: 70px;
}

.section-header-v1 h2 {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 900;
  margin: 0 0 12px;
  color: #1f2937;
  letter-spacing: -0.02em;
}

.section-header-v1 p {
  font-size: 18px;
  color: #6b7280;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

/* Steps Section */
.steps-grid-v1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card-v1 {
  position: relative;
  padding: 40px 30px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  text-align: center;
  overflow: hidden;
}

.step-card-v1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--hero-title-color, #0066cc), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.step-card-v1:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 102, 204, 0.12);
}

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

.step-number-v1 {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--hero-title-color, #0066cc) 0%, color-mix(in srgb, var(--hero-title-color, #0066cc) 80%, #000) 100%);
  color: white;
  font-size: 24px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
}

.step-icon-v1 {
  font-size: 52px;
  margin-bottom: 20px;
  animation: icon-bounce 0.8s ease-out forwards;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

@keyframes icon-bounce {
  0% {
    opacity: 0;
    transform: scale(0.8) rotateY(-30deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotateY(0);
  }
}

.step-card-v1 h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 12px;
  color: #1f2937;
}

.step-card-v1 p {
  font-size: 15px;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

/* Trust Section */
.trust-section-v1 {
  background: linear-gradient(135deg, #fff 0%, #f9fafc 100%) !important;
}

.trust-content-v1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-left h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  margin: 0 0 16px;
  color: #1f2937;
  line-height: 1.2;
}

.trust-left > p {
  font-size: 18px;
  color: #6b7280;
  margin: 0 0 32px;
  line-height: 1.7;
  font-weight: 500;
}

.trust-badges-v1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.trust-badge-v1 {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: white;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.trust-badge-v1:hover {
  border-color: var(--hero-title-color, #0066cc);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.1);
  transform: translateY(-2px);
}

.badge-icon-v1 {
  font-size: 26px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.trust-badge-v1 span {
  font-weight: 600;
  color: #1f2937;
  font-size: 14px;
}

.button-v1 {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(135deg, var(--hero-title-color, #0066cc) 0%, color-mix(in srgb, var(--hero-title-color, #0066cc) 80%, #000) 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.button-v1:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 102, 204, 0.3);
}

.button-v1-primary {
  /* Primary button style already included */
}

.button-v1-large {
  padding: 16px 48px;
  font-size: 16px;
}

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

.trust-stat-v1 {
  background: white;
  padding: 28px 20px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.trust-stat-v1:hover {
  border-color: var(--hero-title-color, #0066cc);
  box-shadow: 0 12px 30px rgba(0, 102, 204, 0.1);
  transform: translateY(-4px);
}

.trust-stat-v1 strong {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: var(--hero-title-color, #0066cc);
  margin-bottom: 8px;
}

.trust-stat-v1 span {
  font-size: 13px;
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Categories Section */
.categories-grid-v1 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.category-card-v1 {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 280px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.category-card-v1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(0, 102, 204, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.category-card-v1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card-v1:hover img {
  transform: scale(1.1) rotate(0.5deg);
}

.category-card-body-v1 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  padding: 24px 20px;
  color: white;
  transition: padding 0.3s ease;
  z-index: 2;
}

.category-card-v1:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 102, 204, 0.15);
}

.category-card-v1:hover::before {
  opacity: 1;
}

.category-card-v1:hover .category-card-body-v1 {
  padding: 28px 20px;
}

.category-card-v1 h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 4px;
}

.category-card-v1 span {
  font-size: 13px;
  opacity: 0.9;
}

/* Testimonials Section */
.testimonials-grid-v1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card-v1 {
  background: white;
  padding: 36px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.testimonial-card-v1::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.1), transparent);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.6s ease;
  pointer-events: none;
}

.testimonial-card-v1:hover {
  border-color: var(--hero-title-color, #0066cc);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 102, 204, 0.12);
}

.testimonial-card-v1:hover::before {
  top: -20%;
  right: -20%;
  opacity: 1;
}

.testimonial-stars {
  font-size: 16px;
  margin-bottom: 16px;
  animation: star-bounce 0.8s ease-out forwards;
}

@keyframes star-bounce {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-text {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.8;
  margin: 0 0 20px;
  font-style: italic;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
}

/* FAQ Section */
.faq-grid-v1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item-v1 {
  padding: 32px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item-v1:hover {
  box-shadow: 0 12px 32px rgba(0, 102, 204, 0.1);
  transform: translateY(-4px);
}

.faq-item-v1 h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 12px;
  color: #1f2937;
}

.faq-item-v1 p {
  font-size: 15px;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

/* CTA Section */
.cta-section-v1 {
  background: linear-gradient(135deg, var(--hero-title-color, #0066cc) 0%, color-mix(in srgb, var(--hero-title-color, #0066cc) 80%, #000) 100%) !important;
  padding: 100px 20px !important;
}

.cta-content-v1 {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.cta-section-v1 h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  margin: 0 0 16px;
  line-height: 1.2;
}

.cta-section-v1 p {
  font-size: 18px;
  margin: 0 0 40px;
  opacity: 0.95;
  line-height: 1.6;
}

.button-v1.button-v1-large {
  background: white;
  color: var(--hero-title-color, #0066cc);
  font-weight: 800;
}

.button-v1.button-v1-large:hover {
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3);
}

/* Popular Searches Section */
.popular-searches-section-v1 {
  background: linear-gradient(135deg, #f0f4ff 0%, #f9f5ff 100%);
  padding: 80px var(--spacing-2xl);
}

.popular-searches-grid-v1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.search-tag-v1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  font-weight: 600;
  color: var(--text);
  font-size: 15px;
  transition: all var(--transition-normal);
  cursor: pointer;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.search-tag-v1::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.search-tag-v1:hover {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, #e8f1ff 0%, #f5e8ff 100%);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.search-tag-v1:hover::before {
  left: 100%;
}

.tag-icon {
  font-size: 20px;
  display: inline-block;
  animation: bounce 0.6s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Featured Section */
.featured-grid-v1 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Live Info Section (Below Hero) */
.live-info-section-v1 {
  background: white;
  padding: 40px var(--spacing-2xl);
  position: relative;
  z-index: 5;
  margin-top: -80px;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04);
}

.live-info-widgets-v1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Live Widget Base */
.live-widget-v1 {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid var(--border-light);
  border-radius: 14px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.live-widget-v1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.live-widget-v1:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(0, 102, 204, 0.1);
  transform: translateY(-4px);
}

.live-widget-v1:hover::before {
  transform: scaleX(1);
}

.widget-header-v1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.widget-header-v1 h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: var(--text);
}

.widget-status-badge {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 102, 204, 0.05));
  color: var(--primary-color);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  border: 1px solid rgba(0, 102, 204, 0.2);
}

.widget-status-badge.alert {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.2);
}

/* Weather Widget */
.weather-widget-v1 .widget-header-v1 h3 {
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.weather-widget-v1 .widget-header-v1 h3::before {
  content: '🌤️';
  font-size: 20px;
  line-height: 1;
}

.weather-widget-v1 .weather-content-v1 {
  text-align: center;
}

.weather-temp-v1 {
  font-size: 36px;
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--icon-weather) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.weather-condition-v1 {
  font-size: 14px;
  color: var(--secondary-text);
  font-weight: 600;
  margin-bottom: 4px;
}

.weather-location-v1 {
  display: block;
  color: #9ca3af;
  font-size: 12px;
}

/* Traffic Widget */
.traffic-widget-v1 .widget-header-v1 h3 {
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.traffic-widget-v1 .widget-header-v1 h3::before {
  content: '⚠️';
  font-size: 20px;
  line-height: 1;
}

.incidents-list-v1 {
  margin-bottom: 12px;
  max-height: 120px;
  overflow-y: auto;
}

.incident-item-v1 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}

.incident-item-v1:last-child {
  border-bottom: none;
}

.incident-type-v1 {
  font-size: 18px;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
  display: inline-flex;
  align-items: center;
}

.incident-item-v1 strong {
  font-size: 13px;
  color: var(--text);
  line-height: 1.2;
}

.incidents-summary-v1 {
  font-size: 11px;
  color: #9ca3af;
  padding-top: 8px;
  border-top: 1px solid var(--border-light);
  font-weight: 600;
}

/* Events Widget */
.events-widget-v1 .widget-header-v1 h3 {
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.events-widget-v1 .widget-header-v1 h3::before {
  content: '🎪';
  font-size: 20px;
  line-height: 1;
}

.events-list-v1 {
  max-height: 140px;
  overflow-y: auto;
}

.event-item-v1 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}

.event-item-v1:last-child {
  border-bottom: none;
}

.event-date-v1 {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--icon-event));
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  min-width: 45px;
}

.event-item-v1 strong {
  display: block;
  font-size: 13px;
  color: var(--text);
  line-height: 1.2;
}

/* Old styles to remove */
.business-owner-cta-v1 {
  background: linear-gradient(135deg, #003d80 0%, #0052a3 50%, #1f4bd8 100%) !important;
  padding: 80px var(--spacing-2xl);
  position: relative;
  overflow: hidden;
}

.business-owner-cta-v1::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.business-owner-cta-v1::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(31, 75, 216, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.owner-cta-content-v1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.owner-cta-left-v1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.owner-cta-left-v1 h2 {
  color: white;
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.owner-cta-left-v1 p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.owner-benefits-v1 {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.owner-benefits-v1 li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 500;
}

.owner-benefits-v1 li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 14px;
  flex-shrink: 0;
}

.owner-cta-right-v1 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.owner-cta-image-v1 {
  font-size: 120px;
  animation: float-icon 3s ease-in-out infinite;
}

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

.button-v1-secondary {
  background: white;
  color: var(--primary-color);
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.button-v1-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  background: #f0f4ff;
}

/* Responsive Design V1 */
@media (max-width: 768px) {
  .hero-v1-content {
    padding: 60px 16px;
  }

  .hero-v1-title {
    font-size: 36px;
  }

  .hero-v1-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .search-input-group {
    flex-direction: column;
  }

  .search-button-v1 {
    width: 100%;
  }

  .hero-v1-categories {
    gap: 8px;
  }

  .category-btn-v1 {
    padding: 10px 16px;
    font-size: 13px;
  }

  .hero-v1-stats {
    padding: 20px 24px;
    gap: 16px;
  }

  .stat-v1-divider {
    width: 100%;
    height: 1px;
    order: 10;
  }

  .stat-v1-item {
    order: 1;
  }

  .section-v1 {
    padding: 60px 16px;
  }

  .section-header-v1 {
    margin-bottom: 50px;
  }

  .section-header-v1 h2 {
    font-size: 32px;
  }

  .steps-grid-v1 {
    gap: 24px;
  }

  .step-card-v1 {
    padding: 32px 20px;
  }

  .trust-content-v1 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trust-badges-v1 {
    grid-template-columns: 1fr;
  }

  .trust-stats-v1 {
    grid-template-columns: 1fr 1fr;
  }

  .cta-section-v1 {
    padding: 60px 16px !important;
  }

  .cta-section-v1 h2 {
    font-size: 32px;
  }

  .popular-searches-grid-v1 {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
  }

  .search-tag-v1 {
    padding: 14px 16px;
    font-size: 14px;
    flex-direction: column;
  }

  .owner-cta-content-v1 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .owner-cta-left-v1 h2 {
    font-size: 36px;
  }

  .owner-cta-left-v1 p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero-v1-title {
    font-size: 28px;
  }

  .hero-v1-subtitle {
    font-size: 15px;
  }

  .search-input-v1 {
    font-size: 14px;
  }

  .search-button-v1 {
    padding: 10px 24px;
    font-size: 13px;
  }

  .hero-v1-categories {
    flex-direction: column;
  }

  .category-btn-v1 {
    width: 100%;
    justify-content: center;
  }

  .section-header-v1 h2 {
    font-size: 26px;
  }

  .section-header-v1 p {
    font-size: 15px;
  }

  .step-card-v1 {
    padding: 28px 16px;
  }

  .step-number-v1 {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .step-icon-v1 {
    font-size: 40px;
    margin-bottom: 12px;
  }

  .step-card-v1 h3 {
    font-size: 18px;
  }

  .testimonial-card-v1 {
    padding: 24px;
  }

  .faq-item-v1 {
    padding: 24px;
  }

  .trust-stat-v1 strong {
    font-size: 24px;
  }

  .cta-section-v1 h2 {
    font-size: 26px;
  }

  .cta-section-v1 p {
    font-size: 15px;
  }

  .popular-searches-grid-v1 {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
  }

  .search-tag-v1 {
    padding: 12px 12px;
    font-size: 12px;
    gap: 6px;
  }

  .tag-icon {
    font-size: 16px;
  }

  .owner-cta-left-v1 h2 {
    font-size: 36px;
  }

  .owner-cta-left-v1 p {
    font-size: 16px;
  }

  .owner-cta-image-v1 {
    font-size: 80px;
  }

  .owner-benefits-v1 li {
    font-size: 14px;
  }

  .weather-events-grid-v1 {
    grid-template-columns: 1fr;
  }

  .weather-temp-v1 {
    font-size: 40px;
  }

  .widget-card-v1 {
    padding: 24px;
  }

  .incident-item-v1,
  .event-item-v1 {
    padding: 10px 0;
  }

  .live-info-section-v1 {
    padding: 30px 16px;
    margin-top: -60px;
  }

  .live-info-widgets-v1 {
    gap: 16px;
  }

  .live-widget-v1 {
    padding: 20px;
  }

  .widget-header-v1 h3 {
    font-size: 15px;
  }

  .widget-status-badge {
    font-size: 10px;
    padding: 2px 8px;
  }

  .weather-temp-v1 {
    font-size: 32px;
  }

  .weather-condition-v1 {
    font-size: 13px;
  }

  .incident-item-v1 strong,
  .event-item-v1 strong {
    font-size: 12px;
  }

  .event-date-v1 {
    min-width: 40px;
    font-size: 10px;
  }
}

/* ============ ENHANCED ENQUIRY FORM STYLING ============ */
.inquiry-form-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f0f4ff 100%);
  border: 2px solid #e5e7eb;
  border-radius: 12px;
}

.inquiry-form-section h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0066cc;
  font-size: 18px;
  margin-bottom: 8px;
}

.form-subtitle {
  color: #666;
  font-size: 13px;
  margin-bottom: 20px !important;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group label {
  font-weight: 600;
  color: #1f2937;
  font-size: 14px;
}

.form-group .required {
  color: #ef4444;
}

.form-control {
  padding: 12px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
}

.form-control:focus {
  outline: none;
  border-color: #0066cc;
  background: #f8fafc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-control::placeholder {
  color: #999;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
  font-size: 14px;
  line-height: 1.5;
}

.btn-submit {
  padding: 14px 24px !important;
  font-weight: 600;
  font-size: 16px !important;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: white !important;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 102, 204, 0.4);
  background: linear-gradient(135deg, #0052a3 0%, #003d80 100%);
}

.btn-submit:active {
  transform: translateY(0);
}

.form-hint {
  font-size: 12px;
  color: #666;
  text-align: center;
  margin: 0 !important;
  padding-top: 8px;
  border-top: 1px solid #e5e7eb;
}

/* Notice Styling */
.notice {
  padding: 16px 14px;
  border-radius: 8px;
  margin-bottom: 16px !important;
  font-size: 14px;
  border-left: 4px solid;
  display: flex;
  align-items: center;
  gap: 10px;
}

.notice.success {
  background: #f0fdf4;
  border-left-color: #10b981;
  color: #065f46;
}

.notice.error {
  background: #fef2f2;
  border-left-color: #ef4444;
  color: #991b1b;
}

/* Responsive */
@media (max-width: 768px) {
  .inquiry-form-section {
    border-radius: 10px;
  }

  .inquiry-form-section h3 {
    font-size: 16px;
  }

  .form-control {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 14px;
  }

  .btn-submit {
    padding: 16px 24px !important;
    font-size: 15px !important;
  }
}

/* ================================
   Enquiry Management Dashboard
   ================================ */

.enquiries-dashboard {
  max-width: 1000px;
  margin: 40px auto;
}

.dashboard-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 40px;
}

.dashboard-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.dashboard-hero h3 {
  margin: 0;
  font-size: 28px;
  margin-bottom: 8px;
}

.dashboard-hero .muted {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.enquiry-stats {
  display: flex;
  gap: 20px;
}

.stat {
  background: rgba(255, 255, 255, 0.15);
  padding: 15px 20px;
  border-radius: 6px;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 24px;
  margin-top: 5px;
}

.stat-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.9;
}

.stat.unread strong {
  color: #fbbf24;
}

.enquiries-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.enquiry-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.enquiry-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.enquiry-card.unread {
  background: #fffbeb;
  border-color: #fbbf24;
  border-left: 4px solid #f59e0b;
}

.enquiry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f3f4f6;
}

.enquiry-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.enquiry-title strong {
  font-size: 16px;
  color: #111827;
}

.badge-new {
  display: inline-block;
  background: #ef4444;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.enquiry-date {
  font-size: 13px;
  color: #6b7280;
}

.enquiry-details {
  margin-bottom: 16px;
}

.enquiry-details p {
  margin: 8px 0;
  font-size: 14px;
}

.enquiry-details strong {
  color: #374151;
  font-weight: 600;
  display: block;
  margin-top: 8px;
}

.enquiry-details a {
  color: #667eea;
  text-decoration: none;
}

.enquiry-details a:hover {
  text-decoration: underline;
}

.enquiry-message {
  background: #f9fafb;
  padding: 16px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.enquiry-message p {
  margin: 0;
  color: #374151;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
}

.enquiry-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.enquiry-actions .button {
  padding: 8px 16px;
  font-size: 13px;
  height: auto;
  border-radius: 4px;
}

.enquiry-actions .button-primary {
  background: #667eea;
  border-color: #667eea;
  color: white;
}

.enquiry-actions .button-primary:hover {
  background: #5568d3;
  border-color: #5568d3;
}

.enquiry-actions .button {
  background: white;
  border: 1px solid #d1d5db;
  color: #374151;
}

.enquiry-actions .button:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}

.enquiry-actions .button-link-delete {
  color: #dc2626;
}

.enquiry-actions .button-link-delete:hover {
  color: #b91c1c;
  background: #fee2e2;
}

.notice {
  padding: 16px 20px;
  border-radius: 6px;
  border-left: 4px solid #d1d5db;
  margin-bottom: 20px;
  background: #f9fafb;
  color: #374151;
}

.notice p {
  margin: 0;
}

.notice-success {
  border-left-color: #10b981;
  background: #ecfdf5;
  color: #047857;
}

.notice-info {
  border-left-color: #667eea;
  background: #f0f4ff;
  color: #4f46e5;
}

.pagination-wrapper {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 20px 0;
}

.page-numbers {
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  color: #667eea;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.page-numbers:hover {
  background: #f3f4f6;
  border-color: #667eea;
}

.page-numbers.current {
  background: #667eea;
  color: white;
  border-color: #667eea;
}

/* Responsive */
@media (max-width: 768px) {
  .dashboard-hero {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .enquiry-stats {
    margin-top: 20px;
    width: 100%;
  }

  .enquiry-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .enquiry-date {
    margin-top: 8px;
  }

  .enquiry-actions {
    justify-content: flex-start;
  }

  .enquiry-actions .button {
    flex: 1;
    text-align: center;
  }
}

/* ============ PAGINATION STYLES ============ */
.search-count {
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px;
  margin-bottom: 24px;
}

.pagination-wrapper {
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.pagination-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination-wrapper li {
  display: inline-block;
}

.pagination-wrapper a,
.pagination-wrapper .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  background: white;
}

.pagination-wrapper a:hover {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}

.pagination-wrapper .page-numbers.current {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
  cursor: default;
}

.pagination-wrapper .page-numbers.current:hover {
  background: var(--brand);
  color: white;
}

.pagination-wrapper .prev,
.pagination-wrapper .next {
  min-width: auto;
}
