/* ================================================================
   European Car Center – Main Stylesheet
   style.css  |  v2.0
   Design Philosophy: Premium German automotive heritage meets
   modern Nairobi sophistication. Bold, refined, world-class.
================================================================ */

/* ---------------------------------------------------------------
   CSS VARIABLES
--------------------------------------------------------------- */
:root {
  --blue:        #083a81;
  --blue-dark:   #052a60;
  --blue-mid:    #0d4fa8;
  --blue-light:  #1460c4;
  --yellow:      #ffd503;
  --yellow-dark: #e6bf00;
  --gray-100:    #f8f9fa;
  --gray-200:    #f0f1f3;
  --gray-400:    #ced4da;
  --gray-600:    #6c757d;
  --gray-800:    #343a40;
  --dark:        #0a0c10;
  --darker:      #050608;
  --white:       #ffffff;
  --text-body:   #2d3341;
  --text-muted:  #6c757d;

  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:   'Barlow', 'Helvetica Neue', sans-serif;
  --font-cond:   'Barlow Condensed', sans-serif;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.18);
  --shadow-blue: 0 8px 32px rgba(8,58,129,.3);

  --transition:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;

  --topbar-h: 40px;
  --nav-h:    80px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

::selection { background: var(--yellow); color: var(--blue-dark); }

/* ---------------------------------------------------------------
   TYPOGRAPHY
--------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}

.display-serif {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.02em;
}

.label-cond {
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

/* ---------------------------------------------------------------
   TOP BAR
--------------------------------------------------------------- */
.ecc-topbar {
  background: var(--blue-dark);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.topbar-left a, .topbar-left span,
.topbar-right a {
  color: rgba(255,255,255,.75);
  transition: var(--transition-fast);
}
.topbar-left a:hover { color: var(--yellow); }
.topbar-left i, .topbar-right i { color: var(--yellow); margin-right: 5px; font-size: .75rem; }
.topbar-right a:hover { color: var(--yellow); }

.mpesa-pill {
  background: rgba(255,213,3,.12);
  color: rgba(255,255,255,.85) !important;
  border: 1px solid rgba(255,213,3,.3);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.73rem;
}
.mpesa-pill strong { color: var(--yellow); }

@media (max-width: 767px) {
  .topbar-left span, .topbar-left a:not(:first-child) { display: none; }
  .ecc-topbar { font-size: .72rem; }
}

/* ---------------------------------------------------------------
   NAVBAR
--------------------------------------------------------------- */
.ecc-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(8,58,129,.08);
  transition: var(--transition);
}

.ecc-navbar.scrolled {
  box-shadow: var(--shadow-md);
  height: 68px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 70px;
}

.nav-logo img{
  height: 80%;
  width: auto;
}
.logo-mark {
  width: 44px; height: 44px;
  background: var(--blue);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon { color: var(--yellow); font-size: 1.3rem; }
.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--blue);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.1;
}
.logo-sub {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.2;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links .nav-link {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-body);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition-fast);
}

.nav-links .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.nav-links .nav-link:hover,
.nav-links .nav-link.active {
  color: var(--blue);
}
.nav-links .nav-link:hover::after,
.nav-links .nav-link.active::after {
  transform: scaleX(1);
}

/* Dropdown */
.has-dropdown { position: relative; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid rgba(8,58,129,.1);
  border-radius: var(--radius-md);
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 200;
  padding: 8px 0;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  background: var(--white);
  border-left: 1px solid rgba(8,58,129,.1);
  border-top: 1px solid rgba(8,58,129,.1);
  transform: translateX(-50%) rotate(45deg);
}

.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--text-body);
  transition: var(--transition-fast);
}
.nav-dropdown a i { color: var(--blue); width: 16px; font-size: .8rem; }
.nav-dropdown a:hover { background: var(--gray-100); color: var(--blue); }

/* Nav CTA */
.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-burger {
  width: 40px; height: 40px;
  background: none; border: none;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--blue);
  transition: var(--transition-fast);
}

@media (max-width: 991px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* ---------------------------------------------------------------
   MOBILE MENU
--------------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(380px, 92vw);
  height: 100vh;
  background: var(--blue-dark);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 70px 32px 32px;
}

