﻿/* ============================================
   CSS VARIABLES — DIVIXI COLOR THEME
   Gold from logo
   ============================================ */
:root {
  --gold: #D6AF45;
  --gold-light: #E8C85A;
  --gold-dim: #B8922E;
  --gold-pale: rgba(214, 175, 69, 0.13);
  --gold-border: rgba(214, 175, 69, 0.30);

  --black: #0A0800;
  --black-2: #111009;
  --black-3: #1A1710;
  --black-4: #252015;

  --text-light: #E8DFC0;
  --text-muted: #413100;
  --white: #FFFFFF;

  --header-h: 68px;

  /* Site-wide primary palette */

  --primary: #D6AF45;
  --primary-dark: #B8922E;
  --primary-darker: #8A6C1E;
  --primary-light: #E8C85A;
  --primary-pale: rgba(214, 175, 69, 0.12);
  --primary-border: rgba(214, 175, 69, 0.28);

  --text-dark: #1a1508;
  --text-body: #4a4030;
  --text-muted2: #6a5e48;
  --bg-light: #faf8f3;
  --bg-section: #f5f0e8;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Arial', sans-serif;
  background: #111;
  min-height: 100vh;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f1f1f1;
  padding: 0 32px;
  height: var(--header-h);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.site-logo {
  width: 199px;
  display: block;
  object-fit: contain;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 2px;
}

.icon-btn {
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 18px;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.icon-btn:hover {
  background: var(--gold-pale);
  color: var(--gold-light);
}

.vdivider {
  display: inline-block;
  width: 1px;
  height: 24px;
  background: #000;
  margin: 0 2px;
}

/* ============================================
   MEGA MENU — FULL SCREEN
   ============================================ */
.mega-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-light);
  z-index: 999;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-14px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mega-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

/* ---- Top bar inside menu ---- */
.menu-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bg-light);
  padding: 0 32px;
  height: var(--header-h);
  flex-shrink: 0;
  border-bottom: 1px solid rgb(153 112 4);
}

.menu-topbar-icons {
  display: flex;
  align-items: center;
  gap: 2px;
}

/* X close button — circle style with gold border */
.close-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #b39d43;
  font-size: 16px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b39d43;
}

.close-btn:hover {
  border-color: var(--gold-light);
  background: var(--gold-pale);
  color: var(--gold-light);
}

/* ============================================
   DESKTOP MENU (left + right layout)
   ============================================ */
.desktop-menu {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.mobile-menu {
  display: none;
}

/* ---- LEFT NAV ---- */
.menu-left {
  width: 340px;
  min-width: 260px;
  flex-shrink: 0;
  border-right: 1px solid var(--gold-border);
  overflow-y: auto;
  padding: 10px 0;
  background: var(--bg-light);
}

.nav-list {
  list-style: none;
}

.nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  cursor: pointer;
  border-bottom: 1px solid rgb(87 67 1 / 73%);
  color: #414141;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}

.nav-item:hover {
  background: var(--gold-pale);
  color: var(--gold-light);
  padding-left: 38px;
}

/* Active — gold accent left border + bg */
.nav-item.active {
  background: linear-gradient(90deg, rgb(241 185 40) 0%, rgb(255 216 86 / 6%) 100%);
  color: var(--black-4);
  font-weight: 600;
  border-left: 3px solid #251c05;
  padding-left: 29px;
}

.nav-item.active .arrow-icon {
  display: inline-block;
  color: var(--gold);
  font-size: 13px;
}

.arrow-icon {
  display: none;
  font-size: 13px;
}

/* ---- RIGHT CONTENT ---- */
.menu-right {
  flex: 1;
  overflow-y: auto;
  padding: 40px 48px;
  background: var(--bg-light);
}

.submenu-panel {
  display: none;
}

.submenu-panel.active {
  display: block;
}

.submenu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 20px;
}

.submenu-card {
  text-decoration: none;
  color: #000000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.4;
  transition: color 0.2s;
}

.submenu-card:hover {
  color: var(--primary-darker);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 72px;
  border: 1px solid rgb(0 0 0 / 58%);
  border-radius: 6px;
  background: var(--gold-pale);
  transition: background 0.2s, border-color 0.2s;
}

.card-icon svg {
  stroke: #000000;
  transition: stroke 0.2s;
}

.submenu-card:hover .card-icon {
  background: rgba(212, 175, 55, 0.22);
  border-color: var(--gold);
}

.submenu-card:hover .card-icon svg {
  stroke: #4f3a00;
}

.submenu-simple {
  color: #000;
  font-size: 15px;
  padding-top: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
.menu-footer {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 40px;
  border-top: 1px solid var(--primary-darke);
  background: #fdf0c5;
}

.contact-us-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #000000;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.contact-us-btn:hover {
  color: var(--gold-light);
}

.contact-us-btn i {
  font-size: 16px;
}

/* ============================================
   MOBILE ACCORDION
   ============================================ */
.acc-item {
  border-bottom: 1px solid rgb(223 203 136);
}

.acc-header {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  color: var(--text-dark);
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
  letter-spacing: 0.2px;
}

.acc-header.open {
  color: #000000;
}

.acc-chevron {
  color: var(--gold);
  font-size: 15px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.acc-header.open .acc-chevron {
  transform: rotate(180deg);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
  padding: 0 16px;
}

.acc-body.open {
  max-height: 700px;
  padding: 8px 16px 20px;
}

/* Mobile sub-card grid */
.mob-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mob-card {
  text-decoration: none;
  display: block;
  border: 1px solid rgb(0 0 0 / 68%);
  border-radius: 6px;
  background: var(--gold-pale);
  overflow: hidden;
  transition: background 0.2s, border-color 0.2s;
}

.mob-card:hover {
  background: rgba(212, 175, 55, 0.18);
  border-color: var(--gold);
}

.mob-card-inner {
  display: flex;
  flex-direction: column;
  padding: 10px 8px 8px;
  gap: 8px;
}

.mob-card-title {
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  display: block;
}

.mob-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 0 4px;
}

/* Override SVG stroke in mobile cards to gold */
.mob-icon svg {
  stroke: #000000;
}

.acc-placeholder {
  color: #000000;
  font-size: 14px;
  padding: 8px 8px 4px;
}

span.gold {
  color: #bd9528;
}

/* ============================================
   RESPONSIVE BREAKPOINT
   ============================================ */
@media (max-width: 768px) {

  .site-header {
    padding: 0 18px;
    height: 62px;
  }

  .menu-topbar {
    padding: 0 18px;
    height: 62px;
  }

  .site-logo {
    width: 100% !important;

  }

  .puriance-logo {
    width: 100% !important;


  }


  .site-logo {
    height: 34px;
  }

  .desktop-menu {
    display: none;
  }

  .mobile-menu {
    display: block;
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
  }

  .menu-footer {
    justify-content: center;
    padding: 18px 24px;
  }

  .icon-btn {
    padding: 7px 10px;
    font-size: 16px;
  }

  .menu-topbar-icons .icon-btn:first-child {
    display: none;
  }

  .menu-topbar-icons .vdivider:first-of-type {
    display: none;
  }
}

@media (max-width: 480px) {
  .mob-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .mob-card-title {
    font-size: 15px;
  }

  .acc-header {
    font-size: 16px;
    padding: 18px 20px;
  }
}


/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
  position: relative;
  width: 100%;
  margin-top: var(--header-h);
  overflow: hidden;
  background: #c0c8d0;
  user-select: none;
  margin-top: 47px;
}

.slide {
  display: none;
  position: relative;
  width: 100%;
}

.slide.active {
  display: block;
}

.slides-wrapper {
  position: relative;
  overflow: hidden;
}

.slide-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: calc(100vh - var(--header-h));
  object-fit: cover;
  object-position: center center;
}

/* ---- Text overlay ---- */
.slide-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  padding-top: 5%;
  pointer-events: none;
}

.slide-text {
  text-align: center;
  pointer-events: all;
}

.slide-title {
  font-size: clamp(32px, 4.5vw, 68px);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
  font-family: 'Arial Black', Arial, sans-serif;
}

.title-i {
  color: #ffffff;
}

.slide-sub {
  font-size: clamp(14px, 1.6vw, 24px);
  color: #ffffff;
  margin-top: 8px;
  font-weight: 400;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

.ev-blue {
  color: #4da6ff;
  font-weight: 700;
}

.slide-tagline {
  font-size: clamp(15px, 1.8vw, 26px);
  font-weight: 700;
  color: #4da6ff;
  margin-top: 4px;
}

.enquire-btn {
  display: inline-block;
  margin-top: clamp(12px, 2vw, 24px);
  padding: clamp(10px, 1vw, 14px) clamp(28px, 3vw, 46px);
  background: rgba(35, 35, 35, 0.88);
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 700;
  letter-spacing: 1.8px;
  border-radius: 50px;
  border: none;
  transition: background 0.2s, transform 0.15s;
  backdrop-filter: blur(4px);
}

.enquire-btn:hover {
  background: rgba(10, 10, 10, 0.95);
  transform: scale(1.03);
}

/* ---- Feature strip ---- */
.slide-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(220, 228, 232, 0.55);
  padding: 14px 0;
  white-space: nowrap;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 clamp(16px, 2.5vw, 40px);
  color: #1a1a1a;
}

.feat-sep {
  width: 1px;
  height: 44px;
  background: rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.feat-icon {
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #1a1a1a;
}

.ev-icon-box {
  font-size: 13px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 0.5px;
}

.feat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feat-text strong {
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
}

.feat-text span {
  font-size: clamp(10px, 0.85vw, 13px);
  color: #444;
  line-height: 1.2;
}

/* ---- Arrows ---- */
.slider-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.80);
  font-size: 58px;
  line-height: 1;
  cursor: pointer;
  padding: 0 14px;
  z-index: 10;
  transition: color 0.2s;
  font-weight: 200;
}

.slider-arrow:hover {
  color: #ffffff;
}

.arrow-prev {
  left: 0;
}

.arrow-next {
  right: 0;
}

/* ---- Dots ---- */
.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.dot.active {
  background: #ffffff;
  transform: scale(1.3);
}

/* ============================================
   SLIDER — DESKTOP / MOBILE VISIBILITY
   ============================================ */

/* Desktop slider: visible on large screens, hidden on mobile */
.slider-desktop {
  display: block;
}

.slider-mobile {
  display: none;
}

/* ============================================
   SLIDER — MOBILE
   ============================================ */
