/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* === PALETTE – 1.jpg tones, slightly deepened for contrast === */
  --bg-primary: #dff0f9;          /* deeper sky blue */
  --bg-card: #f5fbff;             /* near-white with sky tint */
  --bg-alt: #d4eddf;              /* deeper mint green */
  --bg-hero: linear-gradient(160deg, #9fd8f0 0%, #b8e8cc 50%, #d8f2e5 100%);

  --accent: #007d3e;              /* deep grass green */
  --accent-dark: #005a2c;
  --accent-light: #c8eeda;
  --accent-glow: rgba(0, 125, 62, 0.2);

  --blue: #1251a3;                /* deeper VinFast blue */
  --blue-light: #cfe0f7;
  --blue-dark: #0b3880;

  --text-primary: #061320;        /* near-black navy */
  --text-secondary: #2d4459;      /* darker slate */
  --text-muted: #6b8799;

  --border: rgba(0, 125, 62, 0.22);
  --border-subtle: rgba(18, 81, 163, 0.14);
  --shadow-sm: 0 2px 8px rgba(6,19,32,0.10);
  --shadow-md: 0 6px 24px rgba(6,19,32,0.13);
  --shadow-lg: 0 16px 48px rgba(6,19,32,0.17);

  --max-w: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Be Vietnam Pro', 'Inter', -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #e8f4fb; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; color: var(--text-primary); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; color: var(--text-primary); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; color: var(--text-primary); }
h4 { font-size: 1rem; font-weight: 600; color: var(--text-primary); }
p { color: var(--text-secondary); font-size: 1rem; line-height: 1.75; }

.accent { color: var(--accent); }
.blue { color: var(--blue); }

.section-tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-dark);
  border: 1.5px solid rgba(0,125,62,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ===== CONTAINER ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,168,85,0.3);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,168,85,0.4);
}
.btn-outline {
  background: #fff;
  color: var(--text-primary);
  border: 1.5px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 16px rgba(21,101,192,0.25);
}
.btn-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(215, 238, 252, 0.96);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(18,81,163,0.18);
  box-shadow: 0 2px 20px rgba(6,19,32,0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 38px;
  width: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text span:first-child { font-size: 0.95rem; font-weight: 800; color: var(--text-primary); }
.nav-logo-text span:last-child { font-size: 0.68rem; color: var(--accent); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent-dark); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta { display: flex; gap: 8px; }
.nav-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.825rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.nav-btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-subtle);
}
.nav-btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.nav-btn-filled {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 10px rgba(0,168,85,0.25);
}
.nav-btn-filled:hover { background: var(--accent-dark); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
  background: var(--bg-hero);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 75% 30%, rgba(80,170,220,0.45) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(60,160,90,0.28) 0%, transparent 55%),
    radial-gradient(ellipse 30% 30% at 90% 80%, rgba(18,81,163,0.14) 0%, transparent 50%);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(21,101,192,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,101,192,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
/* Decorative clouds */
.hero::before {
  content: '';
  position: absolute;
  top: 15%; right: 5%;
  width: 180px; height: 60px;
  background: rgba(255,255,255,0.6);
  border-radius: 50px;
  filter: blur(12px);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: 25%; right: 12%;
  width: 120px; height: 40px;
  background: rgba(255,255,255,0.5);
  border-radius: 50px;
  filter: blur(10px);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(0,168,85,0.3);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}
.hero-title { margin-bottom: 20px; }
.hero-title .line { display: block; }
.hero-title .highlight { color: var(--accent); }
.hero-title .highlight-blue { color: var(--blue); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1.5px solid rgba(21,101,192,0.12);
}
.hero-stat-num { display: block; font-size: 1.8rem; font-weight: 800; color: var(--accent); line-height: 1; }
.hero-stat-label { display: block; font-size: 0.73rem; color: var(--text-muted); margin-top: 4px; font-weight: 500; }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(21,101,192,0.08);
}
.hero-station-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.hero-img-wrap:hover .hero-station-img { transform: scale(1.03); }
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 40%, rgba(0,0,0,0.35) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(0,168,85,0.3);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-dark);
  box-shadow: var(--shadow-sm);
}

.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,0.9);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 4s ease-in-out infinite;
  box-shadow: var(--shadow-md);
}
.hero-float-card.card-1 { top: -18px; right: -18px; animation-delay: 0s; }
.hero-float-card.card-2 { bottom: 28px; left: -28px; animation-delay: 1.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float-icon { font-size: 1.4rem; }
.float-text strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text-primary); }
.float-text span { font-size: 0.72rem; color: var(--text-muted); }

