/* ─────────────────────────────────────────
   ROOT VARIABLES — SRE CONSTRO Brand Theme
───────────────────────────────────────── */
:root {
  /* ─── Brand Colors ─── */
  --color-primary:        #1a7a7a;   /* Teal — main brand color */
  --color-primary-dark:   #145f5f;   /* Darker teal — hover states */
  --color-primary-light:  #e8f5f5;   /* Light teal — backgrounds/pills */
  --color-accent:         #ffcf23;   /* Yellow/Gold — highlight color */
  --color-accent-dark:    #fcc706;   /* Darker gold — hover on accent */
  --color-accent-light:   #fef9e7;   /* Light yellow — subtle bg */

  /* ─── Neutral Colors ─── */
  --color-white:          #ffffff;
  --color-bg:             #f7fafa;   /* Very light teal tint bg */
  --color-text:           #1a2e2e;   /* Deep dark teal for text */
  --color-text-muted:     #6b8f8f;   /* Muted teal-grey */
  --color-border:         #d4e8e8;   /* Light teal border */

  /* ─── Shadows ─── */
  --shadow-nav:     0 2px 14px rgba(26, 122, 122, 0.1);
  --shadow-btn:     0 4px 12px rgba(26, 122, 122, 0.35);
  --shadow-btn-mob: 0 4px 12px rgba(26, 122, 122, 0.25);
  --shadow-card:    0 8px 32px rgba(26, 122, 122, 0.1);

  /* ─── Font ─── */
  --font-family:     'Poppins', sans-serif;
  --font-xs:         0.62rem;
  --font-sm:         0.85rem;
  --font-base:       0.88rem;
  --font-md:         0.92rem;
  --font-lg:         1rem;
  --font-xl:         1.3rem;
  --font-2xl:        2rem;

  /* ─── Font Weights ─── */
  --fw-regular:   400;
  --fw-medium:    500;
  --fw-semibold:  600;
  --fw-bold:      700;
  --fw-extrabold: 800;

  /* ─── Spacing ─── */
  --spacing-xs:  4px;
  --spacing-sm:  8px;
  --spacing-md:  16px;
  --spacing-lg:  24px;
  --spacing-xl:  36px;

  /* ─── Border Radius ─── */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* ─── Transitions ─── */
  --transition-fast:   0.2s ease;
  --transition-normal: 0.3s ease;
}

/* ─── RESET ─── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ─── GLOBAL LINK RESET ─── */
a {
  text-decoration: none;
}

body {
  font-family: var(--font-family);
  color: var(--color-text);
}
/* ─────────────────────────────────────────
   NAVBAR
───────────────────────────────────────── */
nav {
  background: var(--color-white);
  box-shadow: var(--shadow-nav);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 14px var(--spacing-lg);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* ─── LOGO ─── */
.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}

.logo-brand {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.logo-sre {
  font-size: var(--font-2xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-primary);        /* teal */
  letter-spacing: 1px;
  line-height: 1;
}

.logo-groups {
  font-size: var(--font-xl);
  font-weight: var(--fw-semibold);
  color: var(--color-text);           /* dark teal */
  letter-spacing: 1px;
  line-height: 1;
}

.logo-sub {
  font-size: var(--font-xs);
  color: var(--color-text-muted);     /* muted teal-grey */
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: var(--fw-medium);
  margin-top: 1px;
}

/* ─── NAV LINKS (Center) ─── */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
  justify-content: center;
}

.nav-links .nav-link {
  color: var(--color-text);
  font-size: var(--font-base);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.3px;
  transition: color var(--transition-fast);
}

/* Hover — teal color */
.nav-links .nav-link:hover {
  color: var(--color-primary);        /* teal */
}

/* Active — accent gold dot indicator */
.nav-links .nav-link.active {
  color: var(--color-primary);        /* teal */
}

/* ─── NAV RIGHT ─── */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--spacing-md);
}

/* ─── CTA BUTTON (Desktop) ─── */
.cta-btn {
  background: var(--color-accent);    /* gold button */
  color: var(--color-text);           /* dark teal text on gold */
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-size: var(--font-sm);
  font-weight: var(--fw-bold);
  font-family: var(--font-family);
  transition: background var(--transition-fast), transform 0.15s ease;
  box-shadow: 0 4px 12px rgba(245, 197, 24, 0.4);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  background: var(--color-accent-dark);  /* darker gold on hover */
  color: var(--color-text);
  transform: translateY(-2px);
}

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--color-primary);   /* teal bars */
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none;
  background: var(--color-white);
  border-top: 2px solid var(--color-accent);   /* gold top border */
  padding: var(--spacing-md) var(--spacing-lg) 20px;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.mobile-menu ul .nav-link {
  color: var(--color-text);
  font-size: var(--font-md);
  font-weight: var(--fw-semibold);
  transition: color var(--transition-fast);
}

.mobile-menu ul .nav-link:hover,
.mobile-menu ul .nav-link.active {
  color: var(--color-primary);        /* teal on hover/active */
}

/* ─── CTA BUTTON (Mobile) ─── */
.cta-btn-mobile {
  display: block;
  text-align: center;
  background: var(--color-accent);    /* gold button */
  color: var(--color-text);           /* dark text */
  padding: 11px 0;
  border-radius: var(--radius-md);
  font-size: var(--font-base);
  font-weight: var(--fw-bold);
  transition: background var(--transition-fast);
  box-shadow: 0 4px 12px rgba(245, 197, 24, 0.35);
}