@media (max-width: 768px) {

  /* Show mobile slider, hide desktop slider */
  .slider-desktop {
    display: none;
  }

  .slider-mobile {
    display: block;
  }

  .hero-slider {
    margin-top: 40px;
  }

  .slide-img {
    height: auto;
    max-height: none;
    object-position: center center;
  }

  .slide-content {
    padding-top: 6%;
  }

  .enquire-btn {
    margin-top: 12px;
    padding: 10px 26px;
    font-size: 12px;
  }

  .slide-features {
    padding: 10px 4px;
    flex-wrap: nowrap;
  }

  .feat-item {
    padding: 0 8px;
    gap: 6px;
  }

  .feat-icon {
    width: 32px;
    height: 32px;
  }

  .feat-icon svg {
    width: 22px;
    height: 22px;
  }

  .feat-text strong {
    font-size: 10px;
  }

  .feat-text span {
    font-size: 9px;
  }

  .feat-sep {
    height: 28px;
  }

  .slider-arrow {
    font-size: 38px;
    padding: 0 6px;
    color: rgba(255, 255, 255, 0.85);
  }
}

@media (max-width: 480px) {
  .feat-item {
    padding: 0 4px;
    gap: 5px;
  }

  .feat-text span {
    font-size: 8px;
  }

  .feat-text strong {
    font-size: 9px;
  }
}


/* ============================================
   SCROLL-BASED ANIMATIONS — EASE IN/OUT REVEAL
   ============================================ */

/* Hidden states — only active after js-ready is set on body */
body.js-ready [data-animate="left"] {
  opacity: 0;
  transform: translateX(-72px);
  transition: opacity 0.75s ease-in-out,
    transform 0.75s ease-in-out;
  will-change: opacity, transform;
}

body.js-ready [data-animate="right"] {
  opacity: 0;
  transform: translateX(72px);
  transition: opacity 0.75s ease-in-out,
    transform 0.75s ease-in-out;
  will-change: opacity, transform;
}

body.js-ready [data-animate="up"] {
  opacity: 0;
  transform: translateY(56px);
  transition: opacity 0.75s ease-in-out,
    transform 0.75s ease-in-out;
  will-change: opacity, transform;
}

body.js-ready [data-animate="fade"] {
  opacity: 0;
  transition: opacity 0.75s ease-in-out;
  will-change: opacity;
}

body.js-ready [data-animate="scale"] {
  opacity: 0;
  transform: scale(0.86);
  transition: opacity 0.75s ease-in-out,
    transform 0.75s ease-in-out;
  will-change: opacity, transform;
}

/* Visible — triggered by IntersectionObserver adding .animated */
[data-animate].animated {
  opacity: 1 !important;
  transform: none !important;
}

/* Stagger delays — applied while element is hidden, drives the reveal timing */
[data-animate][data-delay="1"] {
  transition-delay: 0.10s;
}

[data-animate][data-delay="2"] {
  transition-delay: 0.20s;
}

[data-animate][data-delay="3"] {
  transition-delay: 0.32s;
}

[data-animate][data-delay="4"] {
  transition-delay: 0.44s;
}

[data-animate][data-delay="5"] {
  transition-delay: 0.56s;
}

[data-animate][data-delay="6"] {
  transition-delay: 0.68s;
}

/* Reduce motion — skip all animation */
@media (prefers-reduced-motion: reduce) {
  body.js-ready [data-animate] {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================
   EV CHARGING MAP SECTION
   ============================================ */
.ev-map-section {
  background: #faf8f3;
  padding: 80px 0 70px;
  overflow: hidden;
  position: relative;
}

.ev-map-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(214, 175, 69, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 50%, rgba(0, 150, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.ev-map-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* ---- LEFT ---- */
.ev-map-left {
  flex: 1;
  min-width: 0;
}


.slide-imgs {
  width: 100%;
  border-radius: 20px 5px 20px 5px;
}


.ev-map-heading {
  font-size: clamp(26px, 3vw, 30px);
  font-weight: 600;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 22px;
}

.ev-map-desc {
  font-size: 18px;
  line-height: 1.75;
  color: #201504;
  text-align: justify;
  ;
  margin-bottom: 32px;
}

.ev-map-link {
  color: #B8922E;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ev-map-link:hover {
  color: #8A6C1E;
}

/* Charging Card */
.ev-charge-card {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 420px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-bottom: 28px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.ev-charge-card-img {
  position: relative;
  flex: 0 0 180px;
  width: 180px;
}

.ev-charge-card-img img {
  width: 100%;
  height: 100%;
  min-height: 110px;
  object-fit: cover;
  display: block;
  filter: brightness(0.65);
}

.ev-charge-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 12px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.80) 0%, transparent 100%);
}

.ev-charge-label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.3px;
  margin-bottom: 1px;
}

.ev-charge-count {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}

/* Right side of card — zone text */
.ev-charge-card-body {
  flex: 1;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.ev-charge-card-zone {
  font-size: 18px;
  font-weight: 700;
  color: #1a1508;
}

.ev-charge-card-desc {
  font-size: 12px;
  color: #6a5e48;
  line-height: 1.5;
}

.ev-charge-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #D6AF45;
  text-decoration: none;
  margin-top: 4px;
  transition: color 0.2s;
}

.ev-charge-card-link:hover {
  color: #E8C85A;
}

.ev-charge-card-link:hover .ev-arrow {
  transform: translateX(3px);
}

.ev-arrow {
  transition: transform 0.2s;
}

/* ---- RIGHT CITY NETWORK ---- */
.ev-map-right {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../image/images/2.jpg);
  background-size: cover;
  border-radius: 20px;
}

.ev-city-network {
  position: relative;
  width: 440px;
  height: 420px;
}

/* SVG connecting lines — sits behind nodes */
.city-lines-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Dot-map SVG (kept for compat, hidden) */
.india-dots-svg {
  display: none;
}

/* ---- City node base ---- */
.city-node {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}

/* Pulsing ring */
.city-pulse {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(214, 175, 69, 0.45);
  animation: cityPulse 2.4s ease-out infinite;
}

/* Center dot */
.city-dot {
  position: relative;
  border-radius: 50%;
  background: #D6AF45;
  box-shadow: 0 0 8px 3px rgba(214, 175, 69, 0.4);
  animation: cityShine 2s ease-in-out infinite alternate;
  z-index: 2;
}

/* City label */
.city-label {
  position: absolute;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #2a1e08;
  text-transform: uppercase;
  pointer-events: none;
}

.label-top {
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
}

.label-bottom {
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
}

.label-right {
  left: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%);
}

.label-left {
  right: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%);
}

/* Primary nodes (Delhi, Mumbai) */
.node-primary .city-dot {
  width: 14px;
  height: 14px;
  background: #D6AF45;
  box-shadow: 0 0 14px 5px rgba(214, 175, 69, 0.5);
}

.node-primary .city-pulse {
  width: 36px;
  height: 36px;
  border-color: rgba(214, 175, 69, 0.4);
}

.node-primary .city-label {
  font-size: 12px;
  color: #0a2e1c;
  font-weight: 800;
}

/* Secondary nodes */
.node-secondary .city-dot {
  width: 9px;
  height: 9px;
  background: #D6AF45;
  box-shadow: 0 0 8px 3px rgba(214, 175, 69, 0.45);
}

.node-secondary .city-pulse {
  width: 24px;
  height: 24px;
  border-color: rgba(214, 175, 69, 0.4);
}

/* Small nodes */
.node-small .city-dot {
  width: 7px;
  height: 7px;
  background: #D6AF45;
  box-shadow: 0 0 6px 2px rgba(214, 175, 69, 0.4);
}

.node-small .city-pulse {
  width: 18px;
  height: 18px;
  border-color: rgba(214, 175, 69, 0.35);
}

.node-small .city-label {
  font-size: 10px;
  color: #4a3a18;
}

@keyframes cityPulse {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }

  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

@keyframes cityShine {
  0% {
    box-shadow: 0 0 6px 2px rgba(214, 175, 69, 0.3);
  }

  100% {
    box-shadow: 0 0 18px 7px rgba(214, 175, 69, 0.7);
  }
}

/* Stagger animation delays for all city nodes */
.city-node:nth-child(2) .city-dot,
.city-node:nth-child(2) .city-pulse {
  animation-delay: 0.3s;
}

.city-node:nth-child(3) .city-dot,
.city-node:nth-child(3) .city-pulse {
  animation-delay: 0.6s;
}

.city-node:nth-child(4) .city-dot,
.city-node:nth-child(4) .city-pulse {
  animation-delay: 0.9s;
}

.city-node:nth-child(5) .city-dot,
.city-node:nth-child(5) .city-pulse {
  animation-delay: 1.2s;
}

.city-node:nth-child(6) .city-dot,
.city-node:nth-child(6) .city-pulse {
  animation-delay: 1.5s;
}

.city-node:nth-child(7) .city-dot,
.city-node:nth-child(7) .city-pulse {
  animation-delay: 1.8s;
}

.city-node:nth-child(8) .city-dot,
.city-node:nth-child(8) .city-pulse {
  animation-delay: 0.4s;
}

.city-node:nth-child(9) .city-dot,
.city-node:nth-child(9) .city-pulse {
  animation-delay: 1.0s;
}

.city-node:nth-child(10) .city-dot,
.city-node:nth-child(10) .city-pulse {
  animation-delay: 1.4s;
}

.city-node:nth-child(11) .city-dot,
.city-node:nth-child(11) .city-pulse {
  animation-delay: 2.0s;
}

/* ============================================
   EV MAP SECTION — RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .ev-map-container {
    flex-direction: column;
    gap: 40px;
    padding: 0 24px;
  }

  .ev-map-right {
    flex: unset;
    width: 100%;
    justify-content: center;
  }

  .ev-city-network {
    width: 340px;
    height: 400px;
  }
}

@media (max-width: 480px) {
  .ev-map-section {
    padding: 50px 0 50px;
  }

  .ev-map-container {
    padding: 0 18px;
  }

  .ev-city-network {
    width: 300px;
    height: 350px;
  }

  .ev-charge-card {
    width: 100%;
    max-width: 340px;
  }

  .ev-charge-card-img {
    flex: 0 0 140px;
    width: 140px;
  }
}


/* ============================================
   CARD SLIDER SECTION
   ============================================ */
.card-slider-section {
  background: #f5f0e8;
  padding: 70px 0 80px;
  overflow: hidden;
  position: relative;
}

