/* ===================================================
   NERO — PREMIUM DARK CSS
   Bold / Red / Black / Industrial
=================================================== */

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;900&family=Barlow:wght@300;400;500&display=swap');

/* ── VARIABLES ── */
:root {
  --red:       #e8000d;
  --red-dark:  #b0000a;
  --red-glow:  rgba(232,0,13,0.35);
  --black:     #0a0a0a;
  --dark:      #111111;
  --dark2:     #1a1a1a;
  --dark3:     #222222;
  --mid:       #333333;
  --light:     #f5f5f5;
  --muted:     #888888;
  --white:     #ffffff;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --radius:    4px;
  --radius-lg: 10px;
  --trans:     0.3s ease;
  --shadow:    0 8px 32px rgba(0,0,0,0.5);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--light);
  min-height: 100vh;
  transition: background var(--trans), color var(--trans);
  overflow-x: hidden;
}

/* ══════════════════════════════
   LIGHT MODE — WARM OFF-WHITE PREMIUM
══════════════════════════════ */

/* ── CSS variables override for light mode ── */
body.light {
  background: #f7f4f0;
  color: #1a1208;

  /* Override dark vars for light context */
  --black:  #f7f4f0;
  --dark:   #ffffff;
  --dark2:  #f0ece6;
  --dark3:  #e8e3dc;
  --mid:    #d4cec6;
  --light:  #1a1208;
  --muted:  #7a6f64;
  --white:  #1a1208;
}

