/* =========================
       Base Styles
    ========================= */
@import url('https://fonts.googleapis.com/css?family=Plus%20Jakarta%20Sans:700|Inter:400');
:root {
  --bg: #000000;
  --surface: #343837;
  --text: #f5f5f7;
  --muted: #b0b0b5;
  --primary: #0d0e12;
  --primary-dark: #000000;
  --accent: #ff5900;
  --accent-dark: #d94a00;
  /*--secondary: #d4af37;*/
  --secondary: #00f5d4;
  --secondary-light: rgba(0, 245, 212, 0.06);
  --border: #4a4d4c;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  --radius: 18px;
  --container: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
   font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
  color: var(--text);
 background: var(--bg);
  line-height: 1.6;
}


h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
}



img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}
.hero h1{
    font-size:.001rem;
}
.section {
  padding: 72px 0;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.section-title {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  line-height: 1.2;
}

.section-subtitle {
  margin: 6px 0 0;
  color: var(--muted);
  max-width: 65ch;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 89, 0, 0.35);   /* accent border */
  background-color: rgba(255, 89, 0, 0.10);    /* accent tint */
  color: #ff8a4d;                                 /* light accent text for dark bg */
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  transition: all 0.2s ease-in-out;
  cursor: default;
}

.badge:hover {
  background-color: rgba(255, 89, 0, 0.18);
  border-color: rgba(255, 89, 0, 0.5);
}

/* Layout Enhancements */
/* =========================
   About Page
========================= */

/* Hero */
.about-hero {
  padding: 64px 0 48px;
  background:
   
    var(--bg);
}

.about-hero-inner {
  max-width: 780px;
}

.about-hero-title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 16px 0 14px;
}

.about-hero-title em {
  font-style: normal;
  color: var(--accent);
}

.about-hero-sub {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 65ch;
  margin: 0 0 36px;
}

/* Stats row */
.about-hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 120px;
  padding: 8px 12px;
}

.about-stat-num {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  text-align: center;
  margin-top: 5px;
}

.about-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* Story section */
.about-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
}

.about-section-heading {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  margin: 10px 0 18px;
  line-height: 1.25;
}

.about-text {
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 14px;
}

.about-text strong {
  color: var(--text);
}

/* Values card */
.about-values-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}

.about-values-title {
  margin: 0 0 20px;
  font-size: 1.05rem;
  color: var(--text);
}

.about-values-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-values-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-values-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-values-list strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 3px;
}

.about-values-list p {
  margin: 0;
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Review steps */
.about-review-section {
  background:
    radial-gradient(circle at top right, rgba(0,245,212,0.05), transparent 40%),
    var(--bg);
}

.about-review-header {
  margin-bottom: 36px;
}

.about-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

/* Connecting line between steps */
.about-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  opacity: 0.25;
  pointer-events: none;
}

.about-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(255,89,0,0.12);
  border-color: rgba(255,89,0,0.28);
}

.about-step-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 10px;
}

.about-step h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: var(--text);
}

.about-step p {
  margin: 0;
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Audience grid */
.about-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.about-audience-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(255,89,0,0.12);
  border-color: rgba(255,89,0,0.28);
}

.about-audience-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.about-audience-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--text);
}

.about-audience-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* CTA box */
.about-cta-box {
  text-align: center;
  padding: 56px 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.about-cta-box::before {
  content: '';
  position: absolute;
  top: -50px; left: -50px;
  width: 180px; height: 180px;
  background: rgba(255,89,0,0.07);
  border-radius: 50%;
  pointer-events: none;
}

.about-cta-box::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 150px; height: 150px;
  background: rgba(0,245,212,0.07);
  border-radius: 50%;
  pointer-events: none;
}

.about-cta-title {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  margin: 0 0 12px;
}

.about-cta-sub {
  color: var(--muted);
  max-width: 52ch;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.about-cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1000px) {
  .about-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-steps::before { display: none; }
  .about-audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  .about-story-grid {
    grid-template-columns: 1fr;
  }
  .about-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .about-hero-stats {
    padding: 18px 16px;
    gap: 4px;
  }
  .about-stat-divider { display: none; }
  .about-stat { flex: 1 1 calc(50% - 8px); }
  .about-steps {
    grid-template-columns: 1fr;
  }
  .about-audience-grid {
    grid-template-columns: 1fr;
  }
  .about-cta-box {
    padding: 36px 20px;
  }
}