/* ===== SECTIONS GENERAL ===== */
section { padding: 96px 0; }
.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid rgba(0,168,85,0.08);
  border-bottom: 1px solid rgba(0,168,85,0.08);
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header p { max-width: 560px; margin: 16px auto 0; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.from-left { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }
.reveal.scale-in { transform: scale(0.92); }
.reveal.visible { opacity: 1; transform: none; }

/* ===== VALUES SECTION ===== */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.value-card:hover { border-color: rgba(0,168,85,0.2); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value-card:hover::before { transform: scaleX(1); }
.value-icon { font-size: 2.4rem; margin-bottom: 20px; display: block; }
.value-card h3 { margin-bottom: 12px; }
.value-card p { font-size: 0.9rem; }

/* ===== INTRO SECTION ===== */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-content .section-tag { margin-bottom: 20px; }
.intro-content h2 { margin-bottom: 20px; }
.intro-features { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.intro-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg-card);
  border-radius: 10px;
  border: 1.5px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.intro-feature:hover { border-color: rgba(0,168,85,0.2); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 40px; height: 40px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.feature-text strong { display: block; font-size: 0.9rem; margin-bottom: 2px; color: var(--text-primary); }
.feature-text span { font-size: 0.82rem; color: var(--text-muted); }

.intro-visual { position: relative; }
.station-mockup {
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.station-info-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 20px; background: var(--bg-card); }
.station-info-item { text-align: center; padding: 12px; background: var(--bg-alt); border-radius: 10px; border: 1.5px solid rgba(0,168,85,0.12); }
.station-info-item strong { display: block; color: var(--accent); font-size: 1.1rem; font-weight: 800; }
.station-info-item span { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; }

/* ===== CHARGING SPECS ===== */
.specs-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: start; }
.spec-big-num { font-size: 5rem; font-weight: 900; color: var(--accent); line-height: 1; display: block; }
.spec-big-label { font-size: 0.85rem; color: var(--text-secondary); display: block; margin-top: 4px; }
.specs-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.spec-tag {
  background: var(--blue-light);
  border: 1.5px solid rgba(21,101,192,0.18);
  color: var(--blue-dark);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
}
.specs-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.spec-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.spec-card:hover { border-color: rgba(0,168,85,0.2); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.spec-card-num { font-size: 2rem; font-weight: 800; color: var(--accent); display: block; line-height: 1; }
.spec-card-kw { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.spec-card h4 { margin: 8px 0 6px; }
.spec-card p { font-size: 0.82rem; }
.specs-features { display: flex; gap: 16px; flex-wrap: wrap; }
.spec-feature { display: flex; align-items: center; gap: 8px; color: var(--text-secondary); font-size: 0.875rem; }
.spec-feature-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

/* ===== COFFEE SECTION ===== */
.coffee-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.coffee-visual { position: relative; }
.coffee-card-main {
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.coffee-img-placeholder {
  height: 260px;
  background: linear-gradient(135deg, #c8e9f8, #ddf3e8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
}
.coffee-card-content { padding: 24px; background: var(--bg-card); }
.coffee-amenity-list { display: flex; flex-direction: column; gap: 10px; }
.amenity-item { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--text-secondary); }
.amenity-check {
  width: 22px; height: 22px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-dark); font-size: 0.72rem; font-weight: 700; flex-shrink: 0;
}
.coffee-content .section-tag { margin-bottom: 20px; }
.coffee-content h2 { margin-bottom: 20px; }
.coffee-perks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 28px; }
.perk-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.perk-item:hover { border-color: rgba(0,168,85,0.25); color: var(--accent-dark); }
.perk-icon { font-size: 1.2rem; }

/* ===== MENU SECTION ===== */
.menu-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 48px; flex-wrap: wrap; }
.menu-tab {
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid var(--border-subtle);
  background: var(--bg-card);
  color: var(--text-secondary);
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}
.menu-tab.active, .menu-tab:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,168,85,0.25);
}
.menu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.menu-category { display: none; grid-column: 1 / -1; }
.menu-category.active { display: contents; }
.menu-item-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 20px;
  transition: all 0.3s;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.menu-item-card:hover { border-color: rgba(0,168,85,0.25); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.menu-item-emoji { font-size: 2rem; margin-bottom: 12px; }
.menu-item-name { font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; color: var(--text-primary); }
.menu-item-price { color: var(--accent-dark); font-weight: 800; font-size: 0.95rem; }

/* ===== LOYALTY SECTION ===== */
.loyalty-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.loyalty-card {
  background: linear-gradient(145deg, #b8dfc8, #c2e8d4, #b8d8f0);
  border: 1.5px solid rgba(0,125,62,0.28);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.loyalty-card::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,168,85,0.1), transparent);
  border-radius: 50%;
}
.loyalty-points-display { text-align: center; margin-bottom: 32px; }
.loyalty-circle {
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  background: rgba(255,255,255,0.7);
  position: relative;
  box-shadow: 0 4px 20px rgba(0,168,85,0.2);
}
.loyalty-circle::before {
  content: '';
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(0,168,85,0.2);
}
.loyalty-num { font-size: 2.5rem; font-weight: 900; color: var(--accent); line-height: 1; }
.loyalty-sub { font-size: 0.7rem; color: var(--text-muted); }
.loyalty-tiers { display: flex; flex-direction: column; gap: 10px; }
.tier-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  background: rgba(255,255,255,0.7);
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.9);
  box-shadow: var(--shadow-sm);
}
.tier-left { display: flex; align-items: center; gap: 10px; }
.tier-icon { font-size: 1.2rem; }
.tier-name { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); }
.tier-req { font-size: 0.75rem; color: var(--text-muted); }
.tier-badge { padding: 4px 10px; border-radius: 100px; font-size: 0.72rem; font-weight: 700; }
.tier-badge.bronze { background: rgba(205,127,50,0.15); color: #b45309; border: 1px solid rgba(205,127,50,0.3); }
.tier-badge.silver { background: rgba(100,116,139,0.12); color: #475569; border: 1px solid rgba(100,116,139,0.25); }
.tier-badge.gold { background: rgba(234,179,8,0.15); color: #a16207; border: 1px solid rgba(234,179,8,0.3); }

.loyalty-content h2 { margin-bottom: 20px; }
.loyalty-benefits { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.benefit-item { display: flex; align-items: flex-start; gap: 14px; }
.benefit-icon {
  width: 38px; height: 38px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.benefit-text strong { display: block; font-size: 0.9rem; margin-bottom: 2px; color: var(--text-primary); }
.benefit-text span { font-size: 0.82rem; color: var(--text-muted); }

/* ===== PROMOTIONS SECTION ===== */
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.promo-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.promo-card:hover { border-color: rgba(0,168,85,0.2); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.promo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
}
.promo-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-dark);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.promo-icon { font-size: 2.5rem; margin-bottom: 16px; }
.promo-card h3 { margin-bottom: 10px; }
.promo-card p { font-size: 0.85rem; }
.promo-value { margin-top: 20px; font-size: 1.5rem; font-weight: 800; color: var(--accent); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.testimonial-card:hover { border-color: rgba(0,168,85,0.2); box-shadow: var(--shadow-md); }
.stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 14px; }
.testimonial-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 800; color: #fff; flex-shrink: 0;
}
.author-name { font-size: 0.875rem; font-weight: 700; color: var(--text-primary); }
.author-detail { font-size: 0.75rem; color: var(--text-muted); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #1565c0 0%, #0d47a1 40%, #00695c 100%);
  border-radius: 24px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 80px 0;
  box-shadow: 0 20px 60px rgba(21,101,192,0.3);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 250px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.12), transparent);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(0,168,85,0.25), transparent);
  border-radius: 50%;
}
.cta-banner h2 { color: #fff; margin-bottom: 16px; position: relative; z-index: 1; }
.cta-banner p { font-size: 1.05rem; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; color: rgba(255,255,255,0.82); position: relative; z-index: 1; }
.cta-banner .section-tag { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.25); position: relative; z-index: 1; }
.cta-banner .btn-group { position: relative; z-index: 1; }
.cta-banner .btn-primary { background: #fff; color: var(--blue-dark); }
.cta-banner .btn-primary:hover { background: var(--accent-light); color: var(--accent-dark); }
.cta-banner .btn-outline { border-color: rgba(255,255,255,0.4); color: #fff; background: rgba(255,255,255,0.1); }
.cta-banner .btn-outline:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.7); color: #fff; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; }
.contact-info h2 { margin-bottom: 16px; }
.contact-details { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--accent-light);
  border: 1.5px solid rgba(0,168,85,0.18);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: 0.875rem; color: var(--text-primary); margin-bottom: 2px; font-weight: 700; }
