/* ==========================================================================
   AL'S QUICK STOP 2026 — MAIN STYLESHEET
   Crisp, Bright Classic 2019 Retail UI + Futuristic Mobile-First Polish
   ========================================================================== */

@import url('tokens.css');

/* --- Reset & Global Baseline --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  background-color: var(--surface-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--surface-base);
  color: var(--text-primary);
  min-height: 100vh;
  width: 100%;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-smooth);
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

/* --- Container & Utilities --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Precision Vector SVG Icons (No Emojis) */
.svg-icon {
  display: inline-block;
  width: 1.15em;
  height: 1.15em;
  vertical-align: -0.15em;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.service-icon .svg-icon {
  width: 28px;
  height: 28px;
  stroke: var(--brand-navy);
}

.about-badge-icon .svg-icon {
  width: 22px;
  height: 22px;
  stroke: var(--brand-navy);
}

@media (min-width: 768px) {
  .container {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }
}

.section {
  padding: 3rem 0;
  position: relative;
  width: 100%;
}

@media (min-width: 768px) {
  .section {
    padding: var(--space-3xl) 0;
  }
}

#services,
#stores,
#testimonials {
  background: var(--surface-layer-1);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.35rem 0.85rem;
  background: var(--brand-navy-soft);
  border: 1px solid rgba(46, 54, 144, 0.16);
  border-radius: var(--radius-pill);
  color: var(--brand-navy);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.section-tag.red {
  background: var(--brand-red-soft);
  border-color: rgba(236, 34, 39, 0.2);
  color: var(--brand-red);
}

.section-tag.green {
  background: var(--brand-green-soft);
  border-color: rgba(16, 185, 129, 0.4);
  color: var(--brand-green-dark);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.section-title span.highlight {
  color: var(--brand-red);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin-bottom: var(--space-xl);
  line-height: 1.65;
}

/* ==========================================================================
   NAVIGATION BAR (Apple-Grade Frosted Acrylic Header)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--surface-glass-light);
  backdrop-filter: var(--surface-glass-blur);
  -webkit-backdrop-filter: var(--surface-glass-blur);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-logo img {
  height: 52px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.06));
  transition: transform var(--duration-fast) var(--ease-smooth);
}

.brand-logo:hover img {
  transform: scale(1.03);
}

/* Deprecated redundant text block (kept as hidden failsafe) */
.brand-text-block {
  display: none !important;
}

@media (max-width: 580px) {
  .brand-logo img {
    height: 42px;
  }
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--duration-fast) var(--ease-smooth);
  position: relative;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
}

.nav-link:hover {
  color: var(--brand-navy);
  background: var(--brand-navy-soft);
}

.nav-link.active {
  color: var(--brand-navy);
  font-weight: 700;
  background: var(--brand-navy-soft);
  box-shadow: inset 0 0 0 1px rgba(46, 54, 144, 0.2);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Reusable Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-smooth);
  border: 1px solid transparent;
  white-space: nowrap;
  min-height: 44px; /* Apple touch guideline */
  touch-action: manipulation;
}

.btn-primary {
  background: var(--brand-red);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(201, 42, 42, 0.25);
}