/* =========================
   Header / Navigation v2
========================= */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 13, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 89, 0, 0.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  width: 130px;
  height: auto;
}

/* Centered pill nav */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 6px;
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.menu a {
  display: inline-block;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 9px 16px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.menu a:hover {
  color: var(--accent);
  background: rgba(255, 89, 0, 0.08);
}

/* Right cluster: search + hamburger */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 280px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, width 0.25s ease;
}

.nav-search:focus-within {
  border-color: rgba(255, 89, 0, 0.45);
  box-shadow: 0 0 0 4px rgba(255, 89, 0, 0.10);
  width: 320px;
}

.nav-search-icon {
  color: var(--muted);
  flex-shrink: 0;
}

.nav-search:focus-within .nav-search-icon {
  color: var(--accent);
}

.nav-search input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.92rem;
  color: var(--text);
}

.nav-search input::placeholder {
  color: var(--muted);
}

.search-results {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 320px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.5);
  max-height: 320px;
  overflow-y: auto;
  z-index: 999;
  display: none;
}

.search-item {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.15s ease;
}
.search-item:last-child { border-bottom: none; }
.search-item:hover { background: rgba(255, 89, 0, 0.06); }
.search-item strong { color: var(--accent); }
.search-item span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-toggle:hover {
  background: rgba(255, 89, 0, 0.08);
  border-color: rgba(255, 89, 0, 0.35);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  display: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.mobile-menu.open {
  max-height: 460px;
  padding-bottom: 14px;
}

.mobile-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 16px 6px;
  padding: 11px 16px;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 999px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mobile-search:focus-within {
  border-color: rgba(255, 89, 0, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 89, 0, 0.10);
}

.mobile-search .nav-search-icon { color: var(--muted); flex-shrink: 0; }

.mobile-search input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font: inherit;
  color: var(--text);
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 4px 8px 0;
  display: flex;
  flex-direction: column;
}

.mobile-nav-list li a {
  display: block;
  padding: 12px 12px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--text);
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav-list li a:hover {
  background: rgba(255, 89, 0, 0.08);
  color: var(--accent);
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .main-nav { display: none; }
  .nav-search { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: block; }
}