/* ---- Header row ---- */
.card-slider-header {
  max-width: 1300px;
  margin: 0 auto 40px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.card-slider-title {
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 700;
  color: #1a1508;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.cs-highlight {
  color: #D6AF45;
}

/* Arrow buttons */
.card-slider-arrows {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cs-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #c8a848;
  background: #ffffff;
  color: #2a1e08;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  padding: 0;
}

.cs-arrow:hover {
  background: #D6AF45;
  border-color: #D6AF45;
  color: #ffffff;
}

/* ---- Track wrapper — clips overflow & shows side peek ---- */
.cs-track-wrapper {
  overflow: hidden;
  padding: 16px 0 24px;
  cursor: grab;
  user-select: none;
  position: relative;
  width: 100%;
}

.cs-track-wrapper:active {
  cursor: grabbing;
}

/* ---- Scrolling track — JS controls translateX ---- */
.cs-track {
  display: flex;
  gap: 28px;
  padding: 0;
  position: relative;
  left: 0;
  transition: transform 0.52s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ---- Individual card ---- */
.cs-card {
  flex: 0 0 900px;
  width: 900px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
  opacity: 0.38;
  transform: scale(0.92);
  box-sizing: border-box;
}

.cs-card.active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.14);
}

/* Inner layout — text left, image right */
.cs-card-inner {
  display: flex;
  align-items: stretch;
  min-height: 320px;
}

/* Text side */
.cs-card-text {
  flex: 1;
  padding: 52px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.cs-card-title {
  font-size: 26px;
  font-weight: 700;
  color: #1a1508;
  line-height: 1.3;
}

.cs-card-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #4a4030;
  max-width: 380px;
}

.cs-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #D6AF45;
  text-decoration: none;
  margin-top: 8px;
  transition: color 0.2s, gap 0.2s;
}

.cs-card-link:hover {
  color: #B8922E;
  gap: 12px;
}

/* Image side */
.cs-card-img {
  flex: 0 0 360px;
  width: 360px;
  overflow: hidden;
  border-radius: 0 18px 18px 0;
}

.cs-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.cs-card.active .cs-card-img img {
  transform: scale(1.04);
}

/* ============================================
   CARD SLIDER — RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .card-slider-header {
    padding: 0 24px;
  }

  .cs-track {
    padding: 0;
    gap: 16px;
  }

  .cs-card {
    flex: 0 0 calc(100vw - 48px);
    width: calc(100vw - 48px);
  }

  .cs-card-img {
    flex: 0 0 180px;
    width: 180px;
  }

  .cs-card-inner {
    min-height: 240px;
  }

  .cs-card-text {
    padding: 28px 22px 22px;
  }
}

@media (max-width: 600px) {
  .card-slider-section {
    padding: 50px 0 60px;
  }

  .card-slider-title {
    font-size: 22px;
  }

  .cs-track {
    padding: 0;
    gap: 14px;
  }

  .cs-card {
    flex: 0 0 calc(100vw - 0px);
    width: calc(100vw - 0px);
  }

  .cs-card-inner {
    flex-direction: column;
  }

  .cs-card-img {
    flex: unset;
    width: 100%;
    height: 180px;
    border-radius: 0 0 16px 16px;
  }

  .cs-card-text {
    padding: 28px 24px 20px;
  }
}


/* ============================================
   GREEN ALLIES / PARTNERS SCROLL SECTION
   ============================================ */
.allies-section {
  background: #ffffff;
  padding: 70px 0 60px;
  overflow: hidden;
}

/* ---- Header ---- */
.allies-header {
  max-width: 1300px;
  margin: 0 auto 36px;
  padding: 0 48px;
}

.allies-title {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 700;
  color: #1a1508;
  line-height: 1.2;
  margin-bottom: 10px;
}

.allies-highlight {
  color: #D6AF45;
}

.allies-sub {
  font-size: 14px;
  color: #5a5040;
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 28px;
}

.allies-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #e0d0a0 0%, #f0e8d0 50%, #e0d0a0 100%);
}

/* ---- Marquee wrapper — clips overflow ---- */
.allies-marquee-wrapper {
  overflow: hidden;
  position: relative;
  padding: 32px 0;
  /* fade edges */
  -webkit-mask-image: linear-gradient(90deg,
      transparent 0%,
      #000 6%,
      #000 94%,
      transparent 100%);
  mask-image: linear-gradient(90deg,
      transparent 0%,
      #000 6%,
      #000 94%,
      transparent 100%);
}

/* ---- Scrolling track — pure CSS animation ---- */
.allies-marquee {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: alliesScroll 24s linear infinite;
}

.allies-marquee-wrapper:hover .allies-marquee {
  animation-play-state: paused;
}

/* Each logo = 20vw wide so exactly 5 fit in 100vw.
   One full set = 6 logos × 20vw = 120vw → scroll by that amount */
@keyframes alliesScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-120vw);
  }
}

/* ---- Individual logo item ---- */
.ally-item {
  flex: 0 0 20vw;
  width: 20vw;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-right: 1px solid #f0e8d0;
  box-sizing: border-box;
}

.ally-item img {
  max-width: 210px;
  max-height: 174px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(25%);
  opacity: 0.82;
  transition: filter 0.3s, opacity 0.3s, transform 0.3s;
}

.ally-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.07);
}

/* ============================================
   ALLIES — RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .allies-header {
    padding: 0 24px;
  }

  .allies-section {
    padding: 50px 0 44px;
  }

  /* Mobile: show 3 at a time → each = 33.33vw, 6 logos = 200vw */
  .ally-item {
    flex: 0 0 33.33vw;
    width: 33.33vw;
    height: 80px;
    padding: 0 12px;
  }

  .ally-item img {
    max-width: 100px;
    max-height: 82px;
  }

  @keyframes alliesScroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-200vw);
    }
  }
}


/* ============================================
   DISCOVER CHARGERS SECTION
   ============================================ */
.chargers-section {
  background: #faf8f3;
  padding: 80px 0 90px;
  overflow: hidden;
}

.chargers-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 48px;
}

.chargers-heading {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  color: #1a1508;
  margin-bottom: 44px;
  letter-spacing: -0.3px;
}

.chargers-highlight {
  color: #D6AF45;
}

/* ---- Two-column grid ---- */
.chargers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

/* ---- Card base ---- */
.charger-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
}

.charger-card-ac {}

.charger-card-dc {}

.charger-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

/* ---- Top text area ---- */
.charger-card-top {
  padding: 32px 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.charger-type {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.charger-type::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ac-type {
  color: #D6AF45;
}

.ac-type::before {
  background: #D6AF45;
  box-shadow: 0 0 0 3px rgba(214, 175, 69, 0.18);
}

.dc-type {
  color: #d94f00;
}

.dc-type::before {
  background: #d94f00;
  box-shadow: 0 0 0 3px rgba(217, 79, 0, 0.15);
}

/* ---- Bullet list ---- */
.charger-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.charger-list li {
  font-size: 14px;
  line-height: 1.65;
  color: #4a4030;
  padding-left: 18px;
  position: relative;
}

.charger-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8a848;
}

/* ---- Image area ---- */
.charger-card-img {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  height: 0;
  padding-bottom: 52%;
  /* aspect ratio — same for both cards */
}

.charger-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.charger-card:hover .charger-card-img img {
  transform: scale(1.06);
}

/* Dark gradient over image */
.charger-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.20) 45%,
      transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px 28px;
}

/* CTA Button */
.charger-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  transform: translateY(8px);
  opacity: 0;
}

.charger-card:hover .charger-cta {
  transform: translateY(0);
  opacity: 1;
}

.ac-cta {
  background: #D6AF45;
  color: #ffffff;
}

.ac-cta:hover {
  background: #B8922E;
}

.dc-cta {
  background: #d94f00;
  color: #ffffff;
}

.dc-cta:hover {
  background: #b84100;
}

/* Transition for button slide-up */
.charger-cta {
  transition: background 0.25s, transform 0.35s ease, opacity 0.35s ease;
}

/* ============================================
   DISCOVER CHARGERS — RESPONSIVE
   ============================================ */
@media (max-width: 860px) {
  .chargers-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .charger-card-dc {
    animation-delay: 0.15s;
  }

  .charger-card-img {
    padding-bottom: 52%;
    height: 0;
  }

  /* Always show CTA on mobile (no hover) */
  .charger-cta {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .chargers-section {
    padding: 56px 0 64px;
  }

  .chargers-container {
    padding: 0 20px;
  }

  .charger-card-top {
    padding: 24px 22px 20px;
  }

  .charger-card-img {
    padding-bottom: 60%;
    height: 0;
  }
}


/* ============================================
   INSIGHTS & UPDATES SECTION
   ============================================ */
.insights-section {
  background: #ffffff;
  padding: 80px 0 90px;
  overflow: hidden;
}

.insights-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ---- Header ---- */
.insights-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.insights-heading {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: #1a1508;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.insights-sub {
  font-size: 14px;
  color: #5a5040;
  line-height: 1.6;
}

.insights-blog-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 12px 26px;
  background: #d94f00;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, transform 0.2s;
  margin-top: 4px;
}

.insights-blog-btn:hover {
  background: #b84100;
  transform: translateY(-2px);
}

/* ---- Grid layout ---- */
/*
  Column 1 | Column 2 | Column 3
  Card1(r1) | Card2(r1) | Card3(r1+r2) ← spans 2 rows
  Card4(r2) | Card5(r2) |
*/
.insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

/* Card positioning */
.ins-card-1 {
  grid-column: 1;
  grid-row: 1;
}

.ins-card-2 {
  grid-column: 2;
  grid-row: 1;
}

.ins-card-3 {
  grid-column: 3;
  grid-row: 1 / span 2;
}

/* tall right card */
.ins-card-4 {
  grid-column: 1;
  grid-row: 2;
}

.ins-card-5 {
  grid-column: 2;
  grid-row: 2;
}

/* ---- Individual card ---- */
.insight-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background: #111;
}

.ins-card-1 {}

.ins-card-2 {}

.ins-card-3 {}

.ins-card-4 {}

.ins-card-5 {}

/* Fixed height for top row cards */
.ins-card-1,
.ins-card-2,
.ins-card-4,
.ins-card-5 {
  height: 240px;
}

/* Tall right card fills both rows */
.ins-card-3 {
  height: 100%;
  min-height: 496px;
  /* ~240*2 + 16gap */
}

/* Image */
.insight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
  filter: brightness(0.82);
}

.insight-card:hover img {
  transform: scale(1.07);
  filter: brightness(0.65);
}

/* Overlay gradient + content */
.insight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.25) 50%,
      transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 20px;
  gap: 8px;
}

/* "View" tag */
.ins-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 4px 12px;
  background: #d94f00;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-radius: 4px;

  /* Slide up on hover */
  transform: translateY(4px);
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.insight-card:hover .ins-tag {
  transform: translateY(0);
  opacity: 1;
}

/* Title text */
.ins-title {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.45;
  margin: 0;
  transition: color 0.2s;
}

.ins-card-3 .ins-title {
  font-size: 16px;
}

