/* ============================================================
   SPAR Belfast – Grosvenor Road | Redesigned 2026 Stylesheet
   Warm, Community-Focused, Premium Convenience Store Design
   Brand: SPAR Red #E11D2A | SPAR Green #137743 | Warm Cream #FAF7F2
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --spar-red:          #E11D2A;
  --spar-red-hover:    #C81420;
  --spar-red-soft:     rgba(225, 29, 42, 0.08);
  --spar-red-glow:     rgba(225, 29, 42, 0.28);
  
  --spar-green:        #137743;
  --spar-green-hover:  #0e5e34;
  --spar-green-soft:   rgba(19, 119, 67, 0.08);
  --spar-green-light:  #eaf5ee;
  
  --spar-cream:        #FAF7F2;
  --spar-cream-card:   #FFFFFF;
  --spar-cream-warm:   #F3EEE5;
  --spar-cream-border: #E8E2D5;
  
  --spar-dark:         #141A16;
  --spar-dark-soft:    #222B25;
  --spar-grey:         #5C645E;
  --spar-grey-light:   #8C958E;
  --spar-white:        #FFFFFF;

  --radius-sm:         8px;
  --radius-md:         14px;
  --radius-lg:         22px;
  --radius-xl:         32px;
  --radius-full:       9999px;

  --shadow-subtle:     0 2px 8px rgba(20, 26, 22, 0.04);
  --shadow-sm:         0 4px 14px rgba(20, 26, 22, 0.06);
  --shadow-md:         0 10px 30px rgba(20, 26, 22, 0.08), 0 2px 8px rgba(20, 26, 22, 0.04);
  --shadow-lg:         0 20px 45px rgba(20, 26, 22, 0.12), 0 4px 16px rgba(20, 26, 22, 0.06);
  --shadow-glass:      0 8px 32px 0 rgba(0, 0, 0, 0.25);

  --transition-fast:   0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition:        0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow:   0.6s cubic-bezier(0.16, 1, 0.3, 1);

  --max-width:         1240px;
  --font-main:         'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  background: var(--spar-cream);
  color: var(--spar-dark);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

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

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

ul {
  list-style: none;
}

/* ---------- Utilities & Glassmorphism ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.75rem;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-md);
}

.glass-panel-dark {
  background: rgba(20, 26, 22, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-glass);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--spar-red);
  background: var(--spar-red-soft);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
  border: 1px solid rgba(225, 29, 42, 0.14);
}

.section-label.green-variant {
  color: var(--spar-green);
  background: var(--spar-green-soft);
  border-color: rgba(19, 119, 67, 0.15);
}

.section-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--spar-dark);
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--spar-grey);
  max-width: 580px;
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after {
  opacity: 1;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--spar-red) 0%, #cc1420 100%);
  color: var(--spar-white);
  box-shadow: 0 4px 18px var(--spar-red-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(225, 29, 42, 0.4);
}

.btn-green {
  background: linear-gradient(135deg, var(--spar-green) 0%, #0d6136 100%);
  color: var(--spar-white);
  box-shadow: 0 4px 16px rgba(19, 119, 67, 0.3);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(19, 119, 67, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--spar-white);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--spar-white);
  color: var(--spar-dark);
  border-color: var(--spar-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-dark {
  background: transparent;
  color: var(--spar-dark);
  border-color: var(--spar-cream-border);
}

.btn-outline-dark:hover {
  background: var(--spar-white);
  border-color: var(--spar-dark);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: #0f522e;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1001;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.top-bar-item a {
  color: #FFFFFF;
  font-weight: 600;
  transition: opacity var(--transition-fast);
}

.top-bar-item a:hover {
  opacity: 0.85;
  text-decoration: underline;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #117845;
  color: #ffffff;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  box-shadow: 0 0 10px rgba(17, 120, 69, 0.4);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-dot 2s infinite;
}

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

/* ---------- Header & Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--spar-cream-border);
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.75rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Brand Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: transform var(--transition-fast);
}

.logo-wrap:hover {
  transform: translateY(-1px);
}

.logo-badge {
  width: 50px;
  height: 50px;
  background: linear-gradient(145deg, #E11D2A 0%, #b8121d 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 14px rgba(225, 29, 42, 0.28);
}

.logo-tree {
  width: 26px;
  height: 30px;
  fill: #FFFFFF;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--spar-red);
  line-height: 1;
}

.brand-sub {
  font-size: 0.68rem;
  color: var(--spar-grey);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Navigation Links */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link {
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--spar-dark);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--spar-red);
  background: rgba(225, 29, 42, 0.06);
}