@media (max-width: 720px) {
  .nav-wrap { gap: 12px; padding: 10px 0; }
  .logo img { width: 100px; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
  font-weight: 700;
  white-space: nowrap;
}

.btn:hover,
.card:hover,
.tile:hover,
.post:hover {
  transform: translateY(-3px);
}

/* Primary button — accent */
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #fb923c);
  color: white;
  box-shadow: 0 12px 24px rgba(255, 89, 0, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  box-shadow: 0 14px 28px rgba(255, 89, 0, 0.36);
}

/* Outline button — secondary */
.btn-outline {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover {
  background: var(--secondary-light);
  border-color: rgba(0, 245, 212, 0.4);
  color: var(--secondary);
}

/* =========================
       Hero Section
    ========================= */
.hero {
  padding: 58px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.hero-copy {
  padding: 16px 0;
}

.hero h1 {
  margin: 14px 0 14px;
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

/* Highlight keyword in hero headline with accent */
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero p {
  margin: 0 0 24px;
  color: var(--muted);
  max-width: 60ch;
  font-size: 1.06rem;
}

.hero-search {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.hero-search input {
  flex: 1 1 320px;
  padding: 15px 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  outline: none;
  box-shadow: var(--shadow);
  color: var(--text);
}

.hero-search input:focus {
  border-color: rgba(255, 89, 0, 0.4);
  box-shadow: 0 0 0 4px rgba(255, 89, 0, 0.10);
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Secondary check marks in cta row */
.hero-cta-row span {
  color: var(--muted);
  font-weight: 500;
}

.hero-card {
  position: relative;
  min-height: 440px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.6)),
    url("../files/images/home-hero-image.png") center/cover no-repeat;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: end;
  padding: 22px;
}

.hero-overlay {
  width: 100%;
  display: grid;
  gap: 10px;
  color: white;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.8)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-overlay strong {
  font-size: 1.05rem;
}
.hero-overlay span {
  color: rgba(255, 255, 255, 0.9);
}

/* =========================
       AdSense Placeholders
    ========================= */
.ad-slot {
  display: grid;
  place-items: center;
  min-height: 110px;
  border: 1px dashed rgba(255, 89, 0, 0.3);
  background: linear-gradient(
    135deg,
    rgba(255, 89, 0, 0.05),
    rgba(0, 245, 212, 0.05)
  );
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
  padding: 16px;
}

.ad-label {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.ad-top {
  margin: auto;
  border: 1px solid red;
}

/* =========================
       Card Grids
    ========================= */
.grid {
  display: grid;
  gap: 18px;
}

.areas-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.featured-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.categories-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tile,
.card,
.category,
.post,
.footer-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.tile:hover,
.card:hover,
.category:hover,
.post:hover {
  border-color: rgba(255, 89, 0, 0.35);    /* accent border on hover */
  box-shadow: 0 16px 34px rgba(255, 89, 0, 0.14);
}

.thumb {
  aspect-ratio: 16 / 10;
  background: linear-gradient(
    135deg,
    rgba(255, 89, 0, 0.14),
    rgba(0, 245, 212, 0.14)
  );
  display: grid;
  place-items: center;
  color: var(--accent);
  font-weight: 800;
  position: relative;
  overflow: hidden;
}
.thumb img {
  width: 100%;
  height: 100%;
}

.tile .content,
.card .content,
.category .content,
.post .content {
  padding: 16px;
}

.mini-title {
  margin: 0;
  font-size: 1.02rem;
}

.meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 89, 0, 0.12);
  color: #ff8a4d;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 12px;
}

.view-btn {
  margin-top: 14px;
  width: 100%;
}

/* Area cards */
.tile {
  display: block;
}

.tile .thumb {
  aspect-ratio: 1 / 1;
}

.area-name {
  margin: 0;
  font-weight: 800;
}

/* Category cards */
.category {
  text-align: center;
  padding: 18px 16px 20px;
}

.category-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(255, 89, 0, 0.14),
    rgba(0, 245, 212, 0.14)
  );
  font-size: 1.5rem;
}

.category h3 {
  margin: 0;
  font-size: 1rem;
}

/* Blog cards */
.post .thumb {
  aspect-ratio: 16 / 9;
}

.post h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.post p {
  margin: 0 0 12px;
  color: var(--muted);
}

.read-more {
  color: var(--accent);              /* accent read more */
  font-weight: 700;
}

.read-more:hover {
  color: var(--accent-dark);
}

/* =========================
       Footer
    ========================= */
footer {
  margin-top: 40px;
  padding: 60px 0 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 89, 0, 0.04),
    rgba(0, 245, 212, 0.04)
  );
  border-top: 1px solid rgba(255, 89, 0, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr 1.1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 22px;
}

.footer-panel {
  padding: 18px;
  height: 100%;
}

.footer-panel h3,
.footer-panel h4 {
  margin-top: 0;
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--accent);
}

.socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  font-weight: 800;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.socials a:hover {
  background: var(--secondary-light);
  border-color: rgba(0, 245, 212, 0.4);
  color: var(--secondary);
}

.newsletter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter input {
  flex: 1 1 220px;
  border: 1px solid var(--border);
  padding: 12px 14px;
  border-radius: 14px;
  outline: none;
  background: var(--surface);
  color: var(--text);
}

.newsletter input:focus {
  border-color: rgba(255, 89, 0, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 89, 0, 0.10);
}

.copyright {
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}


/* =========================
   RESTAURANT PAGE
========================= */

.restaurant-hero {
  padding: 60px 0 30px;
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 25px;
      width: 100%;
    display: flex;
    justify-content: center;
    gap:10px;
  
}

.breadcrumb a {
  color: var(--accent);
  font-weight: 600;
}

.restaurant-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: center;
}

.restaurant-title {
  font-size: 2rem;
  font-weight: 900;
}

.restaurant-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  margin: 10px 0;
}

.restaurant-description {
  margin: 15px 0;
  color: var(--muted);
}

.restaurant-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.restaurant-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* DETAILS */
.details-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.restaurant-highlights {
  padding-left: 18px;
}

.details-sidebar {
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 0;
}