.mobile-menu.open { transform: translateX(0); }

.mobile-close {
  position: absolute;
  top: 20px; right: 24px;
  background: rgba(255,255,255,.1);
  border: none;
  color: white;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu ul li a {
  display: block;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: var(--transition-fast);
}
.mobile-menu ul li a:hover { color: var(--yellow); padding-left: 8px; }

.mobile-menu-footer { margin-top: 32px; }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-overlay.active { opacity: 1; pointer-events: all; }

/* ---------------------------------------------------------------
   BUTTONS
--------------------------------------------------------------- */
.btn-ecc-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white) !important;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--blue);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-ecc-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--yellow);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: 0;
}
.btn-ecc-primary:hover::before { transform: translateX(0); }
.btn-ecc-primary:hover { color: var(--blue-dark) !important; border-color: var(--yellow); }
.btn-ecc-primary > * { position: relative; z-index: 1; }

.btn-ecc-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--blue) !important;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 11px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--blue);
  cursor: pointer;
  transition: var(--transition);
}
.btn-ecc-outline:hover { background: var(--blue); color: var(--white) !important; }

.btn-ecc-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white) !important;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 11px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,.5);
  cursor: pointer;
  transition: var(--transition);
}
.btn-ecc-outline-white:hover { background: white; color: var(--blue) !important; border-color: white; }

.btn-ecc-yellow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--blue-dark) !important;
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--yellow);
  cursor: pointer;
  transition: var(--transition);
}
.btn-ecc-yellow:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); }

.btn-ecc-ghost {
  background: none;
  border: 1px solid var(--gray-400);
  color: var(--text-muted);
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
}
.btn-ecc-ghost:hover { background: var(--gray-100); color: var(--text-body); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white !important;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.btn-whatsapp:hover { background: #20ba58; }

/* ---------------------------------------------------------------
   SECTION HELPERS
--------------------------------------------------------------- */
.section-label {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--yellow);
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--dark);
}

.section-title em {
  font-style: italic;
  color: var(--blue);
}

.section-divider {
  width: 60px; height: 3px;
  background: var(--yellow);
  margin: 20px 0;
}
.section-divider.center { margin-left: auto; margin-right: auto; }

/* ---------------------------------------------------------------
   HERO / SWIPER
--------------------------------------------------------------- */
.hero-swiper {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.swiper-slide-active .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5,42,96,.88) 0%,
    rgba(8,58,129,.65) 40%,
    rgba(0,0,0,.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 60px;
}

.hero-eyebrow {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--yellow);
  display: inline-block;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--yellow);
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,.82);
  max-width: 540px;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Nav */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  color: white;
  transition: var(--transition-fast);
}
.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
  background: var(--yellow);
  color: var(--blue-dark);
  border-color: var(--yellow);
}
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after { font-size: .9rem; font-weight: 900; }

.hero-swiper .swiper-pagination-bullet {
  background: rgba(255,255,255,.4);
  opacity: 1;
}
.hero-swiper .swiper-pagination-bullet-active {
  background: var(--yellow);
  width: 28px;
  border-radius: 4px;
}

/* Hero scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 20;
  color: rgba(255,255,255,.6);
  font-family: var(--font-cond);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px;
  position: relative;
}
.scroll-mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 8px;
  background: var(--yellow);
  border-radius: 2px;
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 0.3; }
}

/* ---------------------------------------------------------------
   STATS STRIP
--------------------------------------------------------------- */
.stats-strip {
  background: var(--blue);
  padding: 0;
}

.stats-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
  position: relative;
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-cond);
  font-size: 1.2rem;
  color: var(--yellow);
}
.stat-label {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-top: 6px;
}

@media (max-width: 575px) {
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.1); }
}

/* ---------------------------------------------------------------
   ABOUT PREVIEW (Home)
--------------------------------------------------------------- */
.about-preview {
  padding: 100px 0;
  overflow: hidden;
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid white;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }

.about-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--yellow);
  color: var(--blue-dark);
  font-family: var(--font-cond);
  font-weight: 800;
  text-align: center;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.about-badge-num {
  font-size: 2.2rem;
  line-height: 1;
  display: block;
}
.about-badge-text {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
}

.about-content { padding-left: 3rem; }