.nav-link.active {
  color: var(--spar-red);
  background: rgba(225, 29, 42, 0.08);
  font-weight: 700;
}

.nav-cta {
  margin-left: 0.75rem;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--spar-cream-warm);
  border: 1px solid var(--spar-cream-border);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--spar-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------- Modern Hero with Photo Background ---------- */
.hero-v2 {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: #0d1410;
  overflow: hidden;
  padding: 4rem 0 5rem;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(90deg, rgba(13, 20, 16, 0.92) 0%, rgba(13, 20, 16, 0.82) 45%, rgba(13, 20, 16, 0.55) 100%),
    linear-gradient(180deg, rgba(13, 20, 16, 0.3) 0%, rgba(13, 20, 16, 0.85) 100%),
    url('../img/store-exterior.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.03);
  transition: transform 1.2s ease-out;
}

.hero-glow-1 {
  position: absolute;
  top: 15%;
  right: 15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(225, 29, 42, 0.22) 0%, transparent 65%);
  filter: blur(50px);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: 10%;
  left: 20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(19, 119, 67, 0.25) 0%, transparent 65%);
  filter: blur(50px);
  pointer-events: none;
}

.hero-v2 .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  color: #FFFFFF;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-pill-badge {
  background: var(--spar-red);
  color: #fff;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 800;
}

.hero-headline {
  font-size: clamp(2.6rem, 5.2vw, 4.25rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.35rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

.hero-headline .text-accent-red {
  color: #FF3B47;
  display: inline-block;
  position: relative;
}

.hero-headline .text-accent-green {
  color: #34d399;
  font-weight: 900;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.65;
  margin-bottom: 2.25rem;
  max-width: 530px;
}

.hero-btn-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.trust-icon {
  font-size: 1.15rem;
}

/* Hero Glass Card (Right Column) */
.hero-glass-card {
  background: rgba(25, 32, 28, 0.78);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  color: #FFFFFF;
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.5);
  position: relative;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 1.5rem;
}

.hero-card-title-group h3 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hero-card-title-group p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.hero-hours-pill {
  background: rgba(52, 211, 153, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: #34d399;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-card-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-bottom: 1.75rem;
}

.hero-card-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.hero-row-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-row-text .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}

.hero-row-text .val {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
}

.hero-row-text a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.hero-row-text a:hover {
  color: #FF3B47;
}

.hero-card-footer {
  background: linear-gradient(135deg, rgba(225, 29, 42, 0.25) 0%, rgba(19, 119, 67, 0.25) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-footer-left .title {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

.hero-footer-left .time {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
}

/* ---------- Features / Highlights Strip ---------- */
.highlights-section {
  position: relative;
  margin-top: -2.5rem;
  z-index: 10;
  padding-bottom: 4rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.highlight-card {
  background: var(--spar-white);
  border: 1px solid var(--spar-cream-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 1.15rem;
  transition: all var(--transition);
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(225, 29, 42, 0.25);
}

.highlight-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.highlight-card:hover .highlight-icon-wrap {
  transform: scale(1.1);
}

.icon-red   { background: #FDE8E9; color: var(--spar-red); }
.icon-green { background: #E8F5EE; color: var(--spar-green); }
.icon-amber { background: #FEF3C7; color: #D97706; }
.icon-blue  { background: #E0F2FE; color: #0284C7; }

.highlight-info h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--spar-dark);
  margin-bottom: 2px;
}

.highlight-info p {
  font-size: 0.82rem;
  color: var(--spar-grey);
}

/* ---------- Products / Range Section (Real Photos) ---------- */
.range-section {
  padding: 5.5rem 0 6.5rem;
  background: var(--spar-cream);
  position: relative;
}

.range-header-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.range-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.product-item {
  background: var(--spar-cream-card);
  border: 1px solid var(--spar-cream-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition);
  position: relative;
}

.product-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(225, 29, 42, 0.3);
}

.product-item-img {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: var(--spar-cream-warm);
}

.product-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-item:hover .product-item-img img {
  transform: scale(1.08);
}

/* Gradient photo fallback for items without dedicated photos */
.product-art-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
}

.art-dairy     { background: linear-gradient(135deg, #e0f2fe 0%, #bfdbfe 100%); }
.art-meat      { background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%); }
.art-household { background: linear-gradient(135deg, #ecfdf5 0%, #a7f3d0 100%); }
.art-treats    { background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); }
.art-press     { background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%); }

.art-badge-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition);
}

.product-item:hover .art-badge-icon {
  transform: scale(1.15) rotate(5deg);
}

.product-tag-pill {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(20, 26, 22, 0.75);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  z-index: 2;
}

.product-item-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category-sub {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--spar-green);
  margin-bottom: 0.4rem;
}

.product-item-title {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--spar-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-item-text {
  font-size: 0.86rem;
  color: var(--spar-grey);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex: 1;
}

.product-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--spar-cream-border);
}

.product-status-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--spar-green);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.product-action-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--spar-red);
  transition: transform var(--transition-fast);
}