.info-card {
  background: var(--surface);
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.info-card a {
  display: block;
  margin-top: 8px;
  color: var(--accent);
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .restaurant-hero-grid,
  .details-grid {
    grid-template-columns: 1fr;
  }
  .footer-imgg{
  width: 40%; 
}
}

/* =========================
   CONTACT PAGE
========================= */

.contact-page {
  padding: 70px 0;
}

.contact-container {
  max-width: 900px;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-header p {
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.contact-form {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.form-group label {
  font-size: 0.9rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  border: 1px solid var(--border);
  padding: 12px;
  border-radius: 10px;
  outline: none;
  background: var(--bg);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 89, 0, 0.10);
}

.contact-btn {
  width: 100%;
  margin-top: 10px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-box {
  background: var(--surface);
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.info-box h3 {
  margin: 0 0 6px;
}

.info-box p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   BLOG PAGE
========================= */

.blog-page {
  font-family: Arial, sans-serif;
  color: var(--text);
}

.hero-blog {
  background: url('images/blog-hero.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.hero-blog h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-blog p {
  font-size: 1.2rem;
}

.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 50px 0;
}

.blog-card {
  background: var(--surface);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  border-radius: 10px;
  overflow: hidden;
  flex: 1 1 45%;
  max-width: 45%;
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: var(--muted);
}

@media (max-width: 720px) {
  .blog-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* =========================
       Responsive Layout
    ========================= */
@media (max-width: 1100px) {
  .areas-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .categories-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-card {
    min-height: 380px;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 56px 0;
  }
  .hero {
    padding-top: 28px;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .areas-grid,
  .featured-grid,
  .categories-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section-header {
    align-items: start;
    flex-direction: column;
  }
  .copyright {
    flex-direction: column;
  }
   .areas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================
   Simple Image-Only Gallery
========================= */

.simple-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.simple-gallery a {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.simple-gallery a:hover {
  transform: scale(1.03);
  box-shadow: 0 18px 40px rgba(255, 89, 0, 0.18);
  border-color: rgba(255, 89, 0, 0.35);
}

.simple-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

@media (max-width: 1100px) {
  .simple-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .simple-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .simple-gallery {
    grid-template-columns: 1fr;
  }
}

/* =========================
   E-EAT Section
========================= */
.eeat-section {
  margin: 0;
}

.eeat-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

/* Background decoration */
.eeat-box::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: rgba(255, 89, 0, 0.06);
  border-radius: 50%;
  pointer-events: none;
}
.eeat-box::after {
  content: '';
  position: absolute;
  bottom: -50px; left: -50px;
  width: 180px; height: 180px;
  background: rgba(0, 245, 212, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

/* Header row */
.eeat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.eeat-header-left {
  max-width: 600px;
}

.eeat-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 245, 212, 0.08);
  color: #7fe0d4;
  border: 1px solid rgba(0, 245, 212, 0.22);
  margin-bottom: 12px;
}

.eeat-title {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.25;
  color: var(--text);
}

.eeat-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Score badge */
.eeat-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,89,0,0.08), rgba(0,245,212,0.08));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 28px;
  text-align: center;
  flex-shrink: 0;
}

.eeat-score-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}

.eeat-score-stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 2px;
  margin: 6px 0 4px;
}

.eeat-score-label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}

/* Cards grid */
.eeat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.eeat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 2px solid var(--secondary);
  border-radius: 16px;
  padding: 22px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.eeat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(255, 89, 0, 0.12);
  border-color: rgba(255, 89, 0, 0.28);
  border-left-color: var(--secondary);
}

.eeat-card-icon {
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 4px;
}

.eeat-card h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
  font-weight: 800;
}

.eeat-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.eeat-card-footer {
  margin-top: 10px;
}

.eeat-pill {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(255, 89, 0, 0.10);
  color: #ff8a4d;
  border: 1px solid rgba(255, 89, 0, 0.22);
}

/* Responsive */
@media (max-width: 1000px) {
  .eeat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .eeat-box {
    padding: 24px 18px;
  }
  .eeat-header {
    flex-direction: column;
  }
  .eeat-score {
    width: 100%;
    flex-direction: row;
    gap: 14px;
    padding: 14px 18px;
    justify-content: flex-start;
  }
  .eeat-score-stars {
    margin: 0;
  }
  .eeat-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Review Slider
========================= */

.rs-card h3 { margin: 0 0 12px; }

.rs-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 14px;
}
.rs-score { font-size: 26px; font-weight: 800; color: var(--text); line-height: 1; }
.rs-stars { color: var(--accent); font-size: 14px; letter-spacing: 1px; }
.rs-count { font-size: 11px; color: var(--muted); margin-top: 2px; }
.rs-view-all { margin-left: auto; font-size: 11px; color: color-mix(in srgb, var(--secondary) 55%, var(--muted)); font-weight: 600; white-space: nowrap; }