.about-features { margin-top: 28px; }
.about-feature-row {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
}
.about-feature-row:last-child { border-bottom: none; }
.af-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: rgba(8,58,129,.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1rem;
}
.af-title {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 3px;
}
.af-text {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .about-content { padding-left: 0; margin-top: 60px; }
  .about-img-accent { right: 0; }
}

/* ---------------------------------------------------------------
   SERVICES GRID
--------------------------------------------------------------- */
.services-section {
  padding: 100px 0;
  background: var(--gray-100);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(8,58,129,.1);
}

.service-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }

.service-card-icon {
  position: absolute;
  bottom: -20px;
  left: 24px;
  width: 48px; height: 48px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 1.1rem;
  box-shadow: var(--shadow-blue);
  z-index: 2;
}

.service-card-body {
  padding: 36px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 20px;
  transition: var(--transition-fast);
}
.service-card-link i { transition: transform 0.2s ease; }
.service-card:hover .service-card-link i { transform: translateX(4px); }
.service-card-link:hover { color: var(--blue-mid); }

/* ---------------------------------------------------------------
   PARALLAX CTA BAND
--------------------------------------------------------------- */
.parallax-cta {
  position: relative;
  background-image: url('../../assets/images/new/sunset.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  text-align: center;
}

.parallax-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,42,96,.92) 0%, rgba(8,58,129,.80) 100%);
}

.parallax-cta .container { position: relative; z-index: 2; }

.parallax-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.parallax-cta h2 em { font-style: italic; color: var(--yellow); }

.parallax-cta p {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

/* ---------------------------------------------------------------
   TESTIMONIALS
--------------------------------------------------------------- */
.testimonials-section {
  padding: 100px 0;
  background: var(--white);
}

.testimonial-card {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  position: relative;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
}
.testimonial-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-color: rgba(8,58,129,.12);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--yellow);
  margin-bottom: 16px;
  display: block;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--gray-200);
  padding-top: 20px;
}
.author-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark);
}
.author-car { font-size: 0.8rem; color: var(--text-muted); }
.star-row { color: var(--yellow); font-size: 0.8rem; margin-top: 4px; }

/* ---------------------------------------------------------------
   BRANDS MARQUEE
--------------------------------------------------------------- */
.brands-section {
  padding: 60px 0;
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}

.brands-label {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 32px;
}

.brands-track {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.brands-track:hover { animation-play-state: paused; }

.brand-item {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  white-space: nowrap;
  transition: color 0.2s ease;
}
.brand-item:hover { color: var(--blue); }

/* ---------------------------------------------------------------
   PAGE HERO BANNER
--------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,213,3,.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,213,3,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,213,3,.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

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

.page-hero-eyebrow {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.page-hero-eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--yellow);
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero-desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.breadcrumb-ecc {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.breadcrumb-ecc a { color: rgba(255,255,255,.6); }
.breadcrumb-ecc a:hover { color: var(--yellow); }
.breadcrumb-ecc .sep { color: rgba(255,255,255,.3); font-size: .6rem; }
.breadcrumb-ecc .current { color: var(--yellow); }

/* ---------------------------------------------------------------
   CONTACT PAGE
--------------------------------------------------------------- */
.contact-section { padding: 100px 0; }

.contact-info-card {
  background: var(--blue);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  color: white;
  height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
  align-items: flex-start;
}
.ci-icon {
  width: 46px; height: 46px;
  min-width: 46px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--yellow);
  margin-top: 2px;
}
.ci-label {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 4px;
}
.ci-value {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,.9);
  line-height: 1.6;
}
.ci-value a { color: rgba(255,255,255,.9); }
.ci-value a:hover { color: var(--yellow); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

/* ---------------------------------------------------------------
   FORM ELEMENTS
--------------------------------------------------------------- */
.form-label-ecc {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 8px;
  display: block;
}

.opt-label {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted);
  font-size: 0.72rem;
}

.req-star { color: #e53e3e; }

.form-control-ecc {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-body);
  background: var(--gray-100);
  transition: var(--transition-fast);
  outline: none;
}
.form-control-ecc::placeholder { color: var(--text-muted); }
.form-control-ecc:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(8,58,129,.08);
}

