/* ============================================================
   DESIGN D — HERO CAROUSEL
   Andalan Oli & Ban — Stylesheet
   ============================================================ */

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

:root {
  /* Colors */
  --green: #166534;
  --green-light: #22c55e;
  --green-dark: #14532d;
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --white: #ffffff;
  --off-white: #f7f7f5;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;

  /* Typography */
  --ff-body: 'Montserrat', sans-serif;
  --ff-heading: 'Montserrat', sans-serif;

  /* Sizes */
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 2rem;
  --fs-4xl: 2.5rem;
  --fs-5xl: 3.25rem;
  --fs-6xl: 4rem;

  /* Layout */
  --container: 1200px;
  --section-py: 6rem;
  --nav-h: 72px;

  /* Effects */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
  --shadow-green: 0 4px 24px rgba(22,101,52,0.35);
  --transition: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: auto; /* GSAP handles scroll */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 500;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.accent { color: var(--green-light); }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  background: var(--green-50);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
}

.section-label i { font-size: 0.75rem; }

.section-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-4xl);
  font-weight: 900;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.section-title--left { text-align: left; }

.section-desc {
  font-size: var(--fs-lg);
  color: var(--gray-500);
  line-height: 1.7;
  font-weight: 500;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  font-size: var(--fs-base);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--transition);
}

.btn-primary:hover {
  background: var(--green-light);
  box-shadow: var(--shadow-green);
  transform: translateY(-2px);
}

.btn-primary--lg {
  padding: 1.1rem 2.5rem;
  font-size: var(--fs-lg);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--gray-700);
  font-weight: 600;
  font-size: var(--fs-base);
  border-radius: var(--radius-full);
  border: 2px solid var(--gray-200);
  cursor: pointer;
  transition: all 0.3s var(--transition);
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: all 0.4s var(--transition);
}

.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}

.nav.scrolled .nav__link { color: var(--gray-700); }
.nav.scrolled .nav__link:hover,
.nav.scrolled .nav__link.active { color: var(--green); }
.nav.scrolled .nav__burger span { background: var(--gray-900); }

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo-img {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-light);
  transition: width 0.3s var(--transition);
}

.nav__link:hover,
.nav__link.active { color: var(--white); }
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.nav.scrolled .nav__link:hover::after,
.nav.scrolled .nav__link.active::after { background: var(--green); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.4rem;
  background: var(--green);
  color: var(--white);
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all 0.3s;
}

.nav__cta:hover {
  background: var(--green-light);
  box-shadow: var(--shadow-green);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--transition);
}

.nav__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--transition);
}

.mobile-menu.open { opacity: 1; pointer-events: auto; }

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mobile-menu__link {
  font-family: var(--ff-heading);
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--transition);
}

.mobile-menu.open .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open .mobile-menu__link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open .mobile-menu__link:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu.open .mobile-menu__link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu__link:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu.open .mobile-menu__link:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-menu__link:nth-child(6) { transition-delay: 0.30s; }
.mobile-menu.open .mobile-menu__link:nth-child(7) { transition-delay: 0.35s; }

.mobile-menu__link:hover { color: var(--green-light); }

.mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--transition);
}

.mobile-menu.open .mobile-menu__cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.40s;
}

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--black);
}

/* Slides container */
.hero__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Individual slide */
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease, visibility 0.9s;
  z-index: 1;
}

.hero__slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Slide background image */
.hero__slide-bg {
  position: absolute;
  inset: 0;
}

.hero__slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.hero__slide.active .hero__slide-bg img {
  transform: scale(1);
}

/* Dark overlay on image */
.hero__slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.3) 100%
  );
  z-index: 1;
}

/* Slide text content */
.hero__slide-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 700px;
  margin: 0;
  padding-left: max(1.5rem, calc((100vw - var(--container)) / 2 + 1.5rem));
}

.hero__slide-tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green-light);
  background: rgba(34, 197, 94, 0.15);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(34, 197, 94, 0.3);
  margin-bottom: 1.5rem;
  width: fit-content;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s var(--transition) 0.3s;
}

.hero__slide.active .hero__slide-tag {
  opacity: 1;
  transform: translateY(0);
}

.hero__slide-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-6xl);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s var(--transition) 0.4s;
}