.btn-primary:hover {
  background: var(--brand-red-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(201, 42, 42, 0.35);
}

.btn-navy {
  background: var(--brand-navy);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(46, 54, 144, 0.25);
}

.btn-navy:hover {
  background: var(--brand-navy-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(46, 54, 144, 0.35);
}

.btn-secondary {
  background: #ffffff;
  border: 1px solid var(--border-medium);
  color: var(--brand-navy);
}

.btn-secondary:hover {
  background: var(--brand-navy-soft);
  border-color: var(--brand-navy);
  color: var(--brand-navy-hover);
  transform: translateY(-1px);
}

.btn-amber {
  background: var(--brand-amber);
  color: #ffffff;
  font-weight: 600;
}

.btn-amber:hover {
  background: var(--brand-amber-hover);
  color: #ffffff;
}

.btn-sm {
  padding: 0.45rem 0.95rem;
  font-size: 0.82rem;
  min-height: 38px;
}

/* Apple-Grade Minimal Mobile Hamburger */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 10px;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.mobile-menu-btn:hover {
  background: rgba(0, 0, 0, 0.08);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn span {
  display: block;
  height: 2px;
  width: 20px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

/* Morphing hamburger to X */
.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Apple Acrylic Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 4.5rem;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.25rem 1.25rem 2.25rem;
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  z-index: 999;
  max-height: calc(100vh - 4.5rem);
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
  opacity: 0;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.active {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.mobile-drawer a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: 0.75rem 0.6rem;
  border-bottom: 1px solid var(--border-hairline);
  min-height: 48px;
  display: flex;
  align-items: center;
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) var(--ease-smooth);
}

.mobile-drawer a:hover {
  background: rgba(0, 0, 0, 0.03);
  padding-left: 0.9rem;
  color: var(--brand-red);
}

/* ==========================================================================
   CINEMATIC FULL-VIEWPORT HERO SLIDER (Ken Burns & Apple Reveal)
   ========================================================================== */
.hero-section {
  position: relative;
  margin-top: 4.5rem;
  background: #0f172a;
  overflow: hidden;
  padding-bottom: 3rem;
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: 85vh;
  height: clamp(560px, 86vh, 880px);
  overflow: hidden;
  background: #0f172a;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), visibility 1s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem 6rem;
  text-align: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: scale(1);
}

.slide.active .slide-bg {
  animation: kenBurns 18s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  50% { transform: scale(1.08) translate(-1%, -0.5%); }
  100% { transform: scale(1.03) translate(0.5%, -1%); }
}

.slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.85) 100%),
              linear-gradient(180deg, rgba(15, 23, 42, 0.35) 0%, rgba(15, 23, 42, 0.85) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
}

.slide.active .slide-tag {
  animation: appleFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.slide.active .slide-title {
  animation: appleFadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.slide.active .slide-desc {
  animation: appleFadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.slide.active .slide-actions {
  animation: appleFadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

@keyframes appleFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-tag {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.slide-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.slide-desc {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
  line-height: 1.65;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.slide-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

@media (max-width: 480px) {
  .slide-actions .btn {
    width: 100%;
  }
}

/* Floating Mouse Scroll Indicator */
.scroll-indicator-wrap {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.85;
  transition: opacity 250ms ease;
  cursor: pointer;
  text-decoration: none;
}

.scroll-indicator-wrap:hover {
  opacity: 1;
}

.mouse-icon {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 11px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.mouse-wheel {
  width: 3px;
  height: 6px;
  background: #ffffff;
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: mouseScroll 1.8s infinite;
}

@keyframes mouseScroll {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
}

.scroll-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
}

.carousel-indicators {
  position: absolute;
  bottom: 7rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.carousel-dot {
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 300ms var(--ease-smooth);
  padding: 0;
}

.carousel-dot.active {
  width: 44px;
  background: #ffffff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   GOOGLE BUSINESS LIVE BAR (Bright & Daylight Clear)
   ========================================================================== */
.google-biz-bar {
  margin-top: 1.25rem;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .google-biz-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
  }
}

.biz-status-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  background: var(--brand-green-soft);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-green-dark);
  white-space: nowrap;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 0 8px var(--brand-green);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.biz-hours-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.biz-nearest-badge {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 600;
}

.biz-nearest-badge span.dist {
  color: var(--brand-red);
}

/* Stats Ribbon */
.stats-ribbon {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
}

@media (min-width: 768px) {
  .stats-ribbon {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
  }
}

.stat-box {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-fast) var(--ease-smooth), box-shadow var(--duration-fast) var(--ease-smooth);
}

.stat-box:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stats-ribbon .stat-box:nth-child(odd) .stat-number {
  color: var(--brand-navy);
}

.stats-ribbon .stat-box:nth-child(even) .stat-number {
  color: var(--brand-red);
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 2.2rem;
  }
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}

/* ==========================================================================
   WHO WE ARE (Clean Light 2-Column Section)
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.about-text p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about-highlight-box {
  background: var(--brand-navy-soft);
  border-left: 4px solid var(--brand-navy);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  font-style: italic;
  color: var(--brand-navy);
  font-weight: 500;
  font-size: 1.02rem;
}

.about-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .about-card {
    padding: var(--space-xl);
  }
}

.about-badge-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1rem;
}

.about-badge-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.about-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--surface-layer-1);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* ==========================================================================
   SERVICES & PARTNERS (Clean White Cards + Color Badges)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-fast) var(--ease-smooth);
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-navy);
  box-shadow: 0 12px 32px rgba(46, 54, 144, 0.1);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--brand-navy-soft);
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.service-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.service-locations-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-navy);
  padding-top: 0.6rem;
  border-top: 1px solid var(--border-subtle);
}

/* ==========================================================================
   INTERACTIVE STORE DIRECTORY (100% Fluid & Mobile-Ready)
   ========================================================================== */
.store-controls {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1rem;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .store-controls {
    padding: 1.25rem;
    border-radius: var(--radius-xl);
  }
}

.search-bar-row {
  width: 100%;
}

.search-input-wrapper {
  position: relative;
  width: 100%;
}

.search-input {
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 2.75rem;
  background: var(--surface-layer-1);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  color: var(--text-primary);
  outline: none;
  min-height: 46px;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.search-input:focus {
  border-color: var(--brand-red);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

/* Horizontal Swiping Pills on Mobile */
.filter-pills-row {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.filter-pills-row::-webkit-scrollbar {
  display: none;
}

.filter-pill {
  padding: 0.5rem 1.15rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  flex-shrink: 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) var(--ease-smooth);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.filter-pill:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #0f172a;
}

.filter-pill.active {
  background: var(--brand-navy);
  color: #ffffff;
  border-color: var(--brand-navy);
  box-shadow: 0 4px 14px rgba(46, 54, 144, 0.25);
}

.store-meta-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  padding-top: 0.25rem;
}

/* Store Cards Grid (Fluid Down to 320px) */
.store-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  width: 100%;
}

@media (min-width: 640px) {
  .store-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .store-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.store-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  width: 100%;
}

.store-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 54, 144, 0.28);
  box-shadow: 0 16px 36px -4px rgba(0, 0, 0, 0.1);
}

.store-card.closest-match {
  border: 2px solid var(--brand-red);
  box-shadow: 0 6px 24px rgba(236, 34, 39, 0.18);
}

.store-image-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--surface-layer-2);
}

.store-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-smooth);
}