.rs-outer { overflow: hidden; border-radius: 12px; width: 100%; min-width: 0; }
.rs-track { display: flex; transition: transform 0.45s cubic-bezier(0.4,0,0.2,1); will-change: transform; }

.rs-review {
  box-sizing: border-box;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  flex-shrink: 0;
}
.rs-reviewer { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.rs-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.rs-name { font-size: 13px; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rs-date { font-size: 11px; color: var(--muted); }
.rs-review-stars { color: var(--accent); font-size: 13px; letter-spacing: 1px; margin-bottom: 6px; }
.rs-text { font-size: 13px; color: var(--muted); line-height: 1.55; margin: 0; }

.rs-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.rs-btn {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--surface);
  cursor: pointer; font-size: 18px; line-height: 1; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.rs-btn:hover { background: rgba(255,89,0,0.08); border-color: rgba(255,89,0,0.35); color: var(--accent); }
.rs-dots { display: flex; gap: 5px; align-items: center; }
.rs-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--border); cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none; padding: 0;
}
.rs-dot.active { background: var(--secondary); transform: scale(1.4); }

.details-sidebar { min-width: 0; }

@media (max-width: 900px) {
  .rs-summary { flex-wrap: wrap; }
  .rs-view-all { margin-left: 0; }
}

/* =========================
   FAQ Section
========================= */

.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(255, 89, 0, 0.3);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);              /* accent + / − */
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

/* Secondary left border when open */
.faq-item[open] {
  border-left: 3px solid var(--secondary);
}

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 720px) {
  .faq-item summary {
    padding: 18px;
    font-size: 0.95rem;
  }
  .faq-item p {
    padding: 0 18px 18px;
  }
}

/* Newsletter — Home */
.nl-home-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.nl-home-box::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 220px; height: 220px;
  background: rgba(255,89,0,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.nl-home-box::after {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 180px; height: 180px;
  background: rgba(0,245,212,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.nl-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(255,89,0,0.12);
  color: #ff8a4d;
  border: 1px solid rgba(255,89,0,0.25);
  margin-bottom: 16px;
}
.nl-home-box h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1.25;
  margin-bottom: 12px;
}
.nl-orange { color: var(--accent); }
.nl-home-box > p {
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto 28px;
}
.nl-row {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto 20px;
  flex-wrap: wrap;
}
.nl-row input {
  flex: 1 1 260px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  outline: none;
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--text);
}
.nl-row input:focus {
  border-color: rgba(255,89,0,0.45);
  box-shadow: 0 0 0 3px rgba(255,89,0,0.10);
}
.nl-perks {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  color: color-mix(in srgb, var(--secondary) 55%, var(--muted));
  font-weight: 600;
  font-size: 0.9rem;
}
.nl-privacy {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 10px;
  opacity: 0.7;
}

/* Newsletter — Restaurant sidebar */
.nl-rest { padding: 0; overflow: hidden; }
.nl-rest-top {
  background: var(--primary);
  padding: 20px;
}
.nl-tag-small {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(255,89,0,0.25);
  color: #fed7aa;
  border: 1px solid rgba(255,89,0,0.35);
  margin-bottom: 10px;
}
.nl-rest-top h3 {
  color: white;
  font-size: 1rem;
  margin: 0 0 6px;
}
.nl-rest-top p { color: rgba(255,255,255,0.78); font-size: 0.85rem; margin: 0; }
.nl-rest-body { padding: 18px; }
.nl-rest-body input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  outline: none;
  background: var(--bg);
  color: var(--text);
}
.nl-rest-body input:focus {
  border-color: rgba(0,245,212,0.4);
  box-shadow: 0 0 0 3px rgba(0,245,212,0.10);
}
.nl-rest-perks {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 720px) {
  .nl-home-box { padding: 36px 20px; }
}