.cta-btn-mobile:hover {
  background: var(--color-accent-dark);
  color: var(--color-text);
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-container {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .cta-btn {
    display: none;
  }
}
/* ─────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('../images/home-hero.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px var(--spacing-lg);
}

/* ─── OVERLAY — teal dark gradient ─── */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 40, 40, 0.88) 0%,
    rgba(26, 122, 122, 0.65) 100%
  );
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* ─── LEFT CONTENT ─── */
.hero-tag {
  display: inline-block;
  background: rgba(245, 197, 24, 0.15);
  color: var(--color-accent);
  font-size: var(--font-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(245, 197, 24, 0.35);
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: 3rem;
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 20px;
}

/* Highlight word in gold */
.hero-title-highlight {
  color: var(--color-accent);
}

.hero-desc {
  font-size: var(--font-md);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

/* ─── BUTTONS ─── */
.hero-btns {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

/* Primary — gold button */
.btn-primary {
  background: var(--color-accent);
  color: var(--color-text);
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-size: var(--font-sm);
  font-weight: var(--fw-bold);
  font-family: var(--font-family);
  box-shadow: 0 4px 14px rgba(245, 197, 24, 0.45);
  transition: background var(--transition-fast), transform 0.15s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  color: var(--color-text);
  transform: translateY(-2px);
}

/* Outline — white bordered */
.btn-outline {
  background: transparent;
  color: var(--color-white);
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-size: var(--font-sm);
  font-weight: var(--fw-semibold);
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: background var(--transition-fast), color var(--transition-fast), border var(--transition-fast);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

/* ─── RIGHT SIDE ─── */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

/* ─── STATS GRID ─── */
.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.hero-stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  transition: border var(--transition-fast), background var(--transition-fast);
}

.hero-stat-card:hover {
  background: rgba(245, 197, 24, 0.12);
  border-color: rgba(245, 197, 24, 0.4);
}

/* Stat number in gold */
.stat-number {
  font-size: 2.2rem;
  font-weight: var(--fw-extrabold);
  color: var(--color-accent);
  line-height: 1;
}

.stat-label {
  font-size: var(--font-xs);
  color: rgba(255, 255, 255, 0.72);
  font-weight: var(--fw-medium);
  letter-spacing: 0.5px;
}

/* ─── MATERIAL TAGS ─── */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.material-tag {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-size: var(--font-xs);
  font-weight: var(--fw-semibold);
  padding: 7px 16px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  transition: background var(--transition-fast), border var(--transition-fast), color var(--transition-fast);
}

.material-tag:hover {
  background: rgba(245, 197, 24, 0.2);
  border-color: rgba(245, 197, 24, 0.5);
  color: var(--color-accent);
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px var(--spacing-md);
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  .hero-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* ═══════════════════════════════════════════
   ABOUT HOME SECTION
═══════════════════════════════════════════ */
.about-home {
  background: var(--color-white);
  padding: 100px var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* ═══════════════════════════
   LEFT — IMAGE STACK
═══════════════════════════ */
.about-home-left {
  position: relative;
}

.about-img-stack {
  position: relative;
  height: 480px;
}

/* Main large image */
.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 82%;
  height: 380px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 122, 122, 0.15);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-img-main:hover img {
  transform: scale(1.04);
}

/* Small image — bottom right */
.about-img-small {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 56%;
  height: 220px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 5px solid var(--color-white);
  box-shadow: 0 12px 40px rgba(26, 122, 122, 0.18);
  z-index: 2;
}

.about-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-img-small:hover img {
  transform: scale(1.05);
}

/* ─── EXPERIENCE BADGE ─── */
.about-exp-badge {
  position: absolute;
  top: 40px;
  right: -20px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 3;
  box-shadow: 0 8px 28px rgba(26, 122, 122, 0.35);
  min-width: 90px;
}

.aeb-num {
  font-size: 2rem;
  font-weight: var(--fw-extrabold);
  color: var(--color-accent);
  line-height: 1;
}

.aeb-text {
  font-size: 0.7rem;
  font-weight: var(--fw-semibold);
  color: rgba(255, 255, 255, 0.8);
  margin-top: 5px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════
   RIGHT — CONTENT
═══════════════════════════ */
.about-home-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Label */
.about-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--font-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-primary);
}

.about-label-line {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Title */
.about-title {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: var(--fw-extrabold);
  color: var(--color-text);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

.about-highlight {
  color: var(--color-accent);
  position: relative;
  display: inline-block;
}

.about-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  opacity: 0.35;
}

/* Paragraphs */
.about-para {
  font-size: var(--font-md);
  color: var(--color-text-muted);
  line-height: 1.85;
  margin: 0;
}

/* ─── PILLARS GRID ─── */
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 4px;
}

.about-pillar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  transition: border-color var(--transition-fast),
              box-shadow var(--transition-fast),
              transform var(--transition-fast);
}

.about-pillar:hover {
  border-color: var(--color-accent);
  box-shadow: 0 4px 20px rgba(245, 197, 24, 0.1);
  transform: translateY(-2px);
}

.about-pillar-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: background var(--transition-fast),
              color var(--transition-fast);
}

.about-pillar:hover .about-pillar-icon {
  background: var(--color-accent);
  color: var(--color-text);
}

.about-pillar-icon svg {
  width: 20px;
  height: 20px;
}

.about-pillar h4 {
  font-size: var(--font-sm);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin: 0 0 3px;
  line-height: 1.2;
}

.about-pillar p {
  font-size: var(--font-xs);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ─── CTA ROW ─── */
.about-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Primary button */
.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: var(--font-md);
  font-weight: var(--fw-bold);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--transition-fast),
              box-shadow var(--transition-fast),
              transform var(--transition-fast);
}