.store-card:hover .store-image-wrap img {
  transform: scale(1.04);
}

.store-number-pill {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  padding: 0.28rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.store-status-pill {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #0f172a;
  padding: 0.28rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.store-status-pill::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.25);
}

.store-body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.store-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text-primary);
}

.store-address {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.store-hours {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.store-amenities {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.amenity-chip {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  height: fit-content;
  padding: 0.3rem 0.65rem;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.25;
  transition: background var(--duration-fast), color var(--duration-fast);
}

.amenity-chip:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.store-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: auto;
}

/* ==========================================================================
   COFFEE CLUB LOYALTY CARD (Clean & Mobile Punch Slots)
   ========================================================================== */
@keyframes subtlePulse {
  0% { box-shadow: 0 0 0 0 rgba(236, 34, 39, 0.3); }
  70% { box-shadow: 0 0 0 10px rgba(236, 34, 39, 0); }
  100% { box-shadow: 0 0 0 0 rgba(236, 34, 39, 0); }
}

.loyalty-banner {
  background: var(--surface-layer-1);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.25rem;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
  animation: subtlePulse 3s infinite;
}

@media (min-width: 768px) {
  .loyalty-banner {
    padding: var(--space-2xl);
  }
}

.loyalty-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .loyalty-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.coffee-card-preview {
  background: var(--surface-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
}

.punch-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
}

@media (min-width: 500px) {
  .punch-slots {
    grid-template-columns: repeat(7, 1fr);
  }
}

.punch-slot {
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #cbd5e1;
}

.punch-slot.free-cup {
  border-color: var(--brand-amber);
  background: var(--brand-amber);
  color: #0f172a;
}

/* ==========================================================================
   PATEL LEADERSHIP TEAM (Crisp Light Cards)
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
  }
}

.team-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-fast) var(--ease-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(0, 0, 0, 0.16);
  box-shadow: var(--shadow-lg);
}

.team-photo-wrap {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, rgba(201, 42, 42, 0.25), rgba(217, 119, 6, 0.25));
  margin-bottom: 1rem;
}

.team-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.team-role {
  font-size: 0.74rem;
  color: var(--brand-red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ==========================================================================
   TESTIMONIALS (Clean White Cards)
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.test-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.test-quote {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 0.85rem;
  flex-grow: 1;
}

.test-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.test-source {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   CONTACT SECTION & MAP
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

.contact-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .contact-card {
    padding: var(--space-xl);
  }
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 0.75rem 0.95rem;
  background: var(--surface-layer-1);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.form-control:focus {
  border-color: var(--brand-red);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  height: 100%;
  min-height: 320px;
  box-shadow: var(--shadow-sm);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 320px;
}

/* ==========================================================================
   FOOTER (Google-Style Minimalist White)
   ========================================================================== */
.site-footer {
  background: var(--surface-base);
  color: var(--text-secondary);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--brand-red);
  text-decoration: underline;
}

.footer-hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-navy);
  background: rgba(46, 54, 144, 0.06);
  border: 1px solid rgba(46, 54, 144, 0.16);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-top: 0.5rem;
}