.hero__slide.active .hero__slide-title {
  opacity: 1;
  transform: translateY(0);
}

.hero__slide-title .accent {
  color: var(--green-light);
}

.hero__slide-desc {
  font-size: var(--fs-lg);
  font-weight: 500;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 520px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s var(--transition) 0.55s;
}

.hero__slide.active .hero__slide-desc {
  opacity: 1;
  transform: translateY(0);
}

.hero__slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: var(--fs-base);
  border-radius: var(--radius-full);
  transition: all 0.3s var(--transition);
  width: fit-content;
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.6s var(--transition) 0.65s;
}

.hero__slide.active .hero__slide-btn {
  opacity: 1;
  transform: translateY(0);
}

.hero__slide-btn:hover {
  background: var(--green-light);
  box-shadow: var(--shadow-green);
  transform: translateY(-2px) !important;
}

/* ---------- Carousel Controls ---------- */
.hero__controls {
  position: absolute;
  right: max(1.5rem, calc((100vw - var(--container)) / 2 + 1.5rem));
  bottom: 50%;
  transform: translateY(50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero__arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--transition);
}

.hero__arrow:hover {
  background: var(--green);
  border-color: var(--green);
  box-shadow: var(--shadow-green);
}

/* ---------- Dots ---------- */
.hero__dots {
  position: absolute;
  bottom: 3rem;
  left: max(1.5rem, calc((100vw - var(--container)) / 2 + 1.5rem));
  z-index: 10;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.hero__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s var(--transition);
  padding: 0;
}

.hero__dot.active {
  background: var(--green-light);
  border-color: var(--green-light);
  width: 36px;
  border-radius: 6px;
}

/* ---------- Counter ---------- */
.hero__counter {
  position: absolute;
  right: max(1.5rem, calc((100vw - var(--container)) / 2 + 1.5rem));
  bottom: 3rem;
  z-index: 10;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  color: var(--white);
  font-family: var(--ff-heading);
}

.hero__counter-current {
  font-size: var(--fs-3xl);
  font-weight: 800;
}

.hero__counter-sep {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,0.4);
  margin: 0 0.1rem;
}

.hero__counter-total {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

/* ---------- Progress Bar ---------- */
.hero__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.1);
  z-index: 10;
}

.hero__progress-bar {
  height: 100%;
  background: var(--green-light);
  width: 0%;
  transition: width 0.1s linear;
}

/* ---------- Scroll Indicator ---------- */
.hero__scroll-down {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--green-light);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 0; }
  100% { top: 100%; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: var(--section-py) 0;
  background: var(--white);
}

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

.service-card {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  border-color: var(--green-100);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

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

.service-card__icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: var(--green-50);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
  overflow: hidden;
}

.service-card__icon img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  transition: filter 0.3s;
}

.service-card:hover .service-card__icon {
  background: var(--green);
  color: var(--white);
}

.service-card:hover .service-card__icon img {
  filter: brightness(0) invert(1);
}

.service-card__num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--ff-heading);
  font-size: var(--fs-sm);
  font-weight: 800;
  color: var(--gray-200);
  transition: color 0.3s;
}

.service-card:hover .service-card__num { color: var(--green-100); }

.service-card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.service-card__desc {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--gray-500);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}

.service-card__link {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s;
}

.service-card:hover .service-card__link { gap: 0.8rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__images {
  position: relative;
}

.about__img--main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.about__img--secondary {
  position: absolute;
  bottom: -2rem;
  right: -1.5rem;
  width: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.about__img--secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__badge {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-green);
  z-index: 2;
}

.about__badge-text {
  font-family: var(--ff-heading);
  font-size: var(--fs-2xl);
  font-weight: 800;
  line-height: 1;
}

.about__badge-label {
  font-size: var(--fs-xs);
  font-weight: 500;
  opacity: 0.85;
  text-align: center;
  line-height: 1.2;
}

.about__text {
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about__highlights {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1.5rem 0 2rem;
}

.about__highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--gray-800);
}

.about__highlight i {
  color: var(--green);
  font-size: 1.1rem;
}

/* ============================================================
   USP / KEUNGGULAN
   ============================================================ */
.usp {
  padding: var(--section-py) 0;
  background: var(--dark);
  color: var(--white);
}