.about-cta-btn svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.about-cta-btn:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 6px 20px rgba(26, 122, 122, 0.3);
  transform: translateY(-1px);
}

.about-cta-btn:hover svg {
  transform: translateX(4px);
}

/* Ghost button */
.about-cta-ghost {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
  font-size: var(--font-md);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: border-color var(--transition-fast),
              color var(--transition-fast),
              background var(--transition-fast);
}

.about-cta-ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-dark);
  background: rgba(245, 197, 24, 0.05);
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 968px) {
  .about-home {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 80px var(--spacing-lg);
  }

  .about-img-stack {
    height: 380px;
  }

  .about-img-main {
    height: 300px;
  }

  .about-img-small {
    height: 180px;
  }

  .about-exp-badge {
    right: 12px;
  }
}

@media (max-width: 640px) {
  .about-home {
    padding: 60px var(--spacing-md);
  }

  .about-pillars {
    grid-template-columns: 1fr;
  }

  .about-img-stack {
    height: 300px;
  }

  .about-img-main {
    height: 240px;
    width: 100%;
  }

  .about-img-small {
    display: none;
  }

  .about-exp-badge {
    top: auto;
    bottom: -20px;
    right: 12px;
  }

  .about-title {
    font-size: 1.8rem;
  }
}

/* ─────────────────────────────────────────
   CLIENTS MARQUEE SECTION
───────────────────────────────────────── */
.clients {
  background: var(--color-white);
  padding: 48px 0;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.clients-header {
  text-align: center;
  margin-bottom: 32px;
  padding: 0 var(--spacing-lg);
}

.clients-title {
  font-size: var(--font-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ─── TRACK WRAPPER ─── */
.clients-track-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Fade edges */
.clients-track-wrapper::before,
.clients-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.clients-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--color-white), transparent);
}

.clients-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--color-white), transparent);
}

/* ─── SCROLLING TRACK ─── */
.clients-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

/* Pause on hover */
.clients:hover .clients-track {
  animation-play-state: paused;
}

/* ─── INDIVIDUAL LOGO ─── */
.client-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.client-logo:hover {
  transform: scale(1.1);
}

.client-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ─── KEYFRAME ─── */
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ═══════════════════════════════════════════
   TICKER
═══════════════════════════════════════════ */
.why-ticker {
  width: 100%;
  background: var(--color-accent);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 2;
}

.why-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
}

.why-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
  padding: 0 28px;
}

.why-ticker-star {
  font-style: normal;
  font-size: 0.65rem;
  color: var(--color-primary);
  opacity: 0.6;
}

/* ═══════════════════════════════════════════
   WHY US — SECTION WRAPPER
═══════════════════════════════════════════ */
.why-us {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px var(--spacing-lg);
  overflow: hidden;
  background-color: white;   /* your change — kept */
}

/* ─── BG IMAGE — top 50% only ─── */
.why-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;           /* your change — kept */
  z-index: 0;
}

.why-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.why-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 22, 22, 0.78);
}

/* ═══════════════════════════
   DARK FLOATING CARD — TEAL THEME
═══════════════════════════ */
.why-card {
  position: relative;
  z-index: 2;
  background: var(--color-primary);   /* ← teal */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 48px 48px 40px;
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  overflow: hidden;   /* clip decorative circles inside */
}

/* ─── DECORATIVE CIRCLES ─── */
.why-card::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  pointer-events: none;
  z-index: 0;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(245, 197, 24, 0.06);
  border: 1px solid rgba(245, 197, 24, 0.1);
  pointer-events: none;
  z-index: 0;
}

/* Extra circle — mid right */
.why-card-circle {
  position: absolute;
  bottom: 40px;
  right: 80px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
  z-index: 0;
}

/* Make all children sit above circles */
.why-card-header,
.why-tabs,
.why-panels {
  position: relative;
  z-index: 1;
}

/* ─── CARD HEADER ─── */
.why-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.why-card-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--font-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.why-label-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.why-card-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0;
}

.why-highlight {
  color: var(--color-accent);
}

.why-card-desc {
  font-size: var(--font-md);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  max-width: 560px;
  margin: 0;
}

/* ─── TABS ─── */
.why-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.why-tab {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font-sm);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.why-tab--active {
  background: var(--color-accent);
  color: var(--color-text);
  border-color: var(--color-accent);
  font-weight: var(--fw-bold);
}

.why-tab:hover:not(.why-tab--active) {
  border-color: rgba(245, 197, 24, 0.45);
  color: var(--color-accent);
}

/* ─── PANELS ─── */
.why-panels {
  width: 100%;
}

.why-panel {
  display: none;
}

.why-panel--active {
  display: block;
}

/* ─── PANEL INNER ─── */
.why-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Panel Image */
.why-panel-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 280px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.why-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.why-panel-img:hover img {
  transform: scale(1.04);
}

/* Panel Content */
.why-panel-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-panel-title {
  font-size: 1.25rem;
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
  margin: 0;
  line-height: 1.3;
}

.why-panel-text {
  font-size: var(--font-sm);
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  margin: 0;
}

/* ─── CHECKLIST ─── */
.why-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}

.why-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font-sm);
  font-weight: var(--fw-semibold);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
}