textarea.form-control-ecc { resize: vertical; min-height: 130px; }

.file-drop-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px dashed var(--gray-400);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  background: var(--gray-100);
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}
.file-drop-zone i { font-size: 1.8rem; color: var(--blue); }
.file-drop-zone:hover { border-color: var(--blue); background: rgba(8,58,129,.04); }
.file-drop-zone.dragover { border-color: var(--yellow); background: rgba(255,213,3,.06); }

.modal-action-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

/* ---------------------------------------------------------------
   MODAL
--------------------------------------------------------------- */
.ecc-modal .modal-content {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.25);
}

.ecc-modal-header {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
}

.modal-title-block {
  display: flex;
  align-items: center;
  gap: 18px;
}

.modal-icon {
  font-size: 1.6rem;
  color: var(--yellow);
}

.modal-title-block h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.modal-title-block p {
  font-size: 0.83rem;
  color: rgba(255,255,255,.65);
  margin: 4px 0 0;
}

.btn-close-custom {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: white;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}
.btn-close-custom:hover { background: rgba(255,255,255,.25); }

.ecc-modal-body { padding: 36px; }

.modal-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon {
  font-size: 4rem;
  color: #22c55e;
  margin-bottom: 20px;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes popIn {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.modal-success h4 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 12px;
}
.modal-success p { color: var(--text-muted); line-height: 1.75; }

/* ---------------------------------------------------------------
   FAB
--------------------------------------------------------------- */
.fab-container {
  position: fixed;
  right: 24px;
  bottom: 80px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.fabs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 20px;
  cursor: pointer;
  box-shadow: var(--shadow-blue);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.fabs:hover { transform: translateX(-4px); background: var(--blue-mid); }

.fab-call { background: var(--blue-dark); }
.fab-call:hover { background: var(--blue); }

.fab-service { background: var(--blue); }

.fab-spare {
  background: var(--yellow);
  color: var(--blue-dark) !important;
}
.fab-spare:hover { background: var(--yellow-dark); }

.fabs i { font-size: 0.95rem; }
.fabs .fab-label { /* visible on desktop */ }

/* Mobile FAB bar */
.fab-mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  box-shadow: 0 -4px 20px rgba(0,0,0,.15);
}

.fab-mob-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.fab-mob-call {
  background: var(--blue-dark);
  color: white;
}
.fab-mob-service {
  background: var(--blue);
  color: white;
}
.fab-mob-spare {
  background: var(--yellow);
  color: var(--blue-dark);
}

/* Safe area for iOS */
.fab-mobile-bar { padding-bottom: env(safe-area-inset-bottom); }

/* Offset page content for mobile bar */
@media (max-width: 767px) {
  body { padding-bottom: 56px; }
  .fab-container { bottom: 76px; }
  .fabs:not(.fab-mobile-bar .fab-mob-btn) { display: none !important; }
}

/* ---------------------------------------------------------------
   BACK TO TOP
--------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 92px;
  left: 24px;
  z-index: 800;
  width: 44px; height: 44px;
  background: var(--white);
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--blue); color: var(--white); }

/* ---------------------------------------------------------------
   FOOTER
--------------------------------------------------------------- */
.ecc-footer { background: var(--dark); color: rgba(255,255,255,.75); }

.footer-cta-bar {
  background: var(--blue);
  padding: 50px 0;
  border-bottom: 2px solid rgba(255,213,3,.3);
}
.footer-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--white);
  margin: 0 0 6px;
}
.footer-cta-sub {
  color: rgba(255,255,255,.65);
  font-size: 0.9rem;
  margin: 0;
}

.footer-body { padding: 70px 0 50px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.footer-logo-icon {
  width: 48px; height: 48px;
  background: rgba(255,213,3,.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.footer-logo-main {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
}
.footer-logo-sub {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 0.82rem;
  transition: var(--transition-fast);
}
.footer-socials a:hover { background: var(--yellow); color: var(--blue-dark); border-color: var(--yellow); }

.footer-mpesa {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,213,3,.08);
  border: 1px solid rgba(255,213,3,.2);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: rgba(255,255,255,.7);
}
.footer-mpesa i { color: var(--yellow); }
.footer-mpesa strong { color: var(--yellow); }

.footer-heading {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: rgba(255,255,255,.6);
  padding: 6px 0;
  transition: var(--transition-fast);
}
.footer-links li a i { color: var(--yellow); font-size: 0.55rem; }
.footer-links li a:hover { color: var(--yellow); padding-left: 4px; }

.footer-contact-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,.6);
  align-items: flex-start;
}
.fci-icon {
  color: var(--yellow);
  font-size: 0.9rem;
  margin-top: 3px;
  min-width: 18px;
}
.footer-contact-list a:hover { color: var(--yellow); }