.footer-hours-badge .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.25);
  display: inline-block;
}

.footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ==========================================================================
   FLAGSHIP FEATURES: VIEW TOGGLE, LEAFLET MAP & MOBILE DRIVER BAR
   ========================================================================== */

/* 1. Segmented View Toggle (Grid ⇋ Map) */
.view-toggle-group {
  background: var(--surface-layer-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 3px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.view-toggle-btn {
  border: none;
  background: transparent;
  padding: 0.35rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.view-toggle-btn:hover {
  color: var(--text-primary);
}

.view-toggle-btn.active {
  background: var(--brand-red);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(236, 34, 39, 0.35);
}

/* 2. Interactive Leaflet Map Container */
.store-map-container {
  height: 540px;
  width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 1.5rem;
  z-index: 10;
}

/* Custom Red Map Marker Pin */
.als-map-pin {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 32px !important;
  height: 32px !important;
  background: var(--brand-red);
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
  font-weight: 800;
  font-size: 0.82rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.als-map-pin span {
  transform: rotate(45deg);
}

.als-map-pin:hover {
  background: #b91c1c;
  transform: rotate(-45deg) scale(1.15);
}

/* Leaflet Popup Theming */
.leaflet-popup-content-wrapper {
  background: var(--surface-base) !important;
  color: var(--text-primary) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-xl) !important;
  border: 1px solid var(--border-subtle);
  padding: 0 !important;
  overflow: hidden;
}

.leaflet-popup-content {
  margin: 0 !important;
  line-height: 1.5 !important;
}

/* Google Maps InfoWindow Theming */
.gm-style .gm-style-iw-c {
  padding: 0 !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden !important;
  box-shadow: var(--shadow-xl) !important;
  background: var(--surface-base) !important;
  border: 1px solid var(--border-subtle) !important;
}

.gm-style .gm-style-iw-d {
  overflow: hidden !important;
  padding: 0 !important;
  max-width: 280px !important;
}

.gm-style .gm-style-iw-tc::after {
  background: var(--surface-base) !important;
}

.gm-ui-hover-effect {
  top: 4px !important;
  right: 4px !important;
  background: rgba(0, 0, 0, 0.4) !important;
  border-radius: 50% !important;
}
.gm-ui-hover-effect span {
  background: #ffffff !important;
}

.map-popup-card {
  width: 260px;
}

.map-popup-img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
}

.map-popup-body {
  padding: 0.9rem;
}

.map-popup-title {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.map-popup-addr {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.map-popup-hours {
  font-size: 0.78rem;
  color: #10b981;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.map-popup-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--brand-red);
  color: #ffffff !important;
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

/* 3. Mobile Driver Quick-Bar */
.mobile-driver-bar {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 64px;
  }

  .mobile-driver-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.45rem 1rem calc(0.45rem + env(safe-area-inset-bottom, 0px));
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
  }

  .driver-bar-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    background: transparent;
    border: none;
    color: #e2e8f0;
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-md);
    transition: color 0.15s ease, background 0.15s ease;
  }

  .driver-bar-btn svg {
    color: #f87171;
  }

  .driver-bar-btn:active, .driver-bar-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
  }
}

/* ==========================================================================
   APPLE-GRADE SCROLL REVEAL (GPU-Accelerated • 60/120fps • Zero Layout Shift)
   ========================================================================== */
.reveal-init {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-init.revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Delicate shift for typography */
.section-tag.reveal-init,
.section-title.reveal-init,
.section-subtitle.reveal-init {
  transform: translate3d(0, 12px, 0);
  transition-duration: 0.4s;
}

/* Subtle desktop staggered delays for card grids */
@media (min-width: 769px) {
  .services-grid > *:nth-child(1) { transition-delay: 0.03s; }
  .services-grid > *:nth-child(2) { transition-delay: 0.07s; }
  .services-grid > *:nth-child(3) { transition-delay: 0.11s; }
  .services-grid > *:nth-child(4) { transition-delay: 0.15s; }
  .services-grid > *:nth-child(5) { transition-delay: 0.19s; }
  .services-grid > *:nth-child(6) { transition-delay: 0.23s; }

  .team-grid > *:nth-child(1) { transition-delay: 0.04s; }
  .team-grid > *:nth-child(2) { transition-delay: 0.08s; }
  .team-grid > *:nth-child(3) { transition-delay: 0.12s; }
  .team-grid > *:nth-child(4) { transition-delay: 0.16s; }
  .team-grid > *:nth-child(5) { transition-delay: 0.20s; }

  .testimonials-grid > *:nth-child(1) { transition-delay: 0.04s; }
  .testimonials-grid > *:nth-child(2) { transition-delay: 0.09s; }
  .testimonials-grid > *:nth-child(3) { transition-delay: 0.14s; }
}

/* Mobile-first touch optimization: zero delay so cards reveal instantly on scroll */
@media (max-width: 768px) {
  .reveal-init {
    transform: translate3d(0, 15px, 0);
    transition-duration: 0.38s;
  }
}

/* Accessibility: respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal-init {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   FEATURED IN-STORE SHOWCASE (7-Eleven Inspired Cravings & Rituals)
   ========================================================================== */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.showcase-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(46, 54, 144, 0.25);
}