.why-checklist li svg {
  width: 15px;
  height: 15px;
  min-width: 15px;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 968px) {
  .why-card {
    padding: 36px 28px;
  }

  .why-panel-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-panel-img {
    height: 220px;
  }

  .why-bg-img {
    height: 40%;
  }
}

@media (max-width: 640px) {
  .why-us {
    padding: 40px var(--spacing-md);
  }

  .why-card {
    padding: 28px 20px;
    gap: 20px;
    border-radius: var(--radius-lg);
  }

  .why-checklist {
    grid-template-columns: 1fr;
  }

  .why-tab {
    padding: 8px 16px;
    font-size: 12px;
  }

  .why-bg-img {
    height: 30%;
  }
}

/* ─────────────────────────────────────────
   MATERIALS SECTION
───────────────────────────────────────── */
.materials {
  background: var(--color-bg);
  padding: 100px var(--spacing-lg);
}

.materials-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── SECTION HEADER ─── */
.materials-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  margin-bottom: 56px;
}

.materials-header .section-tag {
  display: inline-block;
  background: var(--color-primary-light);   /* light teal */
  color: var(--color-primary);              /* teal */
  font-size: var(--font-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
}

.materials-header .section-title {
  font-size: 2.4rem;
  font-weight: var(--fw-extrabold);
  color: var(--color-text);                 /* dark teal */
  line-height: 1.2;
}

/* Highlight word — gold */
.materials-header .section-title .highlight {
  color: var(--color-accent);               /* gold */
}

/* Decorative bar — gold */
.materials-header .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-accent);          /* gold bar */
  border-radius: 4px;
  margin: 12px auto 0;
}

.materials-header .section-desc {
  font-size: var(--font-md);
  color: var(--color-text-muted);           /* muted teal-grey */
  max-width: 460px;
  line-height: 1.8;
}

/* ─── GRID ─── */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

/* ─── CARD ─── */
.material-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);    /* teal border */
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.material-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(26, 122, 122, 0.15);  /* teal shadow */
}

/* ─── IMAGE ─── */
.material-img {
  position: relative;
  height: 220px;
  flex-shrink: 0;
  overflow: hidden;
}

.material-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-normal);
}

.material-card:hover .material-img img {
  transform: scale(1.07);
}

/* ─── HOVER OVERLAY — teal ─── */
.material-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 122, 122, 0.92);    /* teal overlay */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition-normal);
  text-align: center;
}

.material-card:hover .material-hover-overlay {
  opacity: 1;
}

.material-hover-overlay p {
  color: var(--color-white);
  font-size: var(--font-base);
  line-height: 1.7;
}

/* Learn More — gold button on overlay */
.material-link {
  color: var(--color-text);                 /* dark teal text */
  background: var(--color-accent);          /* gold bg */
  font-size: var(--font-sm);
  font-weight: var(--fw-bold);
  border: 2px solid var(--color-accent);
  padding: 7px 18px;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), color var(--transition-fast), border var(--transition-fast);
}

.material-link:hover {
  background: var(--color-white);
  color: var(--color-primary);              /* teal text */
  border-color: var(--color-white);
}

/* ─── CARD INFO ─── */
.material-info {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--color-border);
  margin-top: auto;
}

/* Outlined number — teal stroke */
.material-num {
  font-size: 1.6rem;
  font-weight: var(--fw-extrabold);
  color: transparent;
  -webkit-text-stroke: 1.5px var(--color-primary);   /* teal outline */
  line-height: 1;
  letter-spacing: -1px;
  flex-shrink: 0;
}

.material-name {
  font-size: var(--font-lg);
  font-weight: var(--fw-extrabold);
  color: var(--color-text);                 /* dark teal */
  line-height: 1.1;
}

.material-full {
  font-size: var(--font-xs);
  color: var(--color-text-muted);           /* muted teal-grey */
  font-weight: var(--fw-medium);
  margin-top: 2px;
  letter-spacing: 0.3px;
}

/* ─── BOTTOM CTA ─── */
.materials-cta {
  display: flex;
  justify-content: center;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 968px) {
  .materials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .materials-header .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 560px) {
  .materials-grid {
    grid-template-columns: 1fr;
  }

  .materials {
    padding: 60px var(--spacing-md);
  }

  .materials-header .section-title {
    font-size: 1.7rem;
  }
}


/* ─────────────────────────────────────────
   HOW IT WORKS SECTION
───────────────────────────────────────── */
.how-it-works {
  background: var(--color-white);
  padding: 100px var(--spacing-lg);
}

.hiw-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── HEADER ─── */
.hiw-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  margin-bottom: 64px;
}

.hiw-header .section-tag {
  display: inline-block;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: var(--font-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
}

.hiw-header .section-title {
  font-size: 2.4rem;
  font-weight: var(--fw-extrabold);
  color: var(--color-text);
  line-height: 1.2;
}

.hiw-header .section-title .highlight {
  color: var(--color-accent);
}

.hiw-header .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 4px;
  margin: 12px auto 0;
}

.hiw-header .section-desc {
  font-size: var(--font-md);
  color: var(--color-text-muted);
  max-width: 460px;
  line-height: 1.8;
}

/* ─── BODY GRID ─── */
.hiw-body {
  display: grid;
  grid-template-columns: 1fr 320px 1fr;
  align-items: center;
  gap: 48px;
}

/* ─── FEATURE ITEM ─── */
.hiw-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 36px;
}