.btn-directions {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid rgba(255,213,3,.3);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.btn-directions:hover { background: rgba(255,213,3,.1); color: var(--yellow); }

.footer-brands-strip {
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 24px 0;
  overflow: hidden;
}
.fbs-label {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  text-align: center;
  margin-bottom: 16px;
}
.fbs-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 28px;
}
.fbs-logos span {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
  transition: color 0.2s ease;
}
.fbs-logos span:hover { color: rgba(255,255,255,.6); }

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 0.82rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom .fa-heart { font-size: 0.75rem; }

/* ---------------------------------------------------------------
   ABOUT PAGE SPECIFIC
--------------------------------------------------------------- */
.team-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  margin: 0 auto 18px;
  overflow: hidden;
  border: 4px solid rgba(8,58,129,.12);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}
.team-role {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.value-card {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border-left: 3px solid var(--yellow);
}
.value-icon { color: var(--blue); font-size: 1.4rem; margin-bottom: 12px; }
.value-title {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}
.value-text { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; }

/* ---------------------------------------------------------------
   SERVICES PAGE SPECIFIC
--------------------------------------------------------------- */
.service-detail-section {
  padding: 100px 0;
}
.service-detail-section:nth-child(even) {
  background: var(--gray-100);
}

.service-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.service-detail-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.service-detail-img:hover img { transform: scale(1.04); }

.service-highlight-box {
  background: var(--blue);
  color: white;
  border-radius: var(--radius-md);
  padding: 28px;
  margin-top: 28px;
}
.service-highlight-box h6 {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}
.service-highlight-box ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.service-highlight-box ul li:last-child { border-bottom: none; }
.service-highlight-box ul li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--yellow);
  font-size: 0.8rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.faq-accordion .accordion-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  margin-bottom: 10px;
}
.faq-accordion .accordion-button {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  box-shadow: none;
  padding: 18px 24px;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--blue);
  color: var(--white);
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: invert(1);
}
.faq-accordion .accordion-body {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
  padding: 20px 24px;
}

/* ---------------------------------------------------------------
   CONTACT PAGE MAP
--------------------------------------------------------------- */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

/* ---------------------------------------------------------------
   KNOWLEDGE CENTER (BLOG) PLACEHOLDER
--------------------------------------------------------------- */
.coming-soon-wrap {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.coming-soon-icon {
  font-size: 4rem;
  color: var(--blue);
  margin-bottom: 24px;
  opacity: 0.3;
}

/* ---------------------------------------------------------------
   UTILITIES
--------------------------------------------------------------- */
.text-blue  { color: var(--blue) !important; }
.text-yellow{ color: var(--yellow) !important; }
.bg-blue    { background: var(--blue) !important; }
.bg-dark-ecc{ background: var(--dark) !important; }
.border-yellow { border-color: var(--yellow) !important; }
.py-section { padding: 100px 0; }

/* ---------------------------------------------------------------
   SCROLL ANIMATIONS (AOS overrides)
--------------------------------------------------------------- */
[data-aos] { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

/* ---------------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------------- */
@media (max-width: 1199px) {
  .about-img-accent { right: 10px; }
}

@media (max-width: 991px) {
  .page-hero { padding: 80px 0 60px; }
  .parallax-cta { background-attachment: scroll; }
}

@media (max-width: 767px) {
  .contact-info-card { padding: 36px 28px; }
  .contact-form-wrap { padding: 36px 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .ecc-modal-body { padding: 24px 20px; }
  .ecc-modal-header { padding: 24px 20px; }
}

@media (max-width: 575px) {
  .about-img-accent { display: none; }
  .hero-title { font-size: 2.4rem; }
}