.insight-card:hover .ins-title {
  color: #fff8e0;
}

/* ============================================
   INSIGHTS — RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .insights-container {
    padding: 0 24px;
  }

  .insights-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .ins-card-1 {
    grid-column: 1;
    grid-row: 1;
  }

  .ins-card-2 {
    grid-column: 2;
    grid-row: 1;
  }

  .ins-card-3 {
    grid-column: 1 / span 2;
    grid-row: 2;
    min-height: 260px;
    height: 260px;
  }

  .ins-card-4 {
    grid-column: 1;
    grid-row: 3;
  }

  .ins-card-5 {
    grid-column: 2;
    grid-row: 3;
  }

  .ins-card-1,
  .ins-card-2,
  .ins-card-4,
  .ins-card-5 {
    height: 210px;
  }
}

@media (max-width: 560px) {
  .insights-section {
    padding: 52px 0 60px;
  }

  .insights-header {
    flex-direction: column;
    gap: 16px;
  }

  .insights-container {
    padding: 0 16px;
  }

  .insights-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ins-card-1,
  .ins-card-2,
  .ins-card-3,
  .ins-card-4,
  .ins-card-5 {
    grid-column: 1;
    grid-row: auto;
    height: 200px;
    min-height: unset;
  }

  /* Always show tag on mobile */
  .ins-tag {
    transform: translateY(0);
    opacity: 1;
  }
}


/* ============================================
   FOOTER
   ============================================ */

/* ---- Security Alert Bar ---- */
.footer-alert {
  background: #ffffff;
  border-top: 1px solid #e4eae7;
  padding: 28px 0;
}

.footer-alert-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 48px;
}

.footer-alert-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1508;
  margin-bottom: 8px;
}

.footer-alert-text {
  font-size: 13px;
  color: #5a5040;
  line-height: 1.65;
  max-width: 820px;
  margin-bottom: 10px;
}

.footer-alert-link {
  font-size: 13px;
  font-weight: 600;
  color: #D6AF45;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-alert-link:hover {
  color: #B8922E;
  text-decoration: underline;
}

/* ---- Main Footer Body ---- */
.footer-body {
  background: #f5f0e8;
  padding: 56px 0 48px;
  position: relative;
  /* subtle background image illusion */
  overflow: hidden;
}

.footer-body::after {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 480px;
  height: 380px;
  background: radial-gradient(ellipse, rgba(214, 175, 69, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.footer-body-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* ---- Brand Column ---- */
.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo-link {
  display: inline-block;
}

.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Social icons */
.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid #d0b870;
  background: transparent;
  color: #4a3a18;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.22s;
}

.footer-social-link:hover {
  background: #D6AF45;
  border-color: #D6AF45;
  color: #ffffff;
  transform: translateY(-3px);
}

/* ---- Link Columns ---- */
.footer-col-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1508;
  letter-spacing: 0.3px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13.5px;
  color: #4a4030;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.footer-links a:hover {
  color: #D6AF45;
  padding-left: 4px;
}

/* ---- Bottom Bar ---- */
.footer-bottom {
  background: #e8d8a8;
  padding: 16px 0;
}

.footer-bottom-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12.5px;
  color: #4a3a18;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 12.5px;
  color: #4a3a18;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: #D6AF45;
  text-decoration: underline;
}

/* ---- Scroll to Top Button ---- */
.footer-scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #D6AF45;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(214, 175, 69, 0.35);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  z-index: 200;
  pointer-events: none;
}

.footer-scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.footer-scroll-top:hover {
  background: #B8922E;
}

/* ============================================
   FOOTER — RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .footer-body-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px 40px;
  }

  .footer-brand-col {
    grid-column: 1 / span 2;
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
}

@media (max-width: 600px) {

  .footer-alert-inner,
  .footer-body-inner,
  .footer-bottom-inner {
    padding: 0 20px;
  }

  .footer-body-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
  }

  .footer-brand-col {
    grid-column: 1 / span 2;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-legal {
    gap: 12px;
  }

  .footer-scroll-top {
    bottom: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
  }
}




/* ============================================
   CTA BANNER — "Ready to power your next mile"
   ============================================ */
.cta-banner {
  background: #0d1220;
  padding: 0;
  overflow: hidden;
}

.cta-banner-inner {
  position: relative;
  max-width: 100%;
  padding: 80px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(13, 26, 46, 0.82) 0%, rgba(10, 16, 32, 0.78) 40%, rgba(20, 16, 10, 0.85) 100%),
    url('../image/evs.jpg') center center / cover no-repeat;
}

/* ---- Grid dot pattern overlay ---- */
.cta-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(214, 175, 69, 0.18) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  opacity: 0.55;
}

/* ---- Ambient glow blobs ---- */
.cta-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.cta-glow-left {
  width: 380px;
  height: 280px;
  background: rgba(214, 175, 69, 0.14);
  top: -60px;
  left: -80px;
}

.cta-glow-right {
  width: 320px;
  height: 240px;
  background: rgba(214, 175, 69, 0.10);
  bottom: -50px;
  right: -60px;
}

/* ---- Content ---- */
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
}

.cta-heading {
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.cta-brand {
  color: #D6AF45;
  position: relative;
  display: inline-block;
}

/* Underline shimmer on brand name */
.cta-brand::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #D6AF45, transparent);
  animation: brandShimmer 2.5s ease-in-out infinite;
}

@keyframes brandShimmer {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleX(0.6);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Buttons ---- */
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  background: #D6AF45;
  color: #0d1220;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid #D6AF45;
  transition: background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(214, 175, 69, 0.35);
}

.cta-btn-primary:hover {
  background: #E8C85A;
  border-color: #E8C85A;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(214, 175, 69, 0.5);
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid rgba(214, 175, 69, 0.38);
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
}

.cta-btn-secondary:hover {
  border-color: #D6AF45;
  color: #D6AF45;
  transform: translateY(-3px);
}

.cta-btn-secondary:hover .cta-arrow {
  transform: translateX(4px);
}

.cta-arrow {
  font-size: 16px;
  transition: transform 0.25s;
  display: inline-block;
}

/* ============================================
   CTA BANNER — RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .cta-banner-inner {
    padding: 60px 28px;
  }

  .cta-sub {
    font-size: 15px;
  }

  .cta-actions {
    gap: 14px;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    padding: 13px 28px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .cta-banner-inner {
    padding: 50px 20px;
  }

  .cta-heading {
    font-size: 24px;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}


/* ============================================
   IMPACT SECTION — "Our Impact in Every Charge"
   ============================================ */
.impact-section {
  background: #ffffff;
  padding: 90px 0 100px;
  overflow: hidden;
  position: relative;
}

/* Faint globe watermark */
.impact-globe {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 40%, rgba(214, 175, 69, 0.08) 0%, transparent 60%);
  border: 1px solid rgba(214, 175, 69, 0.12);
  pointer-events: none;
}

.impact-globe::before {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px solid rgba(214, 175, 69, 0.08);
}

.impact-globe::after {
  content: '';
  position: absolute;
  inset: 100px;
  border-radius: 50%;
  border: 1px solid rgba(214, 175, 69, 0.06);
}

.impact-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

/* ---- Header ---- */
.impact-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}

.impact-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #B8922E;
  margin-bottom: 14px;
  padding: 5px 14px;
  border: 1px solid rgba(214, 175, 69, 0.45);
  border-radius: 20px;
  background: rgba(214, 175, 69, 0.10);
}

.impact-heading {
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 700;
  color: #1a1508;
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin: 0;
}

.impact-gold {
  color: #B8922E;
  position: relative;
}

.impact-tagline {
  font-size: 15px;
  color: #5a5040;
  line-height: 1.8;
  align-self: end;
  padding-bottom: 6px;
}

/* ---- Stats row ---- */
.impact-stats {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(214, 175, 69, 0.25);
  border-radius: 14px;
  padding: 28px 40px;
  margin-bottom: 40px;
  gap: 0;
  box-shadow: 0 4px 20px rgba(214, 175, 69, 0.08);
}

.impact-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.impact-stat-num {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: #B8922E;
  line-height: 1;
  letter-spacing: -0.5px;
}

.impact-stat-plus {
  font-size: 0.6em;
  vertical-align: super;
  font-weight: 700;
}

.impact-stat-label {
  font-size: 12px;
  color: #6a5e48;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 500;
}

.impact-stat-divider {
  width: 1px;
  height: 52px;
  background: rgba(214, 175, 69, 0.25);
  flex-shrink: 0;
  margin: 0 8px;
}

/* ---- Cards ---- */
.impact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.impact-card {
  background: #ffffff;
  border: 1px solid rgba(214, 175, 69, 0.20);
  border-radius: 16px;
  padding: 36px 36px 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);

  /* Entry animation */
  opacity: 0;
  transform: translateY(30px);
  animation: impactFadeUp 0.7s ease forwards;
}

.impact-card-env {
  animation-delay: 0.1s;
}

.impact-card-social {
  animation-delay: 0.22s;
}

@keyframes impactFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Top-left corner glow */
.impact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 120px;
  background: radial-gradient(ellipse at top left, rgba(214, 175, 69, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.impact-card:hover {
  border-color: rgba(214, 175, 69, 0.45);
  box-shadow: 0 12px 40px rgba(214, 175, 69, 0.12);
  transform: translateY(-5px);
}

/* Icon box */
.impact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(214, 175, 69, 0.10);
  border: 1px solid rgba(214, 175, 69, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: #B8922E;
  transition: background 0.3s;
}

.impact-card:hover .impact-card-icon {
  background: rgba(214, 175, 69, 0.18);
}

.impact-card-icon svg {
  width: 24px;
  height: 24px;
}

.impact-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1508;
  margin-bottom: 22px;
  letter-spacing: -0.1px;
}

.impact-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.impact-card-list li {
  font-size: 14px;
  color: #4a4030;
  line-height: 1.65;
  padding-left: 16px;
  position: relative;
}

.impact-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #D6AF45;
  opacity: 0.8;
}

.impact-card-list li strong {
  color: #1a1508;
  font-weight: 600;
}