.hiw-feature:last-child {
  margin-bottom: 0;
}

/* Left side — text right, icon right */
.right-align {
  flex-direction: row-reverse;
  text-align: right;
}

/* Right side — icon left, text left */
.left-align {
  flex-direction: row;
  text-align: left;
}

/* ─── ICON BOX ─── */
.hiw-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-dark);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.hiw-feature:hover .hiw-icon {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.hiw-icon svg {
  width: 24px;
  height: 24px;
}

/* ─── TEXT ─── */
.hiw-text h4 {
  font-size: var(--font-md);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin-bottom: 6px;
}

.hiw-text p {
  font-size: var(--font-base);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   CENTER IMAGE COLLAGE
───────────────────────────────────────── */
.hiw-center {
  display: flex;
  justify-content: center;
}

.hiw-collage {
  position: relative;
  width: 300px;
}

/* Single Main Image */
.hiw-main-img {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
 
}

.hiw-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── GOLD BADGE ─── */
.hiw-badge {
  position: absolute;
  top: 20px;
  right: -20px;
  background: var(--color-accent);
  color: var(--color-text);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.45);
  z-index: 3;
}

.hiw-badge-num {
  font-size: 1.6rem;
  font-weight: var(--fw-extrabold);
  line-height: 1;
  color: var(--color-text);
}

.hiw-badge-text {
  font-size: var(--font-xs);
  font-weight: var(--fw-semibold);
  white-space: nowrap;
  color: var(--color-text);
  opacity: 0.85;
  margin-top: 3px;
}

/* ─── BOTTOM PILL ─── */
.hiw-pill {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 40px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(26, 122, 122, 0.12);
  z-index: 3;
  white-space: nowrap;
}

.hiw-pill svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.hiw-pill-title {
  display: block;
  font-size: var(--font-sm);
  font-weight: var(--fw-bold);
  color: var(--color-text);
}

.hiw-pill-sub {
  display: block;
  font-size: var(--font-xs);
  color: var(--color-text-muted);
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hiw-body {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hiw-center {
    order: -1;
  }

  .right-align {
    flex-direction: row;
    text-align: left;
  }

  .hiw-collage {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .how-it-works {
    padding: 60px var(--spacing-md);
  }

  .hiw-main-img {
    height: 320px;
  }

  .hiw-header .section-title {
    font-size: 1.8rem;
  }
}


/* ─────────────────────────────────────────
   CTA BANNER SECTION
───────────────────────────────────────── */
.cta-banner {
  position: relative;
  background-image: url('../images/truck-1.png');

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 110px var(--spacing-lg);
  overflow: hidden;
}

/* Teal dark overlay */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8, 30, 30, 0.93) 0%,
    rgba(26, 122, 122, 0.80) 100%
  );
  z-index: 0;
}

/* ─── CONTAINER — centered ─── */
.cta-container {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

/* ─── TAG ─── */
.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 197, 24, 0.15);
  color: var(--color-accent);
  font-size: var(--font-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 30px;
  border: 1px solid rgba(245, 197, 24, 0.4);
}

.cta-tag svg {
  width: 14px;
  height: 14px;
  color: var(--color-accent);
}

/* ─── TITLE ─── */
.cta-title {
  font-size: 3rem;
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
  line-height: 1.2;
}

.cta-highlight {
  color: var(--color-accent);
}

/* ─── DESC ─── */
.cta-desc {
  font-size: var(--font-md);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  max-width: 620px;
}

/* ─── STATS BAR ─── */
.cta-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  gap: 40px;
  width: 100%;
  flex-wrap: wrap;
}

.cta-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cta-stat-num {
  font-size: 2rem;
  font-weight: var(--fw-extrabold);
  color: var(--color-accent);           /* gold numbers */
  line-height: 1;
}

.cta-stat-label {
  font-size: var(--font-xs);
  color: rgba(255, 255, 255, 0.7);
  font-weight: var(--fw-medium);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.cta-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* ─── BUTTONS ─── */
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Gold — primary */
.cta-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-accent);
  color: var(--color-text);
  padding: 13px 26px;
  border-radius: var(--radius-md);
  font-size: var(--font-sm);
  font-weight: var(--fw-bold);
  font-family: var(--font-family);
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.45);
  transition: background var(--transition-fast), transform 0.15s ease;
  white-space: nowrap;
}

.cta-btn-gold svg {
  width: 18px;
  height: 18px;
}

.cta-btn-gold:hover {
  background: var(--color-accent-dark);
  color: var(--color-text);
  transform: translateY(-2px);
}

/* Teal outline — secondary */
.cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 122, 122, 0.35);
  color: var(--color-white);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: var(--font-sm);
  font-weight: var(--fw-semibold);
  border: 2px solid rgba(26, 122, 122, 0.7);
  transition: background var(--transition-fast), border var(--transition-fast);
  white-space: nowrap;
}

.cta-btn-outline svg {
  width: 18px;
  height: 18px;
}

.cta-btn-outline:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

/* Ghost — tertiary */
.cta-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: var(--font-sm);
  font-weight: var(--fw-semibold);
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.cta-btn-ghost svg {
  width: 18px;
  height: 18px;
}

