/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ── Reset scoped to page ── */
.hp-section { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 140vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 20px 60px;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13,15,20,0.80) 0%,
    rgba(13,15,20,0.65) 50%,
    rgba(0,182,214,0.18) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,182,214,0.15);
  border: 1px solid rgba(0,182,214,0.35);
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100%{ opacity:1; transform:scale(1); }
  50%{ opacity:0.5; transform:scale(0.6); }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.hero-title .hl {
  color: var(--primary);
  position: relative;
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: rgba(255,255,255,0.72);
  font-weight: 300;
  line-height: 1.6;
  margin: 0 0 36px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(0,182,214,0.35);
}
.btn-primary:hover { background: var(--primary-dk); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff !important;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.45); }

/* Hero stats strip */
.hero-stats {
  display: flex;
  gap: 0;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(12px);
  background: rgba(13,15,20,0.55);
  flex-wrap: wrap;
}
.hero-stat {
  padding: 16px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  flex: 1;
  min-width: 120px;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}
.hero-stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* ════════════════════════════════════════
   SEARCH BAR
════════════════════════════════════════ */
.hero-search-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  margin: 0 auto 38px;
}
.hero-search {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.96);
  border-radius: 100px;
  overflow: visible;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  position: relative;
  padding: 6px 6px 6px 20px;
}
.hero-search .search-icon {
  color: var(--muted);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 10px;
}
.hero-search input[type="text"] {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  color: #222;
  padding: 8px 0;
  min-width: 0;
}
.hero-search input::placeholder { color: #aaa; }
.hero-search button {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 11px 22px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.hero-search button:hover { background: var(--primary-dk); }
.live-search-box {
  position: absolute;
  top: calc(100% + 10px);
  left: 0; right: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 999;
  display: none;
  overflow: hidden;
  max-height: 420px;
  overflow-y: auto;
}
.live-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  padding: 10px 16px 6px;
}
.live-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  text-decoration: none;
  color: #222;
  transition: background 0.15s;
}
.live-item:hover { background: #f5f5f5; }
.live-item img { width: 44px; height: 44px; object-fit: cover; border-radius: 8px; border: 1px solid #eee; }
.live-item div { font-family: var(--font-body); font-size: 14px; }
.live-item small { color: var(--primary-dk); font-weight: 600; font-size: 13px; }
.live-category {
  display: block;
  padding: 9px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #444;
  text-decoration: none;
  transition: background 0.15s;
}
.live-category:hover { background: #f5f5f5; }

/* ════════════════════════════════════════
   DELIVERY PROMISE BAR
════════════════════════════════════════ */
.promise-bar {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px;
}
.promise-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
}
.promise-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 24px;
  border-right: 1px solid var(--border);
}
.promise-item:last-child { border-right: none; }
.promise-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(0,182,214,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 22px;
}
.promise-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}
.promise-sub {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