/* ============================================
   IMPACT SECTION — RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .impact-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .impact-stats {
    padding: 22px 20px;
    gap: 0;
    flex-wrap: wrap;
  }

  .impact-stat {
    flex: 0 0 50%;
    padding: 12px 0;
  }

  .impact-stat-divider {
    display: none;
  }

  .impact-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .impact-globe {
    width: 300px;
    height: 300px;
    right: -80px;
    opacity: 0.5;
  }
}

@media (max-width: 600px) {
  .impact-section {
    padding: 60px 0 70px;
  }

  .impact-container {
    padding: 0 20px;
  }

  .impact-card {
    padding: 28px 24px 32px;
  }

  .impact-stat {
    flex: 0 0 50%;
  }

  .impact-stats {
    padding: 20px 16px;
  }
}


/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testi-section {
  background: #f5f0e8;
  padding: 90px 0 80px;
  overflow: hidden;
  position: relative;
}

/* Subtle diagonal lines pattern */
.testi-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg,
      rgba(214, 175, 69, 0.06) 0px,
      rgba(214, 175, 69, 0.06) 1px,
      transparent 1px,
      transparent 60px);
  pointer-events: none;
}

.testi-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

/* ---- Header ---- */
.testi-header {
  text-align: center;
  margin-bottom: 56px;
}

.testi-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #B8922E;
  background: rgba(214, 175, 69, 0.12);
  border: 1px solid rgba(214, 175, 69, 0.40);
  border-radius: 20px;
  padding: 5px 16px;
  margin-bottom: 18px;
}

.testi-heading {
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 700;
  color: #1a1508;
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}

.testi-gold {
  color: #B8922E;
}

.testi-sub {
  font-size: 15px;
  color: #6a5e48;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* ---- Slider wrapper ---- */
.testi-slider-wrapper {
  overflow: hidden;
  margin: 0;
  padding: 12px 0 20px;
}

.testi-track {
  display: flex;
  gap: 20px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ---- Card ---- */
.testi-card {
  flex: 0 0 420px;
  width: 420px;
  background: #ffffff;
  border: 1px solid rgba(214, 175, 69, 0.20);
  border-radius: 20px;
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  cursor: default;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}

.testi-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(ellipse at top left, rgba(214, 175, 69, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.testi-card:hover {
  border-color: rgba(214, 175, 69, 0.45);
  box-shadow: 0 16px 48px rgba(214, 175, 69, 0.14);
  transform: translateY(-6px);
}

/* Quote icon */
.testi-quote-icon {
  font-size: 64px;
  line-height: 0.6;
  color: #D6AF45;
  opacity: 0.45;
  font-family: Georgia, serif;
  letter-spacing: -2px;
  margin-bottom: 4px;
}

/* Text */
.testi-text {
  font-size: 14.5px;
  line-height: 1.8;
  color: #4a4030;
  flex: 1;
  font-style: italic;
}

/* Stars */
.testi-stars {
  font-size: 15px;
  color: #D6AF45;
  letter-spacing: 2px;
}

/* Author */
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(214, 175, 69, 0.18);
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D6AF45, #B8922E);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(214, 175, 69, 0.35);
}

.testi-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1a1508;
  margin-bottom: 2px;
}

.testi-role {
  display: block;
  font-size: 12px;
  color: #8a7a60;
  letter-spacing: 0.3px;
}

/* ---- Controls ---- */
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

/* Dots */
.testi-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(214, 175, 69, 0.3);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  border: none;
  padding: 0;
}

.testi-dot.active {
  background: #D6AF45;
  width: 28px;
  border-radius: 4px;
}

/* Arrows */
.testi-arrows {
  display: flex;
  gap: 10px;
}

.testi-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(214, 175, 69, 0.45);
  background: transparent;
  color: #B8922E;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
  padding: 0;
}

.testi-arrow:hover {
  background: #D6AF45;
  border-color: #D6AF45;
  color: #ffffff;
  transform: scale(1.08);
}

/* ============================================
   TESTIMONIALS — RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .testi-container {
    padding: 0 24px;
  }

  .testi-slider-wrapper {
    margin: 0;
    padding: 8px 0 16px;
  }

  .testi-card {
    flex: 0 0 360px;
    width: 360px;
  }
}

@media (max-width: 600px) {
  .testi-section {
    padding: 60px 0 60px;
  }

  .testi-container {
    padding: 0 20px;
  }

  .testi-slider-wrapper {
    margin: 0;
    padding: 8px 0 16px;
  }

  .testi-card {
    flex: 0 0 calc(100vw - 40px);
    width: calc(100vw - 40px);
    padding: 28px 24px 26px;
  }

  .testi-header {
    margin-bottom: 40px;
  }
}


/* ============================================================
   BREADCRUMB SECTION
   ============================================================ */
.breadcrumb-section {
  position: relative;
  margin-top: var(--header-h);
  height: 320px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

/* Background image */
.breadcrumb-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.breadcrumb-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transform: scale(1.04);
  transition: transform 6s ease;
}

.breadcrumb-section:hover .breadcrumb-bg-img {
  transform: scale(1.08);
}

/* Dark gradient overlay */
.breadcrumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(10, 8, 0, 0.72) 0%,
      rgba(10, 8, 0, 0.55) 50%,
      rgba(214, 175, 69, 0.12) 100%);
}

/* Content sits above overlay */
.breadcrumb-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 44px;
}

.breadcrumb-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Page title */
.breadcrumb-title {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

/* Breadcrumb nav trail */
.breadcrumb-nav {
  display: inline-block;
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.70);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.22s;
  padding: 4px 0;
}

.breadcrumb-link:hover {
  color: var(--gold-light);
}

.bc-home-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  fill: currentColor;
}

.breadcrumb-separator {
  display: flex;
  align-items: center;
  margin: 0 6px;
  color: rgba(214, 175, 69, 0.55);
}

.bc-sep-icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

.breadcrumb-active {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.4px;
}

/* Gold accent line below nav */
.breadcrumb-line {
  display: block;
  margin-top: 18px;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  border-radius: 2px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .breadcrumb-section {
    height: 240px;
    margin-top: 62px;
  }

  .breadcrumb-inner {
    padding: 0 22px;
  }

  .breadcrumb-content {
    padding-bottom: 32px;
  }

  .breadcrumb-title {
    font-size: 32px;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .breadcrumb-section {
    height: 210px;
  }

  .breadcrumb-title {
    font-size: 28px;
  }

  .breadcrumb-link,
  .breadcrumb-active {
    font-size: 12.5px;
  }
}


/* ============================================================
   ABOUT PAGE — SHARED UTILITIES
   ============================================================ */
.about-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
}

.about-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.about-section-heading {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  color: #1a1508;
  line-height: 1.2;
  letter-spacing: -0.4px;
  margin-bottom: 20px;
}

.about-gold {
  color: var(--gold);
}

.about-body-text {
  font-size: 15.5px;
  line-height: 1.85;
  color: #4a4030;
  margin-bottom: 18px;

}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #0A0800;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 4px;
  margin-top: 12px;
  transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
  box-shadow: 0 4px 18px rgba(214, 175, 69, 0.28);
}

.about-cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(214, 175, 69, 0.38);
}

.about-arrow {
  transition: transform 0.2s;
}

.about-cta-btn:hover .about-arrow {
  transform: translateX(4px);
}


/* ============================================================
   ABOUT INTRO SECTION
   ============================================================ */
.about-intro-section {
  background: #faf8f3;
  padding: 90px 0 80px;
  overflow: hidden;
}

.about-intro-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 48px;
  align-items: center;
  gap: 72px;
}

.about-intro-left {
  flex: 1;
  min-width: 0;
}

.about-intro-right {
  flex: 0 0 440px;
}

/* Image frame with badge */
.about-img-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
}

.about-main-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-img-frame:hover .about-main-img {
  transform: scale(1.04);
}

/* Floating badge */
.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(10, 8, 0, 0.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(214, 175, 69, 0.4);
  border-radius: 10px;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.badge-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.badge-num sup {
  font-size: 16px;
  vertical-align: super;
}

.badge-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 0.3px;
}

@media (max-width: 900px) {
  .about-intro-container {
    flex-direction: column;
    gap: 40px;
    padding: 0 24px;
  }

  .about-intro-right {
    flex: unset;
    width: 100%;
  }

  .about-main-img {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .about-intro-section {
    padding: 60px 0 55px;
  }

  .about-intro-container {
    padding: 0 18px;
  }

  .about-body-text {
    max-width: 100%;
  }
}


/* ============================================================
   ABOUT STATS STRIP
   ============================================================ */
.about-stats-section {
  background: var(--black);
  padding: 56px 0;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.about-stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  flex-wrap: wrap;
}

.about-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 120px;
  padding: 0 16px;
}

.about-stat-num {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.5px;
}

.about-stat-plus {
  font-size: 60%;
  vertical-align: super;
  color: var(--gold-light);
}

.about-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.3px;
  text-align: center;
}

.about-stat-divider {
  width: 1px;
  height: 52px;
  background: var(--gold-border);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .about-stats-container {
    padding: 0 24px;
    gap: 24px;
  }

  .about-stat-divider {
    display: none;
  }

  .about-stat-item {
    flex: 0 0 calc(50% - 24px);
    min-width: 0;
    padding: 16px 0;
    border-bottom: 1px solid var(--gold-border);
  }

  .about-stat-item:nth-last-child(2),
  .about-stat-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .about-stats-section {
    padding: 40px 0;
  }
}


/* ============================================================
   VISION / MISSION / VALUES CARDS
   ============================================================ */
.about-vm-section {
  background: #f5f0e8;
  padding: 90px 0 80px;
}

.about-vm-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.about-vm-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 44px 36px 40px;
  border: 1px solid rgba(214, 175, 69, 0.15);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-vm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.10);
  border-color: rgba(214, 175, 69, 0.40);
}

/* Center mission card — gold tint */
.about-vm-card-center {
  background: linear-gradient(145deg, #1a1508 0%, #2a1e08 100%);
  border-color: rgba(214, 175, 69, 0.35);
}

.about-vm-card-center .vm-title,
.about-vm-card-center .vm-text {
  color: #e8dfc0;
}

.about-vm-card-center .vm-icon-wrap {
  color: var(--gold);
  border-color: rgba(214, 175, 69, 0.35);
  background: rgba(214, 175, 69, 0.1);
}

.vm-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 12px;
  border: 1px solid rgba(214, 175, 69, 0.25);
  background: rgba(214, 175, 69, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dim);
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}

.about-vm-card:hover .vm-icon-wrap {
  background: rgba(214, 175, 69, 0.16);
  border-color: rgba(214, 175, 69, 0.45);
}

.vm-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1508;
  letter-spacing: -0.2px;
}

.vm-text {
  font-size: 14.5px;
  line-height: 1.80;
  color: #6a5e48;
}

@media (max-width: 900px) {
  .about-vm-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 24px;
  }

  .about-vm-section {
    padding: 60px 0 55px;
  }
}

@media (max-width: 480px) {
  .about-vm-container {
    padding: 0 18px;
  }

  .about-vm-card {
    padding: 32px 26px 28px;
  }
}


/* ============================================================
   TIMELINE SECTION
   ============================================================ */