.product-item:hover .product-action-link {
  transform: translateX(4px);
}

/* ---------- About Section (Warm Photo Collage) ---------- */
.about-v2 {
  padding: 6.5rem 0;
  background: var(--spar-cream-warm);
  border-top: 1px solid var(--spar-cream-border);
  border-bottom: 1px solid var(--spar-cream-border);
  position: relative;
  overflow: hidden;
}

.about-v2-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4.5rem;
  align-items: center;
}

/* Visual Collage */
.about-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.collage-img-main {
  grid-column: span 2;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.collage-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-img-sub {
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.collage-img-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-floating-badge {
  position: absolute;
  bottom: -15px;
  right: 15px;
  background: linear-gradient(135deg, var(--spar-red) 0%, #b8121d 100%);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.6rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 3px solid #FFFFFF;
}

.about-floating-badge .big-stat {
  display: block;
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.about-floating-badge .label-stat {
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0.92;
  margin-top: 4px;
  display: block;
}

/* About Content */
.about-content-wrap h2 {
  margin-bottom: 1.25rem;
}

.about-lead-p {
  font-size: 1.12rem;
  color: var(--spar-dark);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-body-p {
  font-size: 0.95rem;
  color: var(--spar-grey);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-box {
  background: var(--spar-white);
  border: 1px solid var(--spar-cream-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-subtle);
  transition: transform var(--transition);
}

.stat-box:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 29, 42, 0.2);
}

.stat-number {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--spar-red);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.stat-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--spar-grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- News & Offers Preview (Real Photos) ---------- */
.news-v2 {
  padding: 6.5rem 0;
  background: var(--spar-cream);
}

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

.news-v2-card {
  background: var(--spar-white);
  border: 1px solid var(--spar-cream-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition);
}

.news-v2-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(19, 119, 67, 0.3);
}

.news-v2-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.news-v2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-v2-card:hover .news-v2-img img {
  transform: scale(1.08);
}

.news-cat-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--spar-red);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  z-index: 2;
}

.badge-green {
  background: var(--spar-green);
}

.news-v2-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-v2-date {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--spar-grey-light);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.news-v2-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--spar-dark);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.news-v2-desc {
  font-size: 0.88rem;
  color: var(--spar-grey);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.news-v2-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--spar-red);
  transition: gap var(--transition-fast);
}

.news-v2-card:hover .news-v2-link {
  gap: 0.85rem;
}

/* ---------- Visit / Contact Strip ---------- */
.visit-v2 {
  background: #111813;
  color: #FFFFFF;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.visit-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(225, 29, 42, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(19, 119, 67, 0.2) 0%, transparent 40%);
  pointer-events: none;
}

.visit-v2-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.visit-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0 2.5rem;
}