.contact-item-text span { font-size: 0.82rem; color: var(--text-muted); }
.contact-map { border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--border-subtle); height: 360px; box-shadow: var(--shadow-md); }
.contact-map iframe { width: 100%; height: 100%; border: 0; }

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(160deg, #0f1f2e 0%, #1a3a5c 50%, #0d2e1a 100%);
  padding: 64px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent), var(--blue));
}
.footer-top { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 48px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { height: 36px; border-radius: 8px; }
.footer-logo-text span:first-child { font-size: 0.9rem; font-weight: 800; display: block; color: #fff; }
.footer-logo-text span:last-child { font-size: 0.7rem; color: var(--accent); display: block; font-weight: 600; }
.footer-brand p { font-size: 0.82rem; line-height: 1.7; max-width: 220px; color: rgba(255,255,255,0.5); }
.footer-col h5 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.82rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom span { color: var(--accent); }

/* ===== BLOG POST PAGE ===== */
.post-hero { padding: 140px 0 60px; border-bottom: 1px solid var(--border-subtle); }
.post-back { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--accent); font-weight: 600; text-decoration: none; margin-bottom: 24px; transition: gap 0.2s; }
.post-back:hover { gap: 10px; }
.post-tag { display: inline-block; background: rgba(0,125,62,0.1); color: var(--accent); padding: 4px 12px; border-radius: 100px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.post-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.25; margin-bottom: 16px; }
.post-meta { display: flex; align-items: center; gap: 16px; font-size: 0.8rem; color: var(--text-muted); }
.post-meta span { display: flex; align-items: center; gap: 5px; }
.post-body { max-width: 720px; margin: 0 auto; padding: 60px 0; }
.post-body h2 { font-size: 1.3rem; font-weight: 700; margin: 40px 0 14px; color: var(--text-primary); }
.post-body h3 { font-size: 1.05rem; font-weight: 700; margin: 28px 0 10px; color: var(--accent); }
.post-body p { font-size: 1rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 18px; }
.post-body ul, .post-body ol { padding-left: 24px; margin-bottom: 18px; display: flex; flex-direction: column; gap: 10px; }
.post-body li { font-size: 1rem; line-height: 1.7; color: var(--text-secondary); }
.post-body strong { color: var(--text-primary); font-weight: 700; }
.post-body .highlight-box { background: var(--bg-card); border-left: 3px solid var(--accent); border-radius: 0 8px 8px 0; padding: 18px 22px; margin: 28px 0; }
.post-body .highlight-box p { margin: 0; color: var(--text-primary); }
.post-footer-nav { border-top: 1px solid var(--border-subtle); padding: 40px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
@media (max-width: 768px) { .post-footer-nav { flex-direction: column; align-items: flex-start; } }

/* ===== SOCIAL LINK PILL ===== */
.social-link-pill { display: inline-flex; align-items: center; gap: 7px; background: var(--blue-light); color: var(--blue-dark); font-size: 0.82rem; font-weight: 600; padding: 5px 12px; border-radius: 100px; text-decoration: none; transition: background 0.2s, color 0.2s; width: fit-content; }
.social-link-pill:hover { background: var(--blue); color: #fff; }
.social-link-pill span { background: var(--blue); color: #fff; font-weight: 900; font-size: 0.75rem; width: 18px; height: 18px; border-radius: 4px; display: inline-flex; align-items: center; justify-content: center; }

/* ===== FEEDBACK QR SECTION ===== */
.feedback-qr-wrap { display: grid; grid-template-columns: 1fr auto; gap: 64px; align-items: center; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius); padding: 48px; }
.feedback-qr-points { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.feedback-qr-points li { font-size: 0.9rem; color: var(--text-secondary); }
.feedback-qr-box { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.qr-frame { background: #fff; border-radius: 16px; padding: 16px; box-shadow: 0 8px 32px rgba(0,0,0,0.1); border: 2px solid var(--border-subtle); }
.qr-frame img { width: 180px; height: 180px; display: block; object-fit: contain; }
.qr-caption { font-weight: 700; color: var(--text-primary); font-size: 0.9rem; margin: 0; }
.qr-subcaption { font-size: 0.75rem; color: var(--text-muted); margin: 0; }
@media (max-width: 768px) { .feedback-qr-wrap { grid-template-columns: 1fr; gap: 32px; padding: 28px; } .feedback-qr-box { order: -1; } }

/* ===== MOBILE NAV ===== */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: rgba(215,238,252,0.98);
  z-index: 999;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 28px;
  backdrop-filter: blur(20px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.4rem; font-weight: 800; color: var(--text-secondary); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu-close { position: absolute; top: 24px; right: 24px; font-size: 1.5rem; cursor: pointer; color: var(--text-muted); background: none; border: none; }

/* ===== STATION MOCKUP PILLARS ===== */
.station-pillar { display: flex; justify-content: center; gap: 16px; margin-bottom: 24px; }
.pillar { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.pillar-body {
  width: 48px; background: linear-gradient(180deg, #1565c0, #0d47a1);
  border: 1.5px solid rgba(21,101,192,0.3);
  border-radius: 8px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 12px 8px;
}
.pillar-body.large { height: 100px; }
.pillar-body.medium { height: 80px; }
.pillar-led { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; margin-bottom: 6px; animation: blink 2s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.pillar-kw { font-size: 0.6rem; color: #7dd3fc; font-weight: 700; }
.pillar-label { font-size: 0.7rem; color: var(--text-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner, .intro-grid, .coffee-grid, .loyalty-inner, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .specs-grid { grid-template-columns: 1fr; }
  .values-grid, .promo-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: repeat(3, 1fr); }
  .hero-visual { display: none; }
  .hero-inner { text-align: center; }
  .hero-sub { margin: 0 auto 36px; }
  .btn-group { justify-content: center; }
  .hero-stats { justify-content: center; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .values-grid, .promo-grid, .testimonials-grid, .menu-grid { grid-template-columns: 1fr; }
  .specs-cards { grid-template-columns: 1fr; }
  .coffee-perks { grid-template-columns: 1fr; }
  .cta-banner { padding: 48px 24px; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
}

/* ===== EVENT TICKER ===== */
.event-ticker {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 44px;
  background: linear-gradient(90deg, #0a1f3a 0%, #1251a3 40%, #c0392b 70%, #0a1f3a 100%);
  display: flex;
  align-items: center;
  z-index: 1010;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 210, 0, 0.25);
}
.event-ticker.ticker-hidden { display: none; }

.ticker-label {
  flex-shrink: 0;
  padding: 0 14px 0 16px;
  font-size: 0.68rem;
  font-weight: 800;
  color: #ffd700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 215, 0, 0.25);
  white-space: nowrap;
}
.ticker-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  /* fade edges */
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.event-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.event-item-img {
  height: 26px;
  width: auto;
  max-width: 44px;
  border-radius: 3px;
  object-fit: cover;
  flex-shrink: 0;
}
.event-item-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.67rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.event-item-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}
.ticker-sep {
  color: rgba(255, 215, 0, 0.5);
  font-size: 0.65rem;
  flex-shrink: 0;
}
.ticker-close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0 14px;
  height: 100%;
  transition: color 0.2s;
  line-height: 44px;
}
.ticker-close:hover { color: #fff; }

/* Shift navbar & hero down when ticker is visible */
.has-ticker .navbar { top: 44px; }
.has-ticker .hero   { padding-top: 134px; }

@media (max-width: 768px) {
  .event-ticker { height: 38px; }
  .ticker-label { font-size: 0.62rem; padding: 0 10px; }
  .event-item-text { font-size: 0.75rem; }
  .event-item-tag { font-size: 0.62rem; }
  .has-ticker .navbar { top: 38px; }
  .has-ticker .hero   { padding-top: 128px; }
}

/* ===== FLOATING CONTACT BUTTONS ===== */
.float-contact {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.12); box-shadow: 0 6px 24px rgba(0,0,0,0.25); }
.float-btn svg { width: 22px; height: 22px; }
.float-btn-phone { background: #00c853; color: #fff; }
.float-btn-mail  { background: #1565c0; color: #fff; }
.float-btn-fb    { background: #1877f2; color: #fff; }
.float-tooltip {
  position: absolute;
  right: 60px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.float-btn:hover .float-tooltip { opacity: 1; }
@media (max-width: 480px) {
  .float-contact { bottom: 16px; right: 14px; gap: 10px; }
  .float-btn { width: 46px; height: 46px; }
  .float-btn svg { width: 20px; height: 20px; }
  .float-tooltip { display: none; }
}