/* ── Body & base text ── */
body.light p { color: #5a5048; }
body.light h1, body.light h2, body.light h3,
body.light h4 { color: #1a1208; }

/* ── Header ── */
body.light header {
  background: rgba(255,252,248,0.96);
  border-bottom: 2px solid var(--red);
  box-shadow: 0 2px 20px rgba(26,18,8,0.08);
}
body.light header.scrolled {
  background: rgba(255,252,248,0.99);
}
body.light nav.main-nav a { color: #3a3028; }
body.light nav.main-nav a:hover,
body.light nav.main-nav a.active { color: #1a1208; background: rgba(232,0,13,0.06); }
body.light .logo-text { color: #1a1208; }
body.light #themeToggle { border-color: rgba(26,18,8,0.15); color: #3a3028; }

/* ── Ticker stays dark — brand anchor ── */
body.light .ticker-bar { background: #1a1208; }

/* ── Sections alternate warm tones ── */
body.light section.section { background: #f7f4f0; }
body.light .why-section    { background: #ffffff; }
body.light .promos-section { background: #ffffff; border-bottom: 1px solid #e8e3dc; }
body.light .status-section { background: #f7f4f0; }
body.light .fuel-explainer-section { background: #ffffff; border-color: #e8e3dc; }
body.light .loyalty-section { background: #f7f4f0; border-color: #e8e3dc; }
body.light .news-section { background: #ffffff; }
body.light .locations-section { background: #f7f4f0; }
body.light .services-section { background: #ffffff; }

/* ── Cards — white with warm shadows ── */
body.light .card {
  background: #ffffff;
  border-color: #e8e3dc;
  box-shadow: 0 2px 12px rgba(26,18,8,0.06);
  color: #1a1208;
}
body.light .card:hover {
  box-shadow: 0 8px 28px rgba(26,18,8,0.12);
  border-color: rgba(232,0,13,0.3);
}
body.light .card h3,
body.light .card h4 { color: #1a1208; }
body.light .card p { color: #5a5048; }

/* ── Service cards ── */
body.light .service-card { background: #1a1208; }
body.light .service-card-bg { opacity: 0.25; }
body.light .service-card:hover .service-card-bg { opacity: 0.4; }

/* ── Why cards ── */
body.light .why-card {
  background: #f7f4f0;
  border-color: #e8e3dc;
  box-shadow: 0 2px 12px rgba(26,18,8,0.05);
}
body.light .why-card:hover { border-color: rgba(232,0,13,0.3); background: #fff; }
body.light .why-card h4 { color: #1a1208; }
body.light .why-card p  { color: #5a5048; }
body.light .why-icon {
  background: rgba(232,0,13,0.08);
  border-color: rgba(232,0,13,0.2);
}

/* ── Location cards ── */
body.light .location-card {
  background: #ffffff;
  border-color: #e8e3dc;
  color: #1a1208;
  box-shadow: 0 2px 16px rgba(26,18,8,0.07);
}
body.light .location-card:hover {
  box-shadow: 0 12px 36px rgba(26,18,8,0.13);
  border-color: rgba(232,0,13,0.35);
}
body.light .location-card h3 { color: #1a1208; }
body.light .location-card > p { color: #5a5048; }
body.light .location-card ul li { color: #7a6f64; }
body.light .location-num { color: rgba(232,0,13,0.12); }
body.light .location-badge { background: var(--red); color: #fff; }

/* ── News cards ── */
body.light .news-card {
  background: #ffffff;
  border-color: #e8e3dc;
  color: #1a1208;
  box-shadow: 0 2px 12px rgba(26,18,8,0.06);
}
body.light .news-card:hover {
  border-color: rgba(232,0,13,0.3);
  box-shadow: 0 8px 28px rgba(26,18,8,0.1);
}
body.light .news-card h3 { color: #1a1208; }
body.light .news-card p  { color: #5a5048; }

/* ── Promo cards ── */
body.light .promo-card {
  background: #ffffff;
  border-color: #e8e3dc;
  box-shadow: 0 2px 12px rgba(26,18,8,0.06);
}
body.light .promo-card:hover {
  border-color: rgba(232,0,13,0.3);
  box-shadow: 0 8px 28px rgba(26,18,8,0.1);
}
body.light .promo-card h3 { color: #1a1208; }
body.light .promo-card p  { color: #5a5048; }
body.light .promo-card-expiry { color: #a09488; border-top-color: #e8e3dc; }

/* ── Status cards ── */
body.light .status-card {
  background: #ffffff;
  border-color: #e8e3dc;
  box-shadow: 0 2px 12px rgba(26,18,8,0.06);
}
body.light .status-card:hover { border-color: rgba(26,18,8,0.2); }
body.light .status-name { color: #1a1208; }
body.light .status-address { color: #7a6f64; }
body.light .status-pill {
  background: rgba(26,18,8,0.05);
  border-color: rgba(26,18,8,0.1);
  color: #7a6f64;
}
body.light .status-wait { color: #9a8f84; border-top-color: #e8e3dc; }

/* ── Fuel explainer cards ── */
body.light .fuel-type-card { border-color: #e8e3dc; }
body.light .fuel-type-card:hover { border-color: rgba(232,0,13,0.35); }
body.light .fuel-type-body { background: #ffffff; }
body.light .fuel-type-body h3 { color: #1a1208; }
body.light .fuel-type-body p  { color: #5a5048; }
body.light .fuel-vehicle-row  { color: #5a5048; }
body.light .fuel-vehicle-icon {
  background: rgba(232,0,13,0.07);
  border-color: rgba(232,0,13,0.15);
}
body.light .fuel-type-tip {
  background: rgba(26,18,8,0.04);
  color: #7a6f64;
}
body.light .fuel-type-tip strong { color: #3a3028; }
body.light .fuel-type-card.petrol .fuel-type-img-placeholder {
  background: linear-gradient(135deg, rgba(232,0,13,0.12), rgba(26,18,8,0.08));
}
body.light .fuel-type-card.diesel .fuel-type-img-placeholder {
  background: linear-gradient(135deg, rgba(30,80,200,0.1), rgba(26,18,8,0.08));
}

.fuel-type-real-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: brightness(0.75);
  transition: filter 0.4s ease;
}
.fuel-type-card:hover .fuel-type-real-img { filter: brightness(0.9); }

/* ── Loyalty section ── */
body.light .loyalty-calc {
  background: #f0ece6;
  border-color: #e0dbd2;
}
body.light .loyalty-calc label { color: #7a6f64; }
body.light .loyalty-input-row input {
  background: #ffffff;
  border-color: #d4cec6;
  color: #1a1208;
}
body.light .points-result { color: #5a5048; }
body.light .loyalty-card-visual {
  background: linear-gradient(135deg, #2a1a10 0%, #4a0a05 50%, #1a1208 100%);
  border-color: rgba(232,0,13,0.5);
}

/* ── Section headers & tags ── */
body.light .section-tag {
  color: var(--red);
  border-color: rgba(232,0,13,0.4);
  background: rgba(232,0,13,0.05);
}
body.light h2 { color: #1a1208; }
body.light .section-header p { color: #5a5048; }

/* ── Buttons in light mode ── */
body.light .btn-outline {
  color: #1a1208;
  border-color: rgba(26,18,8,0.3);
}
body.light .btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ── Page hero (inner pages) ── */
body.light .page-hero { background-color: #1a1208; }
body.light .page-hero .breadcrumb { color: rgba(255,255,255,0.4); }

/* ── Footer stays dark — strong anchor ── */
body.light footer { background: #1a1208; color: #fff; }
body.light .footer-bottom { background: #0f0a04; color: #fff; }
body.light .footer-brand p { color: rgba(255,255,255,0.55); }
body.light .footer-links h4 { color: rgba(255,255,255,0.4); }
body.light .footer-links a { color: rgba(255,255,255,0.55); }
body.light .footer-links a:hover { color: var(--red); }
body.light .footer-contact p { color: rgba(255,255,255,0.55); }
body.light .footer-admin-link { color: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.08); }
body.light .footer-admin-link:hover { color: var(--red); border-color: var(--red); }
body.light .footer-socials a { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); }
body.light .footer-socials a:hover { background: var(--red); color: #fff; }

/* ── Inputs & forms ── */
body.light input[type="text"],
body.light input[type="email"],
body.light input[type="number"],
body.light input[type="date"],
body.light select,
body.light textarea {
  background: #ffffff;
  border-color: #d4cec6;
  color: #1a1208;
}
body.light input:focus,
body.light select:focus,
body.light textarea:focus { border-color: var(--red); }

/* ── Hero scroll hint ── */
body.light .hero-scroll-hint span { color: rgba(255,255,255,0.5); }

/* ── Why left text ── */
body.light .why-left h2 { color: #1a1208; }
body.light .why-left p  { color: #5a5048; }

/* ── "Still not sure" callout ── */
body.light #fuelGuide > .container > div:last-child {
  background: rgba(232,0,13,0.05);
  border-color: rgba(232,0,13,0.2);
}
body.light #fuelGuide > .container > div:last-child p { color: #5a5048; }

/* ── UTILITY ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

a { text-decoration: none; color: inherit; }

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

ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.05;
}

h1 { font-size: clamp(2.8rem, 7vw, 6rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h3 { font-size: 1.4rem; font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { font-size: 1rem; line-height: 1.7; color: var(--muted); }

body.light p { color: #555; }

/* ── SECTION BASE ── */
.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 0.3rem 1rem;
  margin-bottom: 1rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--trans);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--red-glow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: padding var(--trans), background var(--trans);
}

header.scrolled {
  padding: 0.75rem 2.5rem;
  background: rgba(10,10,10,0.97);
  border-bottom: 1px solid rgba(232,0,13,0.3);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

#logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
}

.logo-text span { color: var(--red); }

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

nav.main-nav a {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  transition: var(--trans);
  position: relative;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

nav.main-nav a.nav-admin {
  background: var(--red);
  color: var(--white);
  margin-left: 0.5rem;
  border-radius: var(--radius);
}
nav.main-nav a.nav-admin:hover {
  background: var(--red-dark);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

#themeToggle {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1rem;
  transition: var(--trans);
}
#themeToggle:hover { border-color: var(--red); }

/* hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 78vh;
  min-height: 520px;
  max-height: 780px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.55) 60%,
    rgba(232,0,13,0.08) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2.5rem 0 6%;
  max-width: 700px;
}

.hero-tag {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-tag::before {
  content: '';
  display: inline-block;
  width: 32px; height: 2px;
  background: var(--red);
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.2rem;
}

.hero-content h1 span {
  color: var(--red);
  display: block;
}

.hero-content p {
  color: rgba(255,255,255,0.65);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* hero stats bar */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 1.4rem 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 3rem;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.3rem;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
}

/* scroll hint */
.hero-scroll-hint {
  position: absolute;
  right: 2.5rem;
  bottom: 90px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ── TICKER BAR ── */
.ticker-bar {
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 44px;
}

.ticker-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
  background: var(--red);
  padding: 0 1.2rem;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-track {
  display: flex;
  gap: 3rem;
  animation: tickerScroll 25s linear infinite;
  padding-left: 2rem;
  white-space: nowrap;
}

.ticker-item {
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}

.ticker-item strong {
  color: var(--red);
  font-weight: 700;
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
}

.service-card {
  background: var(--dark);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--dark2); }

.service-card.featured {
  background: var(--dark2);
  border-top: 3px solid var(--red);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.service-card h3 {
  font-size: 1.3rem;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-card p { font-size: 0.9rem; color: var(--muted); margin: 0; }

.service-arrow {
  font-size: 1.2rem;
  color: var(--red);
  margin-top: auto;
  transition: transform var(--trans);
}
.service-card:hover .service-arrow { transform: translateX(6px); }

/* ── WHY NERO ── */
.why-section {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.why-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.why-left h2 { margin: 1rem 0; }
.why-left p { max-width: 420px; }

.why-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: var(--trans);
}
.why-card:hover {
  border-color: rgba(232,0,13,0.4);
  background: var(--dark3);
}

.why-icon {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--red);
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(232,0,13,0.08);
  border: 1px solid rgba(232,0,13,0.25);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
}

.why-card h4 { color: var(--white); margin-bottom: 0.3rem; }
.why-card p { font-size: 0.9rem; margin: 0; }

/* ── LOCATIONS ── */
.locations-section { background: var(--black); }

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.location-card {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: var(--trans);
}
.location-card:hover {
  border-color: rgba(232,0,13,0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.location-card.featured {
  border-color: var(--red);
  background: linear-gradient(160deg, var(--dark2) 0%, rgba(232,0,13,0.06) 100%);
}

.location-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
}

.location-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(232,0,13,0.15);
  line-height: 1;
  margin-bottom: -0.5rem;
}

.location-card h3 { font-size: 1.2rem; color: var(--white); }
.location-card > p { font-size: 0.9rem; margin: 0; }

.location-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0.5rem 0;
}

.location-card ul li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}

/* ── LOYALTY ── */
.loyalty-section {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
}

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

.loyalty-content h2 { margin: 1rem 0 1.25rem; }

.loyalty-calc {
  margin: 2rem 0;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.loyalty-calc label {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--font-head);
}

.loyalty-input-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.loyalty-input-row input {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 0.7rem 1rem;
  font-size: 1.1rem;
  border-radius: var(--radius);
  width: 140px;
  font-family: var(--font-body);
}
.loyalty-input-row input:focus {
  outline: none;
  border-color: var(--red);
}

.points-result {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
}
.points-result strong {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--red);
  margin-left: 0.3rem;
}

/* loyalty card visual */
.loyalty-visual {
  display: flex;
  justify-content: center;
}

.loyalty-card-visual {
  width: 320px;
  height: 190px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a0505 50%, #111 100%);
  border: 1px solid rgba(232,0,13,0.4);
  border-radius: 14px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 60px rgba(232,0,13,0.15), 0 4px 20px rgba(0,0,0,0.6);
  position: relative;
  overflow: hidden;
}

.loyalty-card-visual::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(232,0,13,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.lc-logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--red);
}

.lc-label {
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

.lc-points-display {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.lc-points-display small {
  font-size: 0.9rem;
  color: var(--red);
  margin-left: 0.25rem;
}

.lc-name {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
}

/* ── NEWS ── */
.news-section { background: var(--black); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.news-card {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--trans);
}
.news-card:hover {
  border-color: rgba(232,0,13,0.35);
  transform: translateY(-4px);
}

.news-card.skeleton {
  height: 280px;
  animation: shimmer 1.5s infinite;
  background: linear-gradient(90deg, var(--dark) 25%, var(--dark2) 50%, var(--dark) 75%);
  background-size: 200% 100%;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.news-card img {
  width: 100%; height: 160px;
  object-fit: cover;
}

.news-card-body {
  padding: 1.5rem;
}

.news-card-date {
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.news-card h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.news-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}
.footer-socials a {
  width: 36px; height: 36px;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0;
  transition: var(--trans);
}
.footer-socials a:hover { background: var(--red); color: var(--white); border-color: var(--red); }

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--trans);
}
.footer-links a:hover { color: var(--red); }

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  color: rgba(255,255,255,0.55);
}

.footer-bottom {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

.footer-admin-link {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius);
  transition: var(--trans);
}
.footer-admin-link:hover { color: var(--red); border-color: var(--red); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  height: 38vh;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem 6%;
  background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.5)),
              url('../images/hero.jpg') center/cover;
  margin-top: 72px;
}
.page-hero h1 { color: var(--white); }
.page-hero .breadcrumb {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.75rem;
}
.page-hero .breadcrumb span { color: var(--red); }

/* ── FUEL PRICE BOARD (prices page) ── */
.price-board {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.fuel {
  background: var(--dark);
  border: 1px solid rgba(232,0,13,0.4);
  border-top: 4px solid var(--red);
  padding: 3rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  min-width: 240px;
  border-radius: var(--radius);
  box-shadow: 0 0 40px rgba(232,0,13,0.1);
}

.fuel-type {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.6);
}

.fuel-price {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--red);
  animation: ledPulse 1.5s infinite alternate;
}

@keyframes ledPulse {
  from { text-shadow: 0 0 8px rgba(232,0,13,0.4); }
  to   { text-shadow: 0 0 24px rgba(232,0,13,0.8), 0 0 48px rgba(232,0,13,0.3); }
}

/* ── FORMS (admin / carwash / fleet) ── */
.form-section {
  max-width: 560px;
  margin: 0 auto;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-section h2 { margin-bottom: 2rem; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--white);
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--trans);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}

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

/* old-style bare inputs (compatibility) */
input[type="text"],
input[type="email"],
input[type="number"],
input[type="date"],
select,
textarea {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--white);
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  width: 100%;
  margin-bottom: 1rem;
  transition: border-color var(--trans);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--red);
}

/* ── CARD (general) ── */
.card {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--trans);
}
.card:hover {
  border-color: rgba(232,0,13,0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

/* ── SCROLL REVEAL ── */
section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
section.visible, .hero, .ticker-bar {
  opacity: 1 !important;
  transform: none !important;
}
.hero, .ticker-bar { opacity: 1; transform: none; }

/* ── ADMIN PANEL ── */
.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.admin-panel {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.admin-panel h2 {
  font-size: 1.6rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ── LOCATION PAGE ── */
.location iframe {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
  margin-top: 1.5rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .why-container { gap: 3rem; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .why-container { grid-template-columns: 1fr; }
  .loyalty-container { grid-template-columns: 1fr; }
  .loyalty-visual { display: none; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .admin-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  header { padding: 1rem 1.25rem; }
  header.scrolled { padding: 0.7rem 1.25rem; }

  nav.main-nav {
    display: none;
    position: fixed;
    top: 0; right: 0;
    width: 280px; height: 100vh;
    background: var(--dark);
    border-left: 1px solid rgba(255,255,255,0.08);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0.25rem;
    z-index: 999;
    transform: translateX(100%);
    transition: transform var(--trans);
  }
  nav.main-nav.active {
    display: flex;
    transform: translateX(0);
  }
  nav.main-nav a { width: 100%; padding: 0.8rem 1rem; font-size: 1.1rem; }

  .menu-toggle { display: flex; }

  .hero-content { padding: 0 1.5rem; }
  .hero-stats { gap: 0; }
  .stat { padding: 0 1.2rem; }
  .stat-num { font-size: 1.5rem; }

  .services-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }

  .hero-scroll-hint { display: none; }
}

@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.9rem; }
}