.cta-btn-ghost:hover {
  color: var(--color-white);
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 768px) {
  .cta-title {
    font-size: 2.2rem;
  }

  .cta-stats {
    gap: 24px;
    padding: 20px 24px;
  }

  .cta-stat-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .cta-banner {
    padding: 70px var(--spacing-md);
    background-attachment: scroll;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-btn-gold,
  .cta-btn-outline,
  .cta-btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .cta-stats {
    gap: 20px;
  }
}
/* ═══════════════════════════════════════════
   TESTIMONIALS SECTION
═══════════════════════════════════════════ */
.testimonials {
  background: var(--color-primary);
  padding: 80px var(--spacing-lg) 0;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -140px;
  right: -140px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
  z-index: 0;
}

/* ═══════════════════════════
   TOP ROW
═══════════════════════════ */
.testi-top {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
}

.testi-top-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 560px;
}

.testi-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--font-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.testi-label-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

.testi-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

.testi-highlight {
  color: var(--color-accent);
}

.testi-desc {
  font-size: var(--font-md);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin: 0;
}

.testi-big-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.tbs-number {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
  line-height: 1;
  letter-spacing: -2px;
}

.tbs-percent {
  color: var(--color-accent);
  font-size: 0.65em;
}

.tbs-label {
  font-size: var(--font-sm);
  font-weight: var(--fw-semibold);
  color: rgba(255, 255, 255, 0.6);
  text-align: right;
}

/* ═══════════════════════════════════════════
   WHITE PANEL — full width padded container
═══════════════════════════════════════════ */
.testi-white-panel {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px;                     /* ← padding so content floats inside */
  display: grid;
  grid-template-columns: 300px 1fr;  /* image fixed, card fills rest */
  gap: 28px;                         /* ← gap between image and card */
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

/* ─── LEFT IMAGE ─── */
.testi-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 360px;
}

.testi-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.testi-img-wrap:hover img {
  transform: scale(1.04);
}

/* Gradient overlay */
.testi-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 22, 22, 0.05) 0%,
    rgba(6, 22, 22, 0.65) 100%
  );
  pointer-events: none;
  z-index: 1;
  border-radius: var(--radius-lg);
}

/* Floating badge on image */
.testi-img-badge {
  position: absolute;
  bottom: 18px;
  left: 16px;
  right: 16px;
  background: var(--color-accent);
  color: var(--color-text);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.4);
  z-index: 2;
}

.tsb-num {
  font-size: 1.6rem;
  font-weight: var(--fw-extrabold);
  line-height: 1;
  color: var(--color-text);
}

.tsb-text {
  font-size: var(--font-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  opacity: 0.75;
}

/* ─── RIGHT — CARD WRAP ─── */
.testi-card-wrap {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.testi-swiper {
  width: 100%;
  flex: 1;
  overflow: hidden;
}

.testi-swiper .swiper-wrapper {
  align-items: stretch;
}

.testi-swiper .swiper-slide {
  height: auto;
  display: flex;
  box-sizing: border-box;
}

/* ═══════════════════════════
   TESTIMONIAL CARD
═══════════════════════════ */
.testi-card {
  width: 100%;
  background: var(--color-bg);       /* very light grey — subtle diff from white panel */
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  padding: 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

/* Decorative circle */
.testi-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(245, 197, 24, 0.05);
  border: 1px solid rgba(245, 197, 24, 0.08);
  pointer-events: none;
  z-index: 0;
}

/* ─── TOP ROW ─── */
.tc-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.tc-quote-icon {
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  flex-shrink: 0;
}

.tc-quote-icon svg {
  width: 20px;
  height: 20px;
}

.tc-stars {
  font-size: 1rem;
  color: var(--color-accent);
  letter-spacing: 3px;
  line-height: 1;
}

/* ─── CATEGORY ─── */
.tc-category {
  display: inline-block;
  width: fit-content;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: var(--font-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(26, 122, 122, 0.15);
  position: relative;
  z-index: 1;
}

/* ─── TEXT ─── */
.tc-text {
  font-size: var(--font-md);
  color: var(--color-text-muted);
  line-height: 1.85;
  margin: 0;
  flex: 1;
  position: relative;
  z-index: 1;
}

/* ─── AUTHOR ─── */
.tc-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.tc-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-xs);
  font-weight: var(--fw-bold);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26, 122, 122, 0.25);
}

.tc-author-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tc-author-info strong {
  font-size: var(--font-sm);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tc-author-info span {
  font-size: var(--font-xs);
  color: var(--color-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ─── NAV BUTTONS ─── */
.tc-nav-btns {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.testi-prev,
.testi-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast),
              border-color var(--transition-fast),
              transform var(--transition-fast);
  flex-shrink: 0;
}

.testi-prev svg,
.testi-next svg {
  width: 13px;
  height: 13px;
}

.testi-prev:hover,
.testi-next:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: scale(1.08);
}

/* ═══════════════════════════
   LOGO STRIP
═══════════════════════════ */
.testi-logo-strip {
  overflow: hidden;
  margin-top: 40px;
  padding: 24px 0;
  background: rgba(0, 0, 0, 0.15);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
}

.testi-logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logoScroll 22s linear infinite;
}

.testi-logo-track:hover {
  animation-play-state: paused;
}

@keyframes logoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testi-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 44px;
  color: rgba(255, 255, 255, 0.4);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  transition: color var(--transition-fast);
}

.testi-logo-item:hover {
  color: rgba(255, 255, 255, 0.9);
}

.tls-svg {
  height: 34px;
  width: auto;
  display: block;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 968px) {
  .testimonials {
    padding: 80px var(--spacing-md) 0;
  }

  .testi-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 32px;
  }

  .testi-big-stat { align-items: flex-start; }
  .tbs-label { text-align: left; }

  .testi-white-panel {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 20px;
  }

  .testi-img-wrap {
    min-height: 220px;
    height: 220px;
  }
}

