@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #F0F4FF;
  --surface: #FFFFFF;
  --surface2: #EFF6FF;
  --border: #DBEAFE;
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --primary-glow: rgba(37,99,235,0.08);
  --amber: #F59E0B;
  --amber-glow: rgba(245,158,11,0.1);
  --text: #0F172A;
  --muted: #64748B;
  --muted2: #475569;
  --radius: 14px;
  --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── UTILITY ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-glow);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,99,235,0.3); }
.btn-amber { background: var(--amber); color: #000; font-weight: 700; }
.btn-amber:hover { background: #D97706; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); background: var(--primary-glow); }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.nav-logo-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted2);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 68px 0 0 0;
  background: #fff;
  padding: 32px 20px;
  flex-direction: column;
  gap: 24px;
  z-index: 99;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ── HERO ── */
.hero {
  padding: 90px 0 80px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber-glow);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #92400E;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-title span { color: var(--primary); }
.hero-desc {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 12px;
  max-width: 480px;
}
.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 32px;
}
.hero-location svg { color: var(--primary); flex-shrink: 0; }
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stats { display: flex; gap: 32px; }
.hero-stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}
.hero-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-card-icon {
  width: 44px; height: 44px;
  background: var(--primary-glow);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.hero-card-title { font-size: 1rem; font-weight: 700; color: var(--text); }
.hero-card-sub { font-size: 0.78rem; color: var(--muted); }
.hero-hours { display: flex; flex-direction: column; gap: 8px; }
.hero-hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--border);
}
.hero-hour-row.today {
  background: var(--primary-glow);
  border-color: var(--primary);
}
.hero-hour-day { color: var(--muted2); font-weight: 500; }
.hero-hour-time { color: var(--text); font-weight: 700; }
.open-badge {
  font-size: 0.7rem;
  font-weight: 700;
  background: #16A34A;
  color: #fff;
  padding: 2px 8px;
  border-radius: 99px;
}

/* ── BRANDS STRIP ── */
.brands {
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface2);
}
.brands-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.brands-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 6px;
}
.brand-pill {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted2);
  background: #fff;
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 99px;
  transition: all 0.2s;
}
.brand-pill:hover { color: var(--primary); border-color: var(--primary); background: var(--primary-glow); }

/* ── WALKIN BANNER ── */
.walkin-banner {
  background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 60%, #3B82F6 100%);
  padding: 52px 0;
}
.walkin-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.walkin-text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}
.walkin-text p { color: rgba(255,255,255,0.85); font-size: 1rem; max-width: 500px; }
.walkin-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--primary-dark); font-weight: 700; }
.btn-white:hover { background: #EFF6FF; transform: translateY(-1px); }
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  font-weight: 600;
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.service-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.25s ease;
}
.service-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(37,99,235,0.1);
  transform: translateY(-3px);
}
.service-icon {
  width: 48px; height: 48px;
  background: var(--primary-glow);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.service-name { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.service-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
.service-price { margin-top: 14px; font-size: 0.82rem; font-weight: 700; color: var(--primary); }

/* ── HOW IT WORKS ── */
.how-bg { background: var(--surface2); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: var(--border);
}
.step { text-align: center; position: relative; }
.step-num {
  width: 80px; height: 80px;
  background: #fff;
  border: 2.5px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(37,99,235,0.12);
}
.step-title { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.step-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }

/* ── BOOK CTA BOX ── */
.book-cta-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  align-items: center;
}
.book-cta-right .contact-items { gap: 12px; }

/* ── CONTACT ITEMS ── */
.contact-items { display: flex; flex-direction: column; gap: 12px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--text);
}
.contact-item:hover { border-color: var(--primary); background: var(--primary-glow); }
.contact-item-icon {
  width: 36px; height: 36px;
  background: var(--primary-glow);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-item-label { font-size: 0.72rem; color: var(--muted); font-weight: 600; text-transform: uppercase; }
.contact-item-value { font-weight: 600; color: var(--text); }

/* ── STORE PHOTOS ── */
.store-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.store-photo-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: var(--surface2);
  aspect-ratio: 16/9;
}
.store-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── LOCATION ── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  margin-top: 48px;
  align-items: start;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 12px 0; font-size: 0.9rem; }
.hours-table td:first-child { color: var(--muted); font-weight: 500; }
.hours-table td:last-child { color: var(--text); font-weight: 700; text-align: right; }
.hours-table tr.today-row td { color: var(--primary); }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  height: 340px;
}
.map-wrap img { width: 100%; height: 100%; object-fit: cover; }
.location-address {
  margin-top: 20px;
  padding: 18px;
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}
.location-address strong { color: var(--text); display: block; margin-bottom: 4px; }

/* ── FAQ ── */
.faq-bg { background: var(--surface2); }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 48px;
  max-width: 780px;
}
.faq-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--primary); }
.faq-q svg { flex-shrink: 0; transition: transform 0.3s; color: var(--muted); }
.faq-item.open .faq-q svg { transform: rotate(45deg); color: var(--primary); }
.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-a { display: block; }

/* ── BSR STRIP ── */
.bsr-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.bsr-pill {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-glow);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 99px;
}
.bsr-dot { color: var(--muted); font-weight: 700; }

/* ── BUY & SELL ── */
.bsell-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.bsell-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
}
.bsell-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,99,235,0.1);
}
.bsell-card.bsell-highlight {
  background: var(--primary);
  border-color: var(--primary);
}
.bsell-card.bsell-highlight .bsell-title { color: #fff; }
.bsell-card.bsell-highlight .bsell-desc { color: rgba(255,255,255,0.85); }
.bsell-card.bsell-highlight .btn-outline {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.bsell-card.bsell-highlight .btn-outline:hover { background: rgba(255,255,255,0.25); }
.bsell-icon { font-size: 2rem; margin-bottom: 16px; }
.bsell-title { font-size: 1.05rem; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.bsell-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.6; flex: 1; }

/* ── FOOTER ── */
.footer {
  background: var(--text);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo-name { font-size: 1.3rem; font-weight: 900; color: var(--primary); letter-spacing: -0.01em; }
.footer-logo-sub { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #64748B; margin-bottom: 14px; }
.footer-desc { font-size: 0.85rem; color: #94A3B8; line-height: 1.6; margin-bottom: 20px; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #94A3B8;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-contact a:hover { color: #fff; }
.footer-heading { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #64748B; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: #94A3B8; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-hours-list { display: flex; flex-direction: column; gap: 8px; }
.footer-hour { display: flex; justify-content: space-between; font-size: 0.82rem; }
.footer-hour-day { color: #64748B; }
.footer-hour-time { color: #94A3B8; font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.8rem; color: #64748B; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: #64748B; transition: color 0.2s; }
.footer-legal a:hover { color: #94A3B8; }

/* ── ANIMATIONS ── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .book-cta-box { grid-template-columns: 1fr; padding: 28px; }
  .location-grid { grid-template-columns: 1fr; }
  .bsell-grid { grid-template-columns: 1fr; }
  .store-photos { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .hero { padding: 60px 0 56px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; }
  .walkin-inner { flex-direction: column; }
  .walkin-btns { width: 100%; }
  .walkin-btns .btn { width: 100%; justify-content: center; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 400px) {
  .services-grid { grid-template-columns: 1fr; }
}