.visit-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.visit-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.visit-text-col .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2px;
}

.visit-text-col .value {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.45;
}

.map-container-v2 {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  height: 380px;
}

.map-container-v2 iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- Modern Footer ---------- */
.site-footer-v2 {
  background: #0B0F0C;
  color: rgba(255, 255, 255, 0.72);
  padding: 5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-v2-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin: 1.25rem 0 1.5rem;
}

.footer-social-row {
  display: flex;
  gap: 0.75rem;
}

.social-pill {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.social-pill:hover {
  background: var(--spar-red);
  border-color: var(--spar-red);
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-menu a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-menu a:hover {
  color: #FFFFFF;
  transform: translateX(3px);
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-row a {
  color: #FFFFFF;
  font-weight: 600;
}

.footer-bottom-v2 {
  padding: 1.75rem 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-v2 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a:hover {
  color: #FFFFFF;
}

/* ---------- Inner Pages Hero ---------- */
.inner-hero {
  position: relative;
  background: #0d1410;
  color: #FFFFFF;
  padding: 5.5rem 0 4.5rem;
  text-align: center;
  overflow: hidden;
}

.inner-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  filter: blur(2px);
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,20,16,0.7) 0%, rgba(13,20,16,0.92) 100%);
}

.inner-hero .container {
  position: relative;
  z-index: 2;
}

.inner-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.25rem;
}

.inner-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
}

.inner-breadcrumb a:hover {
  color: #FFFFFF;
}

.inner-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.inner-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 580px;
  margin: 0 auto;
}

/* ---------- Contact Page Enhancements ---------- */
.contact-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  align-items: flex-start;
  padding: 5rem 0 6rem;
}

.contact-card-v2 {
  background: var(--spar-white);
  border: 1px solid var(--spar-cream-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition);
}

.contact-card-v2:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(225, 29, 42, 0.25);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.form-box-v2 {
  background: var(--spar-white);
  border: 1px solid var(--spar-cream-border);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.form-group-v2 {
  margin-bottom: 1.5rem;
}

.form-label-v2 {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--spar-dark);
  margin-bottom: 0.5rem;
}

.form-input-v2 {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--spar-cream-border);
  background: var(--spar-cream);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--spar-dark);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input-v2:focus {
  border-color: var(--spar-red);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px var(--spar-red-soft);
}

/* ---------- News Page Enhancements ---------- */
.featured-news-hero {
  background: #111813;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  margin: 4rem 0 4.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.featured-news-content {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-news-img {
  height: 100%;
  min-height: 340px;
}

.featured-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Cookie Banner & Scroll-Top ---------- */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
  background: rgba(20, 26, 22, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  color: #FFFFFF;
  z-index: 9999;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  flex: 1;
}

.cookie-text a {
  color: #FF4757;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.65rem;
}

.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--spar-red);
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(225, 29, 42, 0.35);
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  transform: translateY(-3px) scale(1.05);
  background: var(--spar-red-hover);
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Media Queries & Responsiveness ---------- */
@media (max-width: 1080px) {
  .hero-v2 .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .range-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-v2-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .news-v2-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-news-hero {
    grid-template-columns: 1fr;
  }

  .footer-v2-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .top-bar-right {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--spar-white);
    flex-direction: column;
    padding: 1.25rem 1.75rem;
    border-bottom: 2px solid var(--spar-red);
    box-shadow: var(--shadow-lg);
    gap: 0.5rem;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
  }

  .site-nav.open {
    transform: scaleY(1);
    pointer-events: auto;
  }

  .nav-link {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
  }

  .nav-cta {
    margin-left: 0;
    width: 100%;
    margin-top: 0.5rem;
  }

  .hero-headline {
    font-size: 2.4rem;
  }

  .hero-trust-badges {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .highlights-section {
    margin-top: 1rem;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .range-grid {
    grid-template-columns: 1fr;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-v2-grid {
    grid-template-columns: 1fr;
  }

  .visit-v2-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-grid-v2 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .form-box-v2 {
    padding: 1.75rem;
  }

  .footer-v2-grid {
    grid-template-columns: 1fr;
  }
}
