:root {
  --primary: #0056d2;
  --primary-dark: #0043a6;
  --accent: #f97316;
  --bg: #f3f4f6;
  --surface: #ffffff;
  --text: #4b5563;
  --muted: #6b7280;
  --border: #e5e7eb;
  --radius: 16px;
  --shadow: 0 20px 50px -25px rgba(17, 24, 39, 0.35);
  --shadow-soft: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { max-width: 100vw; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-container { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; }
.logo { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; font-weight: 700; font-size: 1.3rem; letter-spacing: -0.02em; }
.highlight { color: var(--primary); }
.links { display: flex; align-items: center; gap: 1rem; }
.link { color: var(--muted); font-weight: 600; padding: 0.4rem 0.8rem; border-radius: 10px; transition: color 0.2s, background 0.2s; }
.link:hover { color: var(--primary); background: rgba(29, 78, 216, 0.08); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.35rem; padding: 0.65rem 1.2rem; border-radius: 999px; font-weight: 700; border: 1px solid transparent; cursor: pointer; transition: transform 0.18s, box-shadow 0.18s, background 0.2s; }
.btn-primary { background: linear-gradient(120deg, #2563eb, #1d4ed8); color: white; box-shadow: var(--shadow-soft); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.section { padding: 4rem 0; }
.section-header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: center; flex-wrap: wrap; }
.section-header.center { flex-direction: column; align-items: center; text-align: center; }
.section-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.1rem; letter-spacing: -0.02em; margin-bottom: 0.4rem; font-weight: 700; }
.section-subtitle { color: var(--muted); max-width: 620px; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.75rem; color: var(--primary); margin-bottom: 0.25rem; font-weight: 700; }
.link-cta { color: var(--primary); font-weight: 700; display: inline-flex; align-items: center; gap: 0.3rem; }
.link-cta::after { content: '→'; font-size: 0.9rem; }

.hero {
  position: relative;
  padding: 5rem 0 4rem;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.6), rgba(17, 24, 39, 0.5)),
    url('https://images.unsplash.com/photo-1552566626-52f8b828add9?auto=format&fit=crop&w=2000&q=80');
  background-size: cover; background-position: center;
  color: white;
}
.hero__container { display: flex; align-items: center; justify-content: center; text-align: center; }
.hero__content { max-width: 760px; padding: 0 0.5rem; }
.hero__title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 3rem; line-height: 1.1; margin-bottom: 0.75rem; font-weight: 700; }
.hero__subtitle { color: rgba(255,255,255,0.88); margin-bottom: 1.8rem; font-size: 1.05rem; }
.hero__search { background: white; border: 1px solid var(--border); border-radius: 20px; padding: 0.9rem; display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 0.6rem; box-shadow: var(--shadow-soft); }
.hero__search .inputGroup { text-align: left; padding: 0.35rem 0.75rem; background: #f9fafb; border-radius: 12px; border: 1px solid var(--border); }
.hero__search label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 0.3rem; font-weight: 700; }
.hero__search input, .hero__search select { width: 100%; border: none; background: transparent; color: var(--text); font-size: 1rem; font-weight: 600; outline: none; }
.hero__search option { color: #0f172a; }
.divider { display: none; }
.searchBtn { background: var(--primary); color: white; border: none; padding: 0 1.8rem; border-radius: 14px; font-weight: 800; cursor: pointer; box-shadow: var(--shadow-soft); }
.hero__quick { display: flex; align-items: center; gap: 0.75rem; margin-top: 1rem; color: rgba(255,255,255,0.92); justify-content: center; }
.chip-row { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
.chip { padding: 0.45rem 0.9rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.4); color: white; font-weight: 600; background: rgba(255,255,255,0.12); }
.chip:hover { background: white; color: var(--primary); }

.listings-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.listing-card { background: var(--surface); border-radius: 18px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-soft); display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; }
.listing-card:hover { transform: translateY(-6px); box-shadow: 0 20px 35px -15px rgba(0,0,0,0.25); }
.imageWrapper { position: relative; height: 190px; overflow: hidden; }
.image { width: 100%; height: 100%; object-fit: cover; display: block; }
.category-badge { position: absolute; top: 12px; left: 12px; background: rgba(15,23,42,0.78); color: white; padding: 0.35rem 0.75rem; border-radius: 12px; font-weight: 700; font-size: 0.85rem; }
.status-chip { position: absolute; top: 12px; right: 12px; background: rgba(34,197,94,0.9); color: white; padding: 0.35rem 0.7rem; border-radius: 999px; font-weight: 700; font-size: 0.78rem; }
.badge { position: absolute; bottom: 12px; left: 12px; background: var(--accent); color: white; padding: 0.35rem 0.75rem; border-radius: 12px; font-weight: 800; }
.badge-premium { background: linear-gradient(120deg, #f59e0b, #f97316); }
.card-body { padding: 1.1rem; display: flex; flex-direction: column; gap: 0.35rem; }
.card-top { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.1rem; font-weight: 700; }
@media (max-width: 900px) {
  .hero__search { grid-template-columns: 1fr; }
  .hero__title { font-size: 2.4rem; }
  .section-header { flex-direction: column; align-items: center; text-align: center; }
  .cta__inner { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .cta__mockup { justify-self: center; }
  .grid-layout { grid-template-columns: 1fr; }
  .nav-container { flex-wrap: wrap; gap: 0.75rem; }
  .links { width: 100%; justify-content: center; flex-wrap: wrap; }
}
.location { color: var(--muted); font-size: 0.95rem; }
.excerpt { color: var(--muted); font-size: 0.9rem; }
.rating { display: flex; align-items: center; gap: 0.25rem; font-weight: 700; color: var(--text); }
.star { color: var(--accent); }
.card-footer { display: flex; gap: 0.5rem; margin-top: 0.5rem; }
.pill { padding: 0.4rem 0.9rem; border-radius: 999px; background: rgba(29, 78, 216, 0.1); color: var(--primary); font-weight: 700; font-size: 0.9rem; }
.pill.ghost { background: rgba(100,116,139,0.15); color: var(--text); }

.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-top: 2rem; }
.category-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 1.25rem; text-align: center; box-shadow: var(--shadow-soft); transition: transform 0.2s, box-shadow 0.2s; display: grid; gap: 0.4rem; justify-items: center; }
.category-card:hover { transform: translateY(-4px); box-shadow: 0 18px 30px -18px rgba(0,0,0,0.25); }
.icon { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: rgba(0,86,210,0.08); font-size: 1.5rem; color: var(--primary); }

.city-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; margin-top: 1.5rem; }
.city-card { border-radius: 18px; overflow: hidden; position: relative; height: 200px; background-size: cover; background-position: center; box-shadow: var(--shadow-soft); }
.city-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(15,23,42,0.75), rgba(15,23,42,0.2)); color: white; padding: 1.25rem; display: flex; flex-direction: column; justify-content: flex-end; }