.usp .section-label {
  background: rgba(34, 197, 94, 0.12);
}

.usp .section-title {
  color: var(--white);
}

.usp .section-desc {
  color: var(--gray-400);
}

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

.usp-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--transition);
  overflow: hidden;
}

.usp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34,197,94,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.usp-card:hover {
  border-color: rgba(34,197,94,0.3);
  transform: translateY(-4px);
}

.usp-card:hover::before { opacity: 1; }

.usp-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(34,197,94,0.1);
  color: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.usp-card__num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--ff-heading);
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  z-index: 0;
}

.usp-card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.usp-card__desc {
  font-size: var(--fs-sm);
  color: var(--gray-400);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ============================================================
   BRANDS
   ============================================================ */
.brands {
  padding: var(--section-py) 0;
  background: var(--white);
}

.brands__scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--green) var(--gray-100);
  padding-bottom: 1rem;
}

.brands__scroll::-webkit-scrollbar {
  height: 6px;
}

.brands__scroll::-webkit-scrollbar-track {
  background: var(--gray-100);
  border-radius: 3px;
}

.brands__scroll::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 3px;
}

.brands__scroll::-webkit-scrollbar-thumb:hover {
  background: var(--green-light);
}

.brands__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 0.5rem 0;
}

.brands__scroll.autoScroll .brands__track {
  animation: brandScroll 60s linear infinite;
}

.brands__item {
  font-family: var(--ff-heading);
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--gray-600);
  white-space: nowrap;
  padding: 0.75rem 1.5rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  transition: all 0.3s var(--transition);
  cursor: pointer;
  user-select: none;
}

.brands__item:hover {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

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

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 1rem;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.gallery__item--featured {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery__item img,
.gallery__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}

.gallery__item:hover img,
.gallery__item:hover video {
  transform: scale(1.08);
}

/* Video items */
.gallery__item--video {
  position: relative;
}

.gallery__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 3;
  pointer-events: none;
  transition: all 0.4s var(--transition);
  opacity: 1;
}

.gallery__item--video:hover .gallery__play-btn {
  background: var(--green);
  border-color: var(--green);
  box-shadow: var(--shadow-green);
  transform: translate(-50%, -50%) scale(1.1);
}

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.4s var(--transition);
}

.gallery__item:hover .gallery__caption {
  transform: translateY(0);
}

.gallery__caption h3 {
  color: var(--white);
  font-family: var(--ff-heading);
  font-size: var(--fs-base);
  font-weight: 600;
}

.gallery__caption-tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-light);
  margin-bottom: 0.4rem;
}

/* ============================================================
   VIDEO MODAL
   ============================================================ */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.video-modal__wrapper {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 400px;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s var(--transition);
}

.video-modal.active .video-modal__wrapper {
  transform: scale(1) translateY(0);
}

.video-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  padding: 0;
}

.video-modal__close:hover {
  background: var(--green);
  border-color: var(--green);
  transform: rotate(90deg) scale(1.1);
}

.video-modal__content {
  width: 100%;
  height: 100%;
}

.video-modal__content iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================
   GALLERY IMAGE MODAL
   ============================================================ */
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.gallery-modal.active {
  opacity: 1;
  visibility: visible;
}

.gallery-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.gallery-modal__wrapper {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 900px;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s var(--transition);
}

.gallery-modal.active .gallery-modal__wrapper {
  transform: scale(1) translateY(0);
}

.gallery-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  padding: 0;
}

.gallery-modal__close:hover {
  background: var(--green);
  border-color: var(--green);
  transform: rotate(90deg) scale(1.1);
}

.gallery-modal__prev,
.gallery-modal__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 5;
  padding: 0;
}

.gallery-modal__prev:hover,
.gallery-modal__next:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-50%) scale(1.1);
}

.gallery-modal__prev {
  left: 12px;
}

.gallery-modal__next {
  right: 12px;
}

.gallery-modal__content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 85vh;
}

.gallery-modal__content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
}

.gallery-modal__counter {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  z-index: 5;
}

/* ============================================================
   MAP SECTION
   ============================================================ */
.map-section {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.map-section__wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.map-section__wrapper iframe {
  display: block;
  width: 100%;
  min-height: 450px;
}

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

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

.testi-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--transition);
}