.about-timeline-section {
  background: #faf8f3;
  padding: 90px 0 80px;
  overflow: hidden;
}

.about-timeline-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 48px;
}

.about-timeline-header {
  text-align: center;
  margin-bottom: 64px;
}

.about-timeline-header .about-eyebrow {
  padding-left: 0;
}

.about-timeline-header .about-eyebrow::before {
  display: none;
}

/* The vertical centre line */
.timeline-track {
  position: relative;
  padding: 0;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(180deg, var(--gold-border) 0%, rgba(214, 175, 69, 0.08) 100%);
  z-index: 0;
}

/* Individual row */
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 48px;
  position: relative;
}

.tl-left {
  flex-direction: row;
}

.tl-right {
  flex-direction: row-reverse;
}

/* Dot in the centre */
.tl-dot-wrap {
  flex: 0 0 40px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20px;
  position: relative;
  z-index: 2;
}

.tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: #faf8f3;
  position: relative;
}

.tl-dot-active {
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(214, 175, 69, 0.22);
}

/* Card */
.tl-card {
  flex: 1;
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 32px;
  border: 1px solid rgba(214, 175, 69, 0.15);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  max-width: calc(50% - 40px);
}

.tl-card:hover {
  border-color: rgba(214, 175, 69, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
}

.tl-card-active {
  border-color: rgba(214, 175, 69, 0.40);
  background: linear-gradient(135deg, #fff 60%, rgba(214, 175, 69, 0.05) 100%);
}

.tl-year {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.tl-year-active {
  color: var(--gold-dim);
}

.tl-title {
  font-size: 17px;
  font-weight: 700;
  color: #1a1508;
  margin-bottom: 8px;
  line-height: 1.3;
}

.tl-desc {
  font-size: 14px;
  line-height: 1.75;
  color: #6a5e48;
}

/* ---- Timeline Responsive ---- */
@media (max-width: 700px) {
  .timeline-track::before {
    left: 16px;
  }

  .timeline-item {
    flex-direction: row !important;
    margin-bottom: 32px;
  }

  .tl-dot-wrap {
    flex: 0 0 32px;
    padding-top: 18px;
  }

  .tl-card {
    max-width: 100%;
    flex: 1;
    padding: 22px 20px;
  }
}

@media (max-width: 480px) {
  .about-timeline-section {
    padding: 60px 0 55px;
  }

  .about-timeline-container {
    padding: 0 18px;
  }

  .about-timeline-header {
    margin-bottom: 44px;
  }
}


/* ============================================================
   LEADERSHIP TEAM
   ============================================================ */
.about-team-section {
  background: #f5f0e8;
  padding: 90px 0 80px;
  overflow: hidden;
}

.about-team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.about-team-container .about-timeline-header {
  margin-bottom: 52px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(214, 175, 69, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.12);
}

.team-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img {
  transform: scale(1.08);
}

/* Social icons overlay on hover */
.team-social-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-social-overlay {
  opacity: 1;
}

.team-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(214, 175, 69, 0.6);
  background: rgba(214, 175, 69, 0.12);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.22s, border-color 0.22s, transform 0.22s;
}

.team-social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0800;
  transform: scale(1.1);
}

/* Info panel */
.team-info {
  padding: 22px 22px 24px;
}

.team-name {
  font-size: 17px;
  font-weight: 700;
  color: #1a1508;
  margin-bottom: 4px;
}

.team-role {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.team-bio {
  font-size: 13.5px;
  line-height: 1.65;
  color: #7a6e58;
}

/* ---- Team Grid Responsive ---- */
@media (max-width: 1000px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 600px) {
  .about-team-section {
    padding: 60px 0 55px;
  }

  .about-team-container {
    padding: 0 18px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .team-img-wrap {
    height: 180px;
  }

  .team-info {
    padding: 16px 16px 18px;
  }

  .team-name {
    font-size: 15px;
  }
}

@media (max-width: 400px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-section {
  background: #faf8f3;
  padding: 72px 0 60px;
}

.contact-info-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-info-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 26px;
  border: 1px solid rgba(214, 175, 69, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.09);
  border-color: rgba(214, 175, 69, 0.35);
}

.ci-icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: rgba(214, 175, 69, 0.1);
  border: 1px solid rgba(214, 175, 69, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 18px;
}

.ci-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1508;
  margin-bottom: 10px;
}

.ci-text {
  font-size: 14px;
  line-height: 1.75;
  color: #6a5e48;
}

.ci-link {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.ci-link:hover {
  color: var(--gold-dim);
}

/* Contact Form Section */
.contact-form-section {
  background: #f5f0e8;
  padding: 80px 0;
}

.contact-form-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cf-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.cf-label {
  font-size: 13px;
  font-weight: 600;
  color: #4a4030;
  letter-spacing: 0.3px;
}

.cf-input {
  padding: 12px 16px;
  border: 1.5px solid rgba(214, 175, 69, 0.25);
  border-radius: 6px;
  background: #ffffff;
  font-size: 14.5px;
  color: #1a1508;
  outline: none;
  transition: border-color 0.22s, box-shadow 0.22s;
  font-family: inherit;
  width: 100%;
}

.cf-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214, 175, 69, 0.12);
}

.cf-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B8922E' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.cf-textarea {
  resize: vertical;
  min-height: 130px;
}

.cf-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #0A0800;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: none;
  padding: 15px 32px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
  box-shadow: 0 4px 18px rgba(214, 175, 69, 0.28);
  align-self: flex-start;
}

.cf-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(214, 175, 69, 0.38);
}

.cf-note {
  font-size: 12px;
  color: #9a9070;
  line-height: 1.5;
}

/* Regional Offices */
.contact-offices-heading {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  color: #1a1508;
  line-height: 1.3;
  margin-bottom: 28px;
  letter-spacing: -0.2px;
}

.contact-offices-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-office-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(214, 175, 69, 0.15);
}

.contact-office-item:last-child {
  border-bottom: none;
}

.co-city {
  font-size: 15px;
  font-weight: 700;
  color: #1a1508;
  margin-bottom: 4px;
}

.co-addr {
  font-size: 13.5px;
  color: #6a5e48;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .contact-info-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 24px;
  }

  .contact-form-container {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }
}

@media (max-width: 600px) {
  .contact-info-container {
    grid-template-columns: 1fr;
    padding: 0 18px;
  }

  .contact-form-section {
    padding: 60px 0;
  }

  .contact-form-container {
    padding: 0 18px;
  }

  .cf-row {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-grid-section {
  background: #faf8f3;
  padding: 80px 0 70px;
}

.services-grid-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.services-grid-header {
  text-align: center;
  margin-bottom: 52px;
}

.srv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.srv-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(214, 175, 69, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.3s;
}

.srv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.11);
  border-color: rgba(214, 175, 69, 0.32);
}

.srv-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.srv-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.srv-card:hover .srv-img {
  transform: scale(1.06);
}

.srv-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(214, 175, 69, 0.92);
  color: #0a0800;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
}

.srv-body {
  padding: 28px 28px 32px;
}

.srv-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1508;
  margin-bottom: 12px;
  line-height: 1.3;
}

.srv-desc {
  font-size: 14.5px;
  line-height: 1.78;
  color: #5a5040;
  margin-bottom: 16px;
}

.srv-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}

.srv-list li {
  font-size: 13.5px;
  color: #6a5e48;
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}

.srv-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* How it works */
.srv-process-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.srv-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}

.srv-process-step {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 24px;
  border: 1px solid rgba(214, 175, 69, 0.15);
  text-align: center;
  position: relative;
}

.sps-num {
  font-size: 40px;
  font-weight: 900;
  color: rgba(214, 175, 69, 0.18);
  line-height: 1;
  margin-bottom: 14px;
  font-family: 'Arial Black', Arial, sans-serif;
}

.sps-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1508;
  margin-bottom: 10px;
}

.sps-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: #6a5e48;
}

.bg-light-section {
  background: #faf8f3 !important;
}

@media (max-width: 900px) {
  .srv-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .services-grid-container {
    padding: 0 24px;
  }

  .srv-process-container {
    padding: 0 24px;
  }

  .srv-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .services-grid-section {
    padding: 60px 0;
  }

  .services-grid-container {
    padding: 0 18px;
  }

  .srv-process-container {
    padding: 0 18px;
  }

  .srv-process-grid {
    grid-template-columns: 1fr;
  }

  .srv-img-wrap {
    height: 200px;
  }
}


/* ============================================================
   CHARGERS PAGE
   ============================================================ */
.charger-detail-section {
  padding: 80px 0 70px;
}

.charger-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.charger-detail-header {
  text-align: center;
  margin-bottom: 52px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.charger-detail-sub {
  font-size: 15px;
  line-height: 1.75;
  color: #6a5e48;
  margin-top: 8px;
}

.charger-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.charger-product-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(214, 175, 69, 0.14);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.35s, box-shadow 0.35s;
  display: flex;
  flex-direction: column;
}

.charger-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.11);
}

.cpc-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.cpc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.charger-product-card:hover .cpc-img {
  transform: scale(1.06);
}

.cpc-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 3px;
}

.cpc-badge-ac {
  background: rgba(214, 175, 69, 0.92);
  color: #0a0800;
}

.cpc-badge-dc {
  background: rgba(10, 8, 0, 0.82);
  color: var(--gold);
  border: 1px solid rgba(214, 175, 69, 0.5);
}

.cpc-body {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cpc-name {
  font-size: 18px;
  font-weight: 700;
  color: #1a1508;
  margin-bottom: 4px;
  line-height: 1.3;
}

.cpc-tagline {
  font-size: 13px;
  color: var(--gold-dim);
  font-style: italic;
  margin-bottom: 18px;
}

.cpc-specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  padding: 16px;
  background: #faf8f3;
  border-radius: 8px;
  border: 1px solid rgba(214, 175, 69, 0.1);
}

.cpc-spec {
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.cpc-spec-label {
  font-size: 11.5px;
  font-weight: 600;
  color: #9a9070;
  letter-spacing: 0.3px;
  min-width: 90px;
  flex-shrink: 0;
}

.cpc-spec-val {
  font-size: 12.5px;
  color: #3a3020;
  font-weight: 500;
  line-height: 1.4;
}

.cpc-desc {
  font-size: 13.5px;
  line-height: 1.72;
  color: #6a5e48;
  flex: 1;
  margin-bottom: 4px;
}

@media (max-width: 1000px) {
  .charger-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .charger-detail-container {
    padding: 0 24px;
  }
}

@media (max-width: 640px) {
  .charger-product-grid {
    grid-template-columns: 1fr;
  }

  .charger-detail-section {
    padding: 60px 0;
  }

  .charger-detail-container {
    padding: 0 18px;
  }

  .cpc-img-wrap {
    height: 200px;
  }
}


/* ============================================================
   NEWSROOM PAGE
   ============================================================ */
.newsroom-featured-section {
  background: #faf8f3;
  padding: 80px 0 70px;
}

.newsroom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.newsroom-header {
  margin-bottom: 48px;
}

/* Featured card */
.news-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
  background: #ffffff;
  margin-bottom: 52px;
  border: 1px solid rgba(214, 175, 69, 0.14);
}