/* Blog scroll wrapper — desktop unchanged, mobile scrolls horizontally */
.blog-scroll-wrap {
  /* no clipping on desktop so shadow/hover effects aren't cut */
}

@media (max-width: 1100px) {
  .blog-scroll-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;  /* smooth momentum on iOS */
    scrollbar-width: thin;              /* Firefox */
    scrollbar-color: rgba(255,89,0,0.35) transparent;
    /* bleed slightly so the first card shadow isn't clipped */
    margin: 0 -16px;
    padding: 0 16px 12px;
  }

  /* Thin styled scrollbar for WebKit browsers */
  .blog-scroll-wrap::-webkit-scrollbar {
    height: 4px;
  }
  .blog-scroll-wrap::-webkit-scrollbar-track {
    background: transparent;
  }
  .blog-scroll-wrap::-webkit-scrollbar-thumb {
    background: rgba(255, 89, 0, 0.35);
    border-radius: 999px;
  }

  /* Override the stacking grid — keep cards in a row */
  .blog-scroll-wrap .blog-grid {
    grid-template-columns: repeat(var(--blog-count, 3), 280px);
    /* auto-sizes to however many cards you have */
    width: max-content;
  }
}

@media (max-width: 720px) {
  .blog-scroll-wrap .blog-grid {
    grid-template-columns: repeat(var(--blog-count, 3), 260px);
  }
}



/* =========================
   Explore Areas Block
========================= */
.explore-areas {
  margin: 32px 0;
  padding: 28px 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

/* Subtle decorative corner blobs */
.explore-areas::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 130px; height: 130px;
  background: rgba(255, 89, 0, 0.07);
  border-radius: 50%;
  pointer-events: none;
}
.explore-areas::after {
  content: '';
  position: absolute;
  bottom: -30px; left: -30px;
  width: 100px; height: 100px;
  background: rgba(0, 245, 212, 0.07);
  border-radius: 50%;
  pointer-events: none;
}

.explore-heading {
  margin: 0 0 4px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
}

.explore-sub {
  margin: 0 0 18px;
  font-size: 0.9rem;
  color: var(--muted);
}

.explore-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.explore-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 89, 0, 0.28);
  background: rgba(255, 89, 0, 0.06);
  color: #ff8a4d;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease,
              transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.explore-chip:hover {
  background: rgba(255, 89, 0, 0.14);
  border-color: rgba(255, 89, 0, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 89, 0, 0.15);
  color: var(--accent-dark);
}

.explore-icon {
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 480px) {
  .explore-areas {
    padding: 20px 16px;
  }
  .explore-chip {
    font-size: 0.85rem;
    padding: 8px 13px;
  }
  .nl-row {
  justify-content: center;
}
}
.eeat-score-sub {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 2px;
  text-align: center;
}

.eeat-card strong {
  color: var(--text);
  font-weight: 700;
}

.eeat-link {
  color: color-mix(in srgb, var(--secondary) 55%, var(--muted));
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.eeat-link:hover {
  color: var(--secondary);
}

/* Footer note strip */
.eeat-footer-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 28px;
  padding: 16px 20px;
  background: rgba(0, 245, 212, 0.04);
  border: 1px solid rgba(0, 245, 212, 0.14);
  border-radius: 12px;
}

.eeat-footer-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.eeat-footer-note p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}


.post-updated-simple {
  margin-top: 40px;
  font-size: 0.85rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

@media (max-width: 420px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
}
.search-wrapper {
  max-width: 480px;
  margin: 0 auto 32px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: var(--shadow);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-box:focus-within {
  border-color: rgba(255, 89, 0, 0.45);
  box-shadow: 0 0 0 4px rgba(255, 89, 0, 0.10);
}

.search-icon {
  color: var(--muted);
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.search-box:focus-within .search-icon {
  color: var(--accent);
}

#restaurantSearch {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  color: var(--text);
}

#restaurantSearch::placeholder {
  color: var(--muted);
}

.search-clear {
  display: none;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 50%;
  background: var(--bg);
  color: var(--muted);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

.search-clear:hover {
  background: rgba(255, 89, 0, 0.12);
  color: var(--accent);
}

.search-clear.visible {
  display: flex;
}

.search-empty {
  display: none;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 14px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.search-empty.visible {
  display: block;
  opacity: 1;
}

/* Spinner — swaps in place of the search icon while "loading" */
.search-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 89, 0, 0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: search-spin 0.6s linear infinite;
}

.search-spinner.visible {
  display: block;
}

.search-box.loading .search-icon {
  display: none;
}

@keyframes search-spin {
  to { transform: rotate(360deg); }
}

/* Card fade-in when results update */
.featured-grid .card {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.featured-grid .card.fade-out {
  opacity: 0;
  transform: scale(0.97);
}

.featured-grid .card.fade-in {
  opacity: 1;
  transform: scale(1);
}

/* ================= Bento Categories Grid ================= */
.bento-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 130px;
  gap: 18px;
  margin-top: 32px;
}

.bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border-radius: 20px;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(160deg, var(--card-color) 0%, color-mix(in srgb, var(--card-color) 70%, black) 100%);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.bento-card::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 65%;
  height: 65%;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: transform 0.5s ease;
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
}

.bento-card:hover::after {
  transform: scale(1.3);
}

.bento-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}