.testi-card:hover {
  border-color: var(--green-100);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testi-card__stars {
  display: flex;
  gap: 0.25rem;
  color: #f59e0b;
  font-size: var(--fs-sm);
  margin-bottom: 1.25rem;
}

.testi-card__text {
  font-size: var(--fs-base);
  font-weight: 500;
  line-height: 1.8;
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testi-card__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testi-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.testi-card__name {
  font-weight: 700;
  color: var(--gray-900);
  font-size: var(--fs-sm);
}

.testi-card__vehicle {
  font-size: var(--fs-xs);
  color: var(--gray-400);
}

/* ============================================================
   CTA / BOOKING
   ============================================================ */
.cta {
  padding: var(--section-py) 0;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(34,197,94,0.15), transparent 60%);
}

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

.cta__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-4xl);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.cta__title .accent { color: var(--green-light); }

.cta__desc {
  font-size: var(--fs-lg);
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

.cta .btn-primary {
  background: var(--white);
  color: var(--green-dark);
}

.cta .btn-primary:hover {
  background: var(--green-light);
  color: var(--white);
}

.cta .btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}

.cta .btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
}

.cta__visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 4rem 0 0;
  background: var(--dark);
  color: var(--gray-400);
  border-top: 3px solid var(--green);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer__logo-img {
  height: 48px;
  width: auto;
  margin-bottom: 1rem;
  border-radius: 50%;
}

.footer__tagline {
  font-size: var(--fs-sm);
  color: var(--gray-500);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer__socials {
  display: flex;
  gap: 0.75rem;
}

.footer__socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 1rem;
  transition: all 0.3s;
}

.footer__socials a:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.footer__heading {
  font-family: var(--ff-heading);
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--green-light);
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__list a,
.footer__list span {
  font-size: var(--fs-sm);
  color: var(--gray-500);
  transition: color 0.3s;
}

.footer__list a:hover { color: var(--green-light); }

.footer__list--contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer__list--contact i {
  color: var(--green-light);
  font-size: var(--fs-sm);
  margin-top: 3px;
  min-width: 16px;
}

.footer__bottom {
  border-top: 1px solid var(--dark-3);
  padding: 1.5rem 0;
  text-align: center;
}

.footer__bottom p {
  font-size: var(--fs-sm);
  color: var(--gray-600);
}

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.wa-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  transition: all 0.4s var(--transition);
}

.wa-fab.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

.wa-fab::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.3);
  animation: waPulse 2s ease infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --fs-6xl: 3rem;
    --fs-5xl: 2.5rem;
    --fs-4xl: 2rem;
  }

  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .usp__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { gap: 3rem; }
  .cta__inner { gap: 3rem; }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
  }

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

  .hero__controls { display: none; }
}

@media (max-width: 768px) {
  :root {
    --section-py: 4rem;
    --fs-6xl: 2.5rem;
    --fs-4xl: 1.75rem;
    --fs-3xl: 1.5rem;
  }

  .about__grid { grid-template-columns: 1fr; }
  .about__images { margin-bottom: 3rem; }
  .about__img--secondary { right: 0.5rem; bottom: -1.5rem; width: 50%; }
  .about__badge { top: -0.5rem; left: -0.5rem; width: 80px; height: 80px; }
  .about__badge-text { font-size: var(--fs-xl); }

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

  .cta__inner { grid-template-columns: 1fr; text-align: center; }
  .cta__actions { justify-content: center; }
  .cta__visual { display: none; }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery__item--featured { grid-column: span 2; grid-row: span 1; }

  .hero__slide-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hero__dots {
    left: 1.5rem;
  }

  .hero__counter {
    right: 1.5rem;
  }

  .hero__scroll-down { display: none; }

  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  :root {
    --fs-6xl: 2rem;
    --fs-4xl: 1.5rem;
  }

  .services__grid { grid-template-columns: 1fr; }
  .usp__grid { grid-template-columns: 1fr; }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .gallery__item--featured { grid-column: span 1; }

  .hero__slide-btn {
    font-size: 0.875rem;
    padding: 0.8rem 1.6rem;
  }
  .hero__dots { bottom: 2rem; }
  .hero__counter { bottom: 2rem; }

  .cta__actions { flex-direction: column; }
  .cta__actions a { width: 100%; justify-content: center; }
}