.how-it-works .steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.step-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 1.25rem; box-shadow: var(--shadow-soft); }
.step-icon { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: rgba(29,78,216,0.12); margin-bottom: 0.75rem; font-size: 1.2rem; }

.testimonials { background: linear-gradient(180deg, #e0e7ff, #f5f7fb); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; margin-top: 1.5rem; }
.testimonial-card { background: white; border-radius: 16px; border: 1px solid var(--border); padding: 1.25rem; box-shadow: var(--shadow-soft); }
.testimonial-card p { color: var(--text); margin-bottom: 1rem; }
.testimonial-meta { display: flex; align-items: center; gap: 0.65rem; color: var(--muted); font-size: 0.9rem; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--primary); color: white; display: grid; place-items: center; font-weight: 800; }

.cta { padding: 4rem 0 5rem; }
.cta__inner { background: var(--primary); border-radius: 28px; padding: 3rem; display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; color: white; box-shadow: var(--shadow); }
.cta-actions { display: flex; gap: 0.75rem; margin-top: 1.25rem; flex-wrap: wrap; }
.cta__mockup { width: 200px; height: 340px; border-radius: 24px; background: rgba(255,255,255,0.12); display: grid; place-items: center; font-size: 2rem; border: 1px solid rgba(255,255,255,0.25); justify-self: end; }

.footer { background: #0b1224; color: #d9e0f0; padding: 3rem 0 2rem; margin-top: auto; }
.footer .content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }
.footer a { color: #d9e0f0; opacity: 0.8; }
.footer a:hover { opacity: 1; }
.footer .bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.25rem; text-align: center; color: #9aa6c2; }
.footer .column h3 { font-family: 'Plus Jakarta Sans', sans-serif; margin-bottom: 0.5rem; }
.footer .column h4 { color: #9aa6c2; margin-bottom: 0.5rem; }

.listings-page .listings-hero { padding: 2.5rem 0 1.5rem; background: #eef2ff; border-bottom: 1px solid var(--border); }
.filters-bar { background: white; padding: 1rem; border-radius: 16px; border: 1px solid var(--border); box-shadow: var(--shadow-soft); margin-top: 1rem; }
.filters-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0.75rem; }
.filters-row .inputGroup { background: #f8fafc; border-radius: 12px; padding: 0.75rem; border: 1px solid var(--border); }
.filters-row label { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 0.35rem; font-weight: 700; }
.filters-row input, .filters-row select { width: 100%; border: none; background: transparent; font-weight: 600; color: var(--text); outline: none; }
.clear-filters { display: inline-block; margin-top: 0.5rem; color: var(--primary); font-weight: 700; }

.page-listing .business-header { position: relative; }
.page-listing .image-container { position: relative; height: 320px; }
.page-listing .header-image { width: 100%; height: 100%; object-fit: cover; }
.page-listing .header-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,23,42,0.35), rgba(15,23,42,0.7)); }
.page-listing .header-content { position: absolute; bottom: 20px; left: 0; right: 0; color: white; }
.header-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.2rem; }
.header-meta { display: flex; gap: 1rem; color: #e2e8f0; }
.header-category { background: rgba(15,23,42,0.7); color: white; padding: 0.35rem 0.75rem; border-radius: 10px; font-weight: 700; display: inline-block; margin-bottom: 0.5rem; }
.grid-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 1.5rem; align-items: flex-start; }
.main-info .info-card { background: white; padding: 1.5rem; border-radius: 16px; border: 1px solid var(--border); box-shadow: var(--shadow-soft); }
.amenities { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 0.5rem 0 1rem; }
.amenity { background: #f8fafc; border: 1px solid var(--border); padding: 0.35rem 0.75rem; border-radius: 10px; font-weight: 600; color: var(--text); }
.hours { list-style: none; display: grid; gap: 0.35rem; padding: 0; margin: 0.5rem 0 0; color: var(--muted); }
.hours span:first-child { color: var(--text); font-weight: 700; }
.sidebar .widget { background: white; padding: 1.25rem; border-radius: 16px; border: 1px solid var(--border); box-shadow: var(--shadow-soft); margin-bottom: 1rem; }
.widget .field { margin-bottom: 0.75rem; }
.widget label { display: block; font-weight: 700; margin-bottom: 0.35rem; }
.widget .input { width: 100%; padding: 0.65rem; border-radius: 10px; border: 1px solid var(--border); }
.qr-placeholder { background: #f8fafc; border-radius: 12px; padding: 1.5rem; text-align: center; border: 1px dashed var(--border); }

@media (max-width: 900px) {
  .hero__search { grid-template-columns: 1fr; }
  .hero__title { font-size: 2.4rem; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .cta__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .grid-layout { grid-template-columns: 1fr; }
  .nav-container { flex-wrap: wrap; gap: 0.75rem; }
  .links { width: 100%; justify-content: flex-start; flex-wrap: wrap; }
}