@media (max-width: 640px) {
  .testimonials {
    padding: 60px var(--spacing-md) 0;
  }

  .testi-white-panel {
    padding: 16px;
    gap: 16px;
  }

  .testi-card {
    padding: 24px 20px;
  }

  .tc-nav-btns {
    display: none;
  }

  .testi-logo-strip {
    margin-top: 28px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .testi-logo-item {
    padding: 0 28px;
  }
}

@media (max-width: 480px) {
  .testi-img-wrap {
    min-height: 180px;
    height: 180px;
  }

  .testi-card {
    padding: 20px 16px;
    gap: 12px;
  }

  .tc-quote-icon {
    width: 38px;
    height: 38px;
  }
}

/* ─────────────────────────────────────────
   FAQ SECTION
───────────────────────────────────────── */
.faq {
  background: var(--color-white);
  padding: 100px var(--spacing-lg);
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── HEADER ─── */
.faq-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  margin-bottom: 60px;
}

.faq-header .section-tag {
  display: inline-block;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: var(--font-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
}

.faq-header .section-title {
  font-size: 2.4rem;
  font-weight: var(--fw-extrabold);
  color: var(--color-text);
  line-height: 1.2;
}

.faq-header .section-title .highlight {
  color: var(--color-accent);
}

.faq-header .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 4px;
  margin: 12px auto 0;
}

.faq-header .section-desc {
  font-size: var(--font-md);
  color: var(--color-text-muted);
  max-width: 480px;
  line-height: 1.8;
}

/* ─── BODY GRID ─── */
.faq-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

/* ─── COLUMN ─── */
.faq-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ─── ITEM ─── */
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  transition: box-shadow var(--transition-fast);
}

.faq-item.active {
  box-shadow: 0 8px 28px rgba(26, 122, 122, 0.1);
  border-color: var(--color-primary);
}

/* ─── QUESTION BUTTON ─── */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
  text-align: left;
}

.faq-question span {
  font-size: var(--font-md);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  line-height: 1.4;
  transition: color var(--transition-fast);
}

.faq-item.active .faq-question span {
  color: var(--color-primary);
}

/* ─── ICON BOX ─── */
.faq-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--color-accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-dark);
  transition: background var(--transition-fast),
              color var(--transition-fast),
              transform var(--transition-normal);
}

.faq-icon svg {
  width: 16px;
  height: 16px;
}

.faq-item.active .faq-icon {
  background: var(--color-primary);
  color: var(--color-white);
  transform: rotate(45deg);
}

/* ─── ANSWER ─── */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 22px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 22px 20px;
}

.faq-answer p {
  font-size: var(--font-base);
  color: var(--color-text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
}

/* ─── BOTTOM CTA ─── */
.faq-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: 56px;
  flex-wrap: wrap;
}

.faq-cta p {
  font-size: var(--font-md);
  color: var(--color-text-muted);
  font-weight: var(--fw-medium);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--color-accent);
  color: var(--color-text);
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-size: var(--font-sm);
  font-weight: var(--fw-bold);
  font-family: var(--font-family);
  box-shadow: 0 4px 14px rgba(245, 197, 24, 0.35);
  transition: background var(--transition-fast), transform 0.15s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  color: var(--color-text);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 768px) {
  .faq-body {
    grid-template-columns: 1fr;
  }

  .faq-header .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .faq {
    padding: 60px var(--spacing-md);
  }

  .faq-header .section-title {
    font-size: 1.7rem;
  }
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer {
  background: #0d2828;
  position: relative;
  overflow: hidden;
}

/* ─── FOOTER TOP ─── */
.footer-top {
  position: relative;
  padding: 60px 5vw 0;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}

/* ─── TRUCK — absolute bottom left ─── */
.footer-truck {
  position: absolute;
  bottom: 25px;
  left: -90px;
  width: 490px;
  z-index: 2;
  pointer-events: none;
}

.footer-truck img {
  width: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.5));
}

/* ─── FOOTER CONTENT — pushed right of truck ─── */
.footer-content {
  margin-left: 300px;
  width: calc(100% - 300px);
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 36px;
  position: relative;
  z-index: 3;
  padding-bottom: 52px;
}

/* ─── BRAND COL ─── */
.fc-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand-title {
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
  letter-spacing: 0.5px;
  text-decoration: none;
  line-height: 1.2;
  font-family: var(--font-family);
}

.fbrand-sre {
  color: var(--color-accent);           /* gold SRE */
}

.footer-tagline-sub {
  font-size: var(--font-xs);
  color: var(--color-accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: var(--fw-semibold);
  margin-top: -6px;
}

.fc-brand > p:not(.footer-tagline-sub) {
  font-size: var(--font-base);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  max-width: 240px;
}

/* ─── SOCIALS ─── */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  transition: background var(--transition-fast),
              color var(--transition-fast),
              border-color var(--transition-fast);
}

.footer-socials a svg {
  width: 15px;
  height: 15px;
}

.footer-socials a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-text);
}

/* ─── COL TITLE ─── */
.fc-col h4 {
  font-size: var(--font-xs);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-accent);
  width: fit-content;
}

/* ─── QUICK LINKS ─── */
.fql-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fql-list li a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: var(--font-base);
  font-weight: var(--fw-regular);
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast), gap var(--transition-fast);
}