.nfc-img-wrap {
  overflow: hidden;
  height: 380px;
}

.nfc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.news-featured-card:hover .nfc-img {
  transform: scale(1.05);
}

.nfc-body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.nfc-title {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  color: #1a1508;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.nfc-excerpt {
  font-size: 15px;
  line-height: 1.78;
  color: #5a5040;
  flex: 1;
}

/* News cat and date */
.news-cat-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: rgba(214, 175, 69, 0.12);
  color: var(--gold-dim);
  border: 1px solid rgba(214, 175, 69, 0.3);
  padding: 3px 10px;
  border-radius: 3px;
  margin-right: 10px;
}

.news-date {
  font-size: 12.5px;
  color: #9a9070;
}

/* News grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(214, 175, 69, 0.12);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
  transition: transform 0.35s, box-shadow 0.35s;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.10);
}

.nc-img-wrap {
  height: 190px;
  overflow: hidden;
}

.nc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.news-card:hover .nc-img {
  transform: scale(1.06);
}

.nc-body {
  padding: 22px 22px 24px;
}

.nc-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.nc-title {
  font-size: 15.5px;
  font-weight: 700;
  color: #1a1508;
  line-height: 1.4;
  margin-bottom: 10px;
}

.nc-excerpt {
  font-size: 13.5px;
  line-height: 1.7;
  color: #6a5e48;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nc-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nc-link:hover {
  color: var(--gold-dim);
  gap: 10px;
}

@media (max-width: 900px) {
  .newsroom-container {
    padding: 0 24px;
  }

  .news-featured-card {
    grid-template-columns: 1fr;
  }

  .nfc-img-wrap {
    height: 260px;
  }

  .nfc-body {
    padding: 32px 28px;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .newsroom-featured-section {
    padding: 60px 0;
  }

  .newsroom-container {
    padding: 0 18px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .nfc-img-wrap {
    height: 220px;
  }
}


/* ============================================================
   CAREERS PAGE
   ============================================================ */
.careers-jobs-section {
  background: #faf8f3;
  padding: 80px 0 70px;
}

.careers-jobs-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.jobs-dept-group {
  margin-bottom: 44px;
}

.jobs-dept-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  border-bottom: 1px solid rgba(214, 175, 69, 0.25);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.job-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 26px 28px;
  border: 1px solid rgba(214, 175, 69, 0.14);
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.job-card:hover {
  border-color: rgba(214, 175, 69, 0.38);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.job-card-left {
  flex: 1;
  min-width: 0;
}

.job-title {
  font-size: 17px;
  font-weight: 700;
  color: #1a1508;
  margin-bottom: 8px;
  line-height: 1.3;
}

.job-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: #6a5e48;
  margin-bottom: 14px;
}

.job-meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.jmt {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #8a7a60;
  font-weight: 500;
}

.jmt i {
  color: var(--gold-dim);
  font-size: 11px;
}

.job-card-right {
  flex-shrink: 0;
  padding-top: 4px;
}

@media (max-width: 700px) {
  .careers-jobs-container {
    padding: 0 18px;
  }

  .careers-jobs-section {
    padding: 60px 0;
  }

  .job-card {
    flex-direction: column;
    gap: 18px;
  }

  .job-card-right {
    width: 100%;
  }

  .job-card-right .about-cta-btn {
    width: 100%;
    justify-content: center;
  }
}


/* ============================================================
   INVESTORS PAGE
   ============================================================ */
.investors-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.investors-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  font-size: 14px;
}

.investors-table thead tr {
  background: var(--black);
}

.investors-table thead th {
  padding: 16px 20px;
  text-align: left;
  color: var(--text-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
}

.investors-table tbody tr {
  border-bottom: 1px solid rgba(214, 175, 69, 0.1);
  transition: background 0.2s;
}

.investors-table tbody tr:last-child {
  border-bottom: none;
}

.investors-table tbody tr:hover {
  background: rgba(214, 175, 69, 0.04);
}

.investors-table tbody td {
  padding: 16px 20px;
  color: #4a4030;
  line-height: 1.5;
}

.inv-latest-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: rgba(214, 175, 69, 0.15);
  color: var(--gold-dim);
  border: 1px solid rgba(214, 175, 69, 0.3);
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: middle;
}

.inv-dl-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s;
}

.inv-dl-link:hover {
  color: var(--gold-dim);
}


/* ============================================================
   PURIANCE PARENT COMPANY LOGO — HEADER
   ============================================================ */
.puriance-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  transition: opacity 0.2s, background 0.2s;
}

.puriance-logo-link:hover {
  opacity: 0.82;
  background: rgba(214, 175, 69, 0.08);
}

.puriance-logo {
  width: 156px;
  display: block;
  object-fit: contain;
  filter: brightness(1.1);
}

@media (max-width: 768px) {
  .puriance-logo {
    height: 26px;
  }
}


/* ============================================================
   FOOTER — ADDRESS & CONTACT LINKS
   ============================================================ */
.footer-address {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-top: 14px;
}

.footer-contact-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1.9;
}

.footer-contact-link:hover {
  color: var(--gold-light);
}


/* ============================================================
   PRODUCTS PAGE — RATE LIST
   ============================================================ */

/* Intro dark strip */
.products-intro-strip {
  background: #1a1508;
  padding: 22px 0;
  text-align: center;
  border-bottom: 1px solid var(--gold-border);
}

.products-intro-strip h2 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}

.products-intro-strip p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}

/* ---- Alert banners ---- */
.products-alert {
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 28px;
  text-align: center;
}

.products-alert-success {
  background: #d1fae5;
  border: 1px solid #a7f3d0;
}

.products-alert-success i {
  color: #059669;
  font-size: 40px;
  display: block;
  margin-bottom: 10px;
}

.products-alert-success h3 {
  color: #065f46;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.products-alert-success p {
  color: #047857;
  font-size: 14px;
  margin: 0;
}

.products-alert-error {
  background: #fee2e2;
  border: 1px solid #fecaca;
  color: #991b1b;
  font-size: 14px;
}

/* ---- Rate List Section ---- */
.products-rate-section {
  background: #faf8f3;
  padding: 70px 0 80px;
}

.products-rate-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 48px;
}

.products-rate-header {
  text-align: center;
  margin-bottom: 40px;
}

/* ---- Product Grid ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ============================================================
   PRODUCT CARD V2 — Premium redesign
   ============================================================ */
.product-card-v2 {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  border: 1px solid rgba(214, 175, 69, 0.18);
}

.product-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
  border-color: rgba(214, 175, 69, 0.45);
}

/* Top accent bar */
.pcv2-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  gap: 10px;
  background: linear-gradient(90deg, #1a1508 0%, #2e2310 100%);
  border-bottom: 2px solid var(--gold);
}

.pcv2-type-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.pcv2-power-pill {
  background: rgba(255, 255, 255, 0.20);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.30);
  backdrop-filter: blur(4px);
}

/* Card body */
.pcv2-body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Power visual */
.pcv2-power-visual {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.pcv2-bolt-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(214, 175, 69, 0.15) 0%, rgba(214, 175, 69, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  border: 1px solid rgba(214, 175, 69, 0.25);
}

.pcv2-bolt-svg {
  width: 44px;
  height: 44px;
  color: var(--gold);
}

.pcv2-power-number {
  font-size: 38px;
  font-weight: 900;
  color: #1a1508;
  letter-spacing: -1px;
  line-height: 1;
}

/* Name */
.pcv2-name {
  font-size: 15px;
  font-weight: 700;
  color: #1a1508;
  line-height: 1.4;
  margin-bottom: 10px;
}

/* Description */
.pcv2-desc {
  font-size: 13px;
  color: #6a5e48;
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

/* Feature tags */
.pcv2-features {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
}

.pcv2-feat-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #4a3a10;
  background: rgba(214, 175, 69, 0.10);
  border: 1px solid rgba(214, 175, 69, 0.28);
  padding: 4px 10px;
  border-radius: 50px;
}

.pcv2-feat-tag i {
  color: var(--gold-dim);
  font-size: 9px;
}

/* Divider */
.pcv2-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(214, 175, 69, 0.35) 0%, transparent 100%);
  margin-bottom: 18px;
}

/* Price row */
.pcv2-price-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.pcv2-price-label {
  font-size: 11px;
  font-weight: 600;
  color: #9a9070;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

.pcv2-price {
  font-size: 30px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.5px;
}

.pcv2-price-note {
  font-size: 11px;
  color: #9a9070;
  margin-top: 5px;
}

/* Warranty badge */
.pcv2-warranty-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #1a1508 0%, #3a2c10 100%);
  color: var(--gold);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  flex-shrink: 0;
  min-width: 58px;
}

.pcv2-warranty-badge i {
  font-size: 16px;
  margin-bottom: 2px;
}

/* CTA */
.pcv2-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(90deg, #1a1508 0%, #2e2310 100%);
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 14px 20px;
  border-radius: 12px;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(214, 175, 69, 0.30);
  margin-top: auto;
}

.pcv2-cta:hover {
  background: linear-gradient(90deg, #D6AF45 0%, #E8C85A 100%);
  color: #1a1508;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(214, 175, 69, 0.30);
}

.pcv2-cta-arrow {
  font-size: 16px;
  transition: transform 0.2s;
  margin-left: auto;
}

.pcv2-cta:hover .pcv2-cta-arrow {
  transform: translateX(4px);
}

/* Legacy badge classes — keep for product-enquiry.php */
.product-type-badge {
  background: #1a1508;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-type-badge-ac {
  background: rgba(214, 175, 69, 0.15);
  color: var(--gold-dim);
  border: 1px solid var(--gold-border);
}

.product-power-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-dim);
}

/* ---- Responsive: products grid ---- */
@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pcv2-power-number {
    font-size: 30px;
  }

  .pcv2-price {
    font-size: 26px;
  }
}

/* ---- Services Panel ---- */
.products-services-section {
  background: #f5f0e8;
  padding: 60px 0;
}

.products-services-container {
  margin: 0 auto;
  padding: 0 48px;
}

.products-services-header {
  text-align: center;
  margin-bottom: 32px;
}