.showcase-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #0f172a;
}

.showcase-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.showcase-card:hover .showcase-img-wrap img {
  transform: scale(1.04);
}

.showcase-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.badge-morning,
.badge-beer,
.badge-lottery {
  /* Unified frosted dark glass pill for supreme contrast & elegance */
  background: rgba(15, 23, 42, 0.82);
  color: #ffffff;
}

.showcase-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.showcase-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
}

.showcase-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.showcase-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.showcase-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}

.showcase-avail {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-navy);
}

/* ==========================================================================
   COMMERCIAL DIESEL & FLEET CORRIDOR (Circle K High-Flow Fueling Hub)
   ========================================================================== */
.diesel-fleet-section {
  padding-top: 1rem;
  padding-bottom: 2.5rem;
}

.diesel-fleet-banner {
  background: linear-gradient(135deg, #181d24 0%, #232b36 100%);
  border-radius: var(--radius-2xl);
  padding: 2.5rem 2.25rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.diesel-fleet-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(236, 34, 39, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.diesel-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.diesel-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.diesel-desc {
  font-size: 1rem;
  color: #cbd5e1;
  max-width: 820px;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.diesel-locations-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.diesel-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  color: #e2e8f0;
}

.diesel-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-diesel {
  background: var(--brand-red);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(236, 34, 39, 0.35);
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

.btn-diesel:hover {
  background: var(--brand-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236, 34, 39, 0.45);
}

.diesel-hours {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 600;
}

/* ==========================================================================
   MOBILE DRIVER QUICK-PASS (Circle K App Alternative - 1-Tap PWA)
   ========================================================================== */
.driver-pass-banner {
  position: fixed;
  bottom: 80px;
  left: 1rem;
  right: 1rem;
  max-width: 520px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(46, 54, 144, 0.18);
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 0.9rem 1.1rem;
  z-index: 100;
  animation: slideUpPass 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.driver-pass-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0 !important;
}

.driver-pass-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.driver-pass-icon {
  flex-shrink: 0;
  background: #ffffff;
  padding: 4px 6px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}

.driver-pass-title {
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--brand-navy);
  line-height: 1.2;
}

.driver-pass-desc {
  font-size: 0.72rem;
  color: var(--text-secondary);
  line-height: 1.3;
  margin-top: 2px;
}

.driver-pass-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.driver-pass-dismiss {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

/* Responsive adjustments for showcase & diesel */
@media (max-width: 992px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .diesel-fleet-banner {
    padding: 1.75rem 1.25rem;
  }
  .diesel-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-diesel {
    width: 100%;
    justify-content: center;
  }
  .driver-pass-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 74px;
  }
}

/* ==========================================================================
   BRAND FAMILY PORTFOLIO (Apple-Grade Corporate Ecosystem Grid)
   ========================================================================== */
.brand-family-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.brand-family-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.brand-family-card:hover {
  transform: translateY(-5px);
  border-color: rgba(46, 54, 144, 0.3);
  box-shadow: 0 16px 36px -4px rgba(0, 0, 0, 0.1);
}

.brand-family-logo-wrap {
  width: 112px;
  height: 112px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  padding: 10px;
  transition: transform var(--transition-base);
}

.brand-family-card:hover .brand-family-logo-wrap {
  transform: scale(1.06);
}

.brand-family-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-family-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-navy);
  background: rgba(46, 54, 144, 0.07);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.6rem;
}

.brand-family-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.brand-family-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.brand-family-meta {
  width: 100%;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-navy);
}

/* Tactile Haptic Press States for Apple HIG Experience */
.btn:active,
.filter-pill:active,
.brand-family-card:active,
.driver-bar-btn:active,
.view-toggle-btn:active {
  transform: scale(0.97) !important;
  transition: transform 0.08s ease;
}

@media (max-width: 1024px) {
  .brand-family-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 600px) {
  .brand-family-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}