.fql-list li a svg {
  width: 12px;
  height: 12px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.fql-list li a:hover {
  color: var(--color-accent);
  gap: 12px;
}

/* ─── WORKING HOURS ─── */
.foh-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.foh-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 0;
}

.foh-day {
  font-size: var(--font-base);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
}

.foh-time {
  font-size: var(--font-sm);
  color: var(--color-accent);
  font-weight: var(--fw-medium);
}

.foh-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

/* ─── CONTACT INFO ─── */
.fci-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fci-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.fci-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin-top: 1px;
}

.fci-icon svg {
  width: 15px;
  height: 15px;
}

.fci-item a,
.fci-item span {
  font-size: var(--font-sm);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  transition: color var(--transition-fast);
}

.fci-item a:hover {
  color: var(--color-accent);
}

/* ─── FOOTER BOTTOM — centered copyright only ─── */
.footer-bottom {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copy {
  font-size: var(--font-sm);            /* bumped up from font-xs */
  font-weight: var(--fw-medium);        /* slightly bolder */
  color: rgba(255, 255, 255, 0.45);     /* slightly more visible */
  text-align: center;
  margin: 0;
  letter-spacing: 0.3px;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1200px) {
  .footer-content {
    margin-left: 280px;
    width: calc(100% - 280px);
    gap: 28px;
  }

  .footer-truck {
    width: 280px;
  }
}

@media (max-width: 1024px) {
  .footer-content {
    margin-left: 240px;
    width: calc(100% - 240px);
    grid-template-columns: 1fr 1fr;
    gap: 32px 36px;
  }

  .fc-brand {
    grid-column: 1 / -1;
  }

  .footer-truck {
    width: 240px;
  }
}

@media (max-width: 860px) {
  .footer-top {
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 0;
    min-height: unset;
  }

  .footer-truck {
    position: relative;
    width: 60%;
    max-width: 320px;
    bottom: auto;
    left: auto;
    margin: 0 auto;
    padding-top: 40px;
  }

  .footer-content {
    margin-left: 0;
    width: 100%;
    padding: 40px 0 48px;
    grid-template-columns: 1fr 1fr;
    gap: 32px 40px;
  }

  .fc-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .footer-top {
    padding: 40px 5vw 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .fc-brand {
    grid-column: auto;
  }
}


/* ─────────────────────────────────────────
   SCROLL TO TOP BUTTON
───────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  box-shadow: 0 4px 16px rgba(26, 122, 122, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity var(--transition-fast),
              visibility var(--transition-fast),
              transform var(--transition-fast),
              background var(--transition-fast);
}

/* Visible state */
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--color-accent);        /* gold on hover */
  color: var(--color-text);
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.45);
  transform: translateY(-3px);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ─── Progress Ring (optional) ─── */
.scroll-top::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.scroll-top.visible::before {
  opacity: 0.4;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 480px) {
  .scroll-top {
    bottom: 24px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}



/* ═══════════════════════════════════════════
   LOADING SCREEN — SRE Groups
═══════════════════════════════════════════ */

.sre-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.sre-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ─── BACKGROUND WRAP ─── */
.sre-loader__truck-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #205074;
}

/* ─── SMALL TRUCK GIF ─── */
.sre-loader__truck {
  width: 360px;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

/* ─── BOTTOM GRADIENT OVERLAY ─── */
.sre-loader__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(18, 38, 58, 0.98) 0%,
    rgba(18, 38, 58, 0.45) 45%,
    rgba(18, 38, 58, 0.08) 100%
  );
}

/* ─── CONTENT OVER GIF ─── */
.sre-loader__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-bottom: 56px;
  animation: loaderSlideUp 0.6s ease forwards;
}

@keyframes loaderSlideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── LOGO ─── */
.sre-loader__logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.sre-loader__sre {
  font-family: var(--font-family);
  font-size: 3.2rem;
  font-weight: var(--fw-extrabold);
  color: var(--color-accent);
  letter-spacing: 2px;
  line-height: 1;
}

.sre-loader__groups {
  font-family: var(--font-family);
  font-size: 2rem;
  font-weight: var(--fw-semibold);
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1;
}

/* ─── WELCOME TEXT ─── */
.sre-loader__welcome {
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.4px;
  text-align: center;
  margin: 0;
}

.sre-loader__welcome strong {
  color: var(--color-accent);
  font-weight: var(--fw-bold);
}

/* ─── SUBTITLE ─── */
.sre-loader__sub {
  font-family: var(--font-family);
  font-size: 0.65rem;
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin: 0;
}

/* ─── PROGRESS BAR ─── */
.sre-loader__bar-wrap {
  width: 220px;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  overflow: hidden;
  margin-top: 18px;
}

.sre-loader__bar {
  height: 100%;
  width: 0%;
  background: var(--color-accent);
  border-radius: 99px;
  animation: loaderProgress 1.8s ease forwards;
}

@keyframes loaderProgress {
  0%   { width: 0%; }
  50%  { width: 65%; }
  100% { width: 100%; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .sre-loader__truck {
    width: 280px;
  }
}

@media (max-width: 480px) {
  .sre-loader__truck    { width: 200px; }
  .sre-loader__sre      { font-size: 2.4rem; }
  .sre-loader__groups   { font-size: 1.5rem; }
  .sre-loader__welcome  { font-size: 0.9rem; }
  .sre-loader__bar-wrap { width: 170px; }
  .sre-loader__content  { padding-bottom: 36px; }
}