.services-panel {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.services-panel-row {
  padding: 28px 32px;
  border-bottom: 1px solid var(--gold-border);
}

.services-panel-row:last-child {
  border-bottom: none;
}

.services-panel-row h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1508;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.services-panel-row h3 i {
  color: var(--gold);
}

.services-panel-row .services-price {
  font-size: 14px;
  color: #4a4030;
  margin-bottom: 6px;
}

.services-panel-row .services-price strong {
  color: var(--gold);
}

.services-panel-row .services-price-excluded {
  color: #ef4444;
  font-weight: 700;
}

.services-panel-row .services-note {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.6;
}

/* Terms block */
.products-terms {
  margin-top: 24px;
  padding: 22px 28px;
  background: rgba(214, 175, 69, 0.07);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
}

.products-terms h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1a1508;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.products-terms h4 i {
  color: var(--gold);
}

.products-terms ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.products-terms ul li {
  font-size: 13px;
  color: #4a4030;
  line-height: 1.9;
  padding-left: 16px;
  position: relative;
}

.products-terms ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.products-terms ul li a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.products-terms ul li a:hover {
  color: var(--gold-dim);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {

  .products-rate-container,
  .products-services-container {
    padding: 0 24px;
  }
}

@media (max-width: 600px) {
  .products-rate-section {
    padding: 52px 0 60px;
  }

  .products-services-section {
    padding: 44px 0;
  }

  .products-rate-container,
  .products-services-container {
    padding: 0 18px;
  }

  .services-panel-row {
    padding: 22px 20px;
  }

  .products-terms {
    padding: 18px 20px;
  }
}


/* enq-modal classes removed — replaced by dedicated product-enquiry.php page */


/* ============================================================
   PRODUCT ENQUIRY PAGE  (product-enquiry.php)
   ============================================================ */
.penq-section {
  background: #faf8f3;
  padding: 72px 0 90px;
}

.penq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ---- Two-column layout ---- */
.penq-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}

/* ---- LEFT — product summary aside ---- */
.penq-aside {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.penq-product-card {
  background: #ffffff;
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.penq-product-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.penq-product-name {
  font-size: 17px;
  font-weight: 700;
  color: #1a1508;
  line-height: 1.4;
  margin-bottom: 14px;
}

.penq-product-price {
  font-size: 30px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1;
}

.penq-product-price span {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 500;
  margin-left: 6px;
}

.penq-product-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(214, 175, 69, 0.15);
  padding-top: 18px;
}

.penq-product-meta li {
  font-size: 13px;
  color: #4a4030;
  display: flex;
  align-items: center;
  gap: 10px;
}

.penq-product-meta li i {
  color: var(--gold);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.penq-product-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: rgba(214, 175, 69, 0.10);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 18px;
}

.penq-product-generic-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #6a5e48;
  margin-bottom: 18px;
}

.penq-back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gold-dim);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s, gap 0.2s;
}

.penq-back-link:hover {
  color: var(--gold);
  gap: 10px;
}

/* Reassurance block */
.penq-reassurance {
  background: #ffffff;
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.penq-reassurance-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #4a4030;
}

.penq-reassurance-item i {
  color: var(--gold);
  font-size: 16px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

/* ---- RIGHT — form wrap ---- */
.penq-form-wrap {
  background: #ffffff;
  border: 1px solid rgba(214, 175, 69, 0.15);
  border-radius: 16px;
  padding: 40px 40px 44px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.penq-form-wrap .about-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
}

.penq-form-wrap .about-section-heading {
  margin-bottom: 12px;
}

.penq-form-wrap .about-body-text {
  margin-bottom: 28px;
  max-width: 100%;
}

/* Error banner */
.penq-error-banner {
  background: #fee2e2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #991b1b;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Form re-uses .cf-* classes from contact.php — nothing extra needed */
.penq-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ---- SUCCESS state ---- */
.penq-success {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0 40px;
}

.penq-success-icon {
  font-size: 64px;
  color: #059669;
  margin-bottom: 20px;
  line-height: 1;
}

.penq-success-title {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  color: #1a1508;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.penq-success-sub {
  font-size: 15px;
  line-height: 1.8;
  color: #5a5040;
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.penq-success-product {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(214, 175, 69, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  padding: 14px 22px;
  margin-bottom: 32px;
  font-size: 14px;
  color: #1a1508;
  font-weight: 600;
}

.penq-success-price {
  color: var(--gold);
  font-size: 17px;
  font-weight: 800;
}

.penq-success-price small {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 500;
}

.penq-success-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .penq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .penq-aside {
    position: static;
  }

  .penq-product-card,
  .penq-reassurance {
    max-width: 100%;
  }

  .penq-container {
    padding: 0 24px;
  }

  .penq-form-wrap {
    padding: 28px 24px 32px;
  }
}

@media (max-width: 600px) {
  .penq-section {
    padding: 50px 0 70px;
  }

  .penq-container {
    padding: 0 18px;
  }

  .penq-form-wrap {
    padding: 24px 18px 28px;
  }

  .penq-success-actions {
    flex-direction: column;
  }

  .penq-success-actions .about-cta-btn,
  .penq-success-actions .cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}


/* ============================================================
   HOME PAGE — PRODUCTS HIGHLIGHT SECTION  (hp-prod-*)
   Completely isolated prefix — zero conflict with cs-* slider
   ============================================================ */
.hp-prod-section {
  background: #faf8f3;
  padding: 72px 0 80px;
  overflow: hidden;
}

.hp-prod-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 56px;
  /* extra padding so arrows don't overlap content */
}

/* ---- Header ---- */
.hp-prod-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}

.hp-prod-header-left .about-eyebrow {
  display: block;
  margin-bottom: 6px;
}

.hp-prod-header-left .about-section-heading {
  margin: 0;
}

.hp-prod-viewall {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dim);
  text-decoration: none;
  letter-spacing: 0.5px;
  border-bottom: 1.5px solid var(--gold-border);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.hp-prod-viewall:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ---- Track wrapper — clips cards, shows peek ---- */
.hp-prod-track-wrap {
  position: relative;
  /* overflow hidden on inner mask, not here — so arrows are visible */
  overflow: visible;
  padding: 0 0 4px;
}

/* Clip mask sits behind arrows */
.hp-prod-track-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* no clip needed — js controls translateX */
}

/* overflow clip on the track itself via parent */
.hp-prod-track-clip {
  overflow: hidden;
  position: relative;
}

/* ---- Scrolling track — JS drives translateX ---- */
.hp-prod-track {
  display: flex;
  gap: 24px;
  transition: transform 0.52s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  /* no padding-left so first card aligns to grid */
}

/* ---- Individual product card ---- */
.hp-prod-card {
  flex: 0 0 280px;
  width: 280px;
  background: #ffffff;
  border: 1px solid rgba(214, 175, 69, 0.20);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s;
  display: flex;
  flex-direction: column;
}

.hp-prod-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
  border-color: rgba(214, 175, 69, 0.50);
}

/* Top bar — dark gold */
.hp-prod-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: linear-gradient(90deg, #1a1508 0%, #2e2310 100%);
  border-bottom: 2px solid var(--gold);
}

.hp-prod-type {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.hp-prod-power-pill {
  background: rgba(255, 255, 255, 0.18);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  padding: 3px 11px;
  border-radius: 50px;
  border: 1px solid rgba(214, 175, 69, 0.40);
  letter-spacing: 0.3px;
}

/* Card body */
.hp-prod-card-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Power row */
.hp-prod-power-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.hp-prod-bolt {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(214, 175, 69, 0.14) 0%, rgba(214, 175, 69, 0.04) 100%);
  border: 1px solid rgba(214, 175, 69, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.hp-prod-bolt svg {
  width: 32px;
  height: 32px;
}

.hp-prod-kw {
  font-size: 32px;
  font-weight: 900;
  color: #1a1508;
  letter-spacing: -1px;
  line-height: 1;
}

/* Name & desc */
.hp-prod-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #1a1508;
  line-height: 1.4;
  margin-bottom: 8px;
}

.hp-prod-desc {
  font-size: 12.5px;
  color: #6a5e48;
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

/* Divider */
.hp-prod-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(214, 175, 69, 0.30) 0%, transparent 100%);
  margin-bottom: 14px;
}

/* Price row */
.hp-prod-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.hp-prod-price-lbl {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #9a9070;
  margin-bottom: 3px;
}

.hp-prod-price {
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.5px;
  line-height: 1;
}

.hp-prod-warranty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: linear-gradient(135deg, #1a1508 0%, #3a2c10 100%);
  color: var(--gold);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  flex-shrink: 0;
}

.hp-prod-warranty i {
  font-size: 14px;
}

/* CTA */
.hp-prod-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(90deg, #1a1508 0%, #2e2310 100%);
  color: var(--gold);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(214, 175, 69, 0.28);
  transition: background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
  margin-top: auto;
}

.hp-prod-cta:hover {
  background: linear-gradient(90deg, #D6AF45 0%, #E8C85A 100%);
  color: #1a1508;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(214, 175, 69, 0.28);
}

.hp-prod-arrow {
  font-size: 14px;
  margin-left: auto;
  transition: transform 0.2s;
}

.hp-prod-cta:hover .hp-prod-arrow {
  transform: translateX(3px);
}

/* ---- Prev / Next arrow buttons ---- */
.hp-prod-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid var(--gold-border);
  color: #1a1508;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.10);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  padding: 0;
}

.hp-prod-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1508;
}

.hp-prod-prev {
  left: -16px;
}

.hp-prod-next {
  right: -16px;
}

/* ---- Dots ---- */
.hp-prod-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.hp-prod-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(214, 175, 69, 0.25);
  border: 1.5px solid rgba(214, 175, 69, 0.40);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s, width 0.25s;
}

.hp-prod-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  width: 24px;
  border-radius: 4px;
  transform: none;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .hp-prod-card {
    flex: 0 0 260px;
    width: 260px;
  }
}

@media (max-width: 768px) {
  .hp-prod-inner {
    padding: 0 20px;
  }

  .hp-prod-card {
    flex: 0 0 240px;
    width: 240px;
  }

  .hp-prod-btn {
    display: none;
  }

  .hp-prod-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .hp-prod-section {
    padding: 52px 0 60px;
  }

  .hp-prod-inner {
    padding: 0 16px;
  }

  .hp-prod-card {
    flex: 0 0 100%;
    width: 100%;
  }

  .hp-prod-kw {
    font-size: 26px;
  }

  .hp-prod-price {
    font-size: 18px;
  }
}

/* ============================================================
   END HOME PAGE PRODUCTS HIGHLIGHT
   ============================================================ */