.bento-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 4px;
  position: relative;
  z-index: 1;
}

.bento-card p {
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.9;
  position: relative;
  z-index: 1;
  line-height: 1.4;
}

/* ----- Size variants ----- */
.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-tall {
  grid-column: span 1;
  grid-row: span 2;
}

.bento-wide {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-small {
  grid-column: span 1;
  grid-row: span 1;
}

.bento-large .bento-icon,
.bento-tall .bento-icon {
  font-size: 2.8rem;
}

.bento-large h3 {
  font-size: 1.5rem;
}

/* ----- Responsive ----- */
@media (max-width: 900px) {
  .bento-categories {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }
  .bento-large {
    grid-column: span 2;
    grid-row: span 2;
  }
  .bento-tall {
    grid-column: span 1;
    grid-row: span 2;
  }
  .bento-wide {
    grid-column: span 2;
  }
}

@media (max-width: 520px) {
  .bento-categories {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 120px;
  }
  .bento-large,
  .bento-wide {
    grid-column: span 2;
  }
  .bento-tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  .eeat-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,89,0,0.08), rgba(0,245,212,0.08));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 28px;
  text-align: center;
  flex-shrink: 0;
}
}

/* =========================
   Area Cards (redesigned)
========================= */
.area-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.area-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.area-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--area-color, var(--accent));
}

.area-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.5);
  border-color: color-mix(in srgb, var(--area-color, var(--accent)) 40%, var(--border));
}

.area-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.area-card-name {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
}

.area-card-count {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--area-color, var(--accent));
  background: color-mix(in srgb, var(--area-color, var(--accent)) 18%, black);
  border: 1px solid color-mix(in srgb, var(--area-color, var(--accent)) 30%, black);
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
}

.area-card-desc {
  margin: 0 0 20px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.area-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.area-card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--area-color, var(--accent));
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}

.area-card:hover .area-card-link {
  gap: 8px;
}

.area-card-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

/* "More areas" card */
.area-card-more {
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--border);
  background: linear-gradient(135deg, rgba(255,89,0,0.04), rgba(0,245,212,0.04));
  box-shadow: none;
  min-height: 100%;
}

.area-card-more::before { display: none; }

.area-card-more:hover {
  border-color: rgba(255,89,0,0.4);
  transform: translateY(-5px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.4);
}

.area-card-more-inner {
  text-align: center;
}

.area-card-more-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,89,0,0.1);
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.area-card-more-text {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1000px) {
  .area-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .area-cards-grid {
    grid-template-columns: 1fr;
  }
  .area-card {
    padding: 20px 18px;
  }
}
@media (max-width: 1100px) {
  .mobile-search {
    position: relative;
  }

  .search-results {
    position: absolute;
    top: calc(100% + 6px);
    left: 16px;
    right: 16px;
    width: auto;
  }
}

.restaurant-quicknav {
  margin-top: 32px;
  font-size: 0.9rem;
}

.restaurant-quicknav a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 450px) {
      .restaurant-quicknav a {
          font-size: 13.5px;
}
  }
.restaurant-quicknav a:hover {
  color: var(--accent-dark);
}

.quicknav-sep {
  margin: 0 8px;
  color: #999;
}
#restaurant-info-card,
#map-card,
#quick-links-card,
#reviews-card {
  scroll-margin-top: 200px; /* adjust to your header's actual height + some breathing room */
}