/* ============================================
   CHERY EV LANDING PAGE - CUSTOM STYLESHEET
   Color Palette: #E60012 (Red), #1A1A1A (Black), #B0BEC5 (Gray)
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --red: #E60012;
  --red-dark: #b8000e;
  --red-light: #ff1a2b;
  --black: #1A1A1A;
  --black-soft: #2a2a2a;
  --gray: #B0BEC5;
  --gray-light: #eceff1;
  --gray-dark: #78909C;
  --white: #ffffff;
  --blue:       #0a84ff;
  --green:      #1da351;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.18);
  --shadow-red: 0 8px 32px rgba(230,0,18,0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
}

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

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

/* --- Running Text / Ticker --- */
#top-ticker {
  background: var(--red);
  color: var(--white);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 1050;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.ticker-wrapper {
  display: inline-flex;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-wrapper:hover { animation-play-state: paused; }

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-right: 80px;
}

.ticker-item::before {
  content: "★";
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
}

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

/* --- Navbar --- */
#main-navbar {
  background: var(--black) !important;
  padding: 14px 0;
  transition: var(--transition);
  border-bottom: 2px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 1040;
}

#main-navbar.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-lg);
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white) !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar-brand span { color: var(--red); }

.navbar-nav .nav-link {
  color: var(--gray) !important;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px !important;
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--red);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover {
  color: var(--white) !important;
}

.navbar-nav .nav-link:hover::after { width: 70%; }

.navbar-toggler {
  border-color: var(--red) !important;
  padding: 4px 8px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28230,0,18,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-collapse {
  background: var(--black);
}

/* --- Hero Section --- */
#hero {
  position: relative;
  min-height: 92vh;
  background: var(--black);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(26,26,26,0.97) 0%,
    rgba(26,26,26,0.75) 50%,
    rgba(230,0,18,0.12) 100%
  );
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230,0,18,0.15);
  border: 1px solid rgba(230,0,18,0.5);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title .accent { color: var(--red); }

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.btn-cta-primary {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: var(--transition);
  box-shadow: var(--shadow-red);
  cursor: pointer;
}

.btn-cta-primary:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(230,0,18,0.4);
}

.btn-cta-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
  padding: 12px 32px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-cta-outline:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(230,0,18,0.05);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-num span { color: var(--red); }

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.hero-car-showcase {
  position: relative;
  z-index: 2;
}

.hero-car-img {
  width: 100%;
  max-width: 620px;
  filter: drop-shadow(0 20px 60px rgba(230,0,18,0.3));
  animation: float-car 4s ease-in-out infinite;
}

@keyframes float-car {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.hero-glow {
  position: absolute;
  bottom: -60px; left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 80px;
  background: radial-gradient(ellipse, rgba(230,0,18,0.35) 0%, transparent 70%);
  filter: blur(20px);
}

/* --- Section Headers --- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1.1;
}

.section-divider {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin: 14px 0 20px;
  border-radius: 2px;
}

/* --- Sales Profile --- */
#sales-profile {
  background: var(--black);
  padding: 80px 0;
}

.sales-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.sales-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.sales-img-frame {
  position: absolute;
  inset: -6px;
  border: 2px solid var(--red);
  border-radius: calc(var(--radius-lg) + 4px);
  pointer-events: none;
  opacity: 0.5;
}

.sales-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
}

.sales-title {
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.sales-bio {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.75;
}

.sales-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray);
  font-size: 0.9rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.sales-contact-icon {
  width: 36px; height: 36px;
  background: rgba(230,0,18,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 1rem;
  flex-shrink: 0;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gray);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
  margin: 4px;
}

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

/* --- Products Section --- */

    #products {
      background: var(--gray-light);
      padding: 96px 0 108px;
      position: relative;
      overflow: hidden;
    }

    #products::before {
      content: '';
      position: absolute;
      top: -80px; left: -80px;
      width: 380px; height: 380px;
      background: radial-gradient(circle, rgba(230,0,18,0.07) 0%, transparent 70%);
      pointer-events: none;
    }

    #products::after {
      content: '';
      position: absolute;
      bottom: -60px; right: -60px;
      width: 280px; height: 280px;
      background: radial-gradient(circle, rgba(230,0,18,0.05) 0%, transparent 70%);
      pointer-events: none;
    }

    /* ── Section header ── */
    .sec-label {
      display: inline-block;
      font-family: var(--font-body);
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 8px;
    }

    .sec-title {
      font-family: var(--font-disp);
      font-size: clamp(2.2rem, 4.5vw, 3.4rem);
      font-weight: 800;
      color: var(--black);
      text-transform: uppercase;
      line-height: 1.05;
      margin-bottom: 0;
    }

    .sec-divider {
      width: 48px;
      height: 3px;
      background: var(--red);
      border-radius: 2px;
      margin: 14px auto 0;
    }

    /* ── NAV TABS WRAPPER ── */
    .products-nav-wrap {
      margin-top: 48px;
      margin-bottom: 52px;
    }

    /* pill track — dark capsule */
    .nav-tabs.chery-tabs {
      border: none;
      background: var(--black);
      border-radius: 100px;
      padding: 5px;
      display: inline-flex;
      gap: 4px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.28);
    }

    .chery-tabs .nav-item { margin: 0; }

    .chery-tabs .nav-link {
      font-family: var(--font-disp);
      font-size: 1.05rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--gray);
      background: transparent;
      border: none;
      border-radius: 100px;
      padding: 10px 32px;
      transition: all .28s var(--ease);
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .chery-tabs .nav-link:hover {
      color: var(--white);
      background: rgba(255,255,255,.06);
    }

    .chery-tabs .nav-link.active {
      background: var(--red);
      color: var(--white);
      box-shadow: var(--shadow-red);
    }

    /* active color per tab */
    .chery-tabs .nav-link.active.tab-bev  { background: var(--blue);  box-shadow: 0 8px 28px rgba(10,132,255,.3); }
    .chery-tabs .nav-link.active.tab-hev  { background: var(--green); box-shadow: 0 8px 28px rgba(29,163,81,.3); }
    .chery-tabs .nav-link.active.tab-ice  { background: var(--red);   box-shadow: var(--shadow-red); }
    .chery-tabs .nav-link.active.tab-all  { background: var(--black-soft); box-shadow: none; border: 1.5px solid rgba(255,255,255,.12); }

    /* badge count */
    .tab-count {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,.18);
      font-size: .62rem;
      font-weight: 700;
      min-width: 20px;
      height: 20px;
      border-radius: 100px;
      padding: 0 5px;
    }

    .chery-tabs .nav-link:not(.active) .tab-count {
      background: rgba(255,255,255,.1);
    }

    /* ── TAB CONTENT ── */
    .tab-content { outline: none; }

    .tab-pane {
      animation: pane-in .38s var(--ease) both;
    }

    @keyframes pane-in {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── Category label in "Semua" tab ── */
    .cat-block-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--black);
      color: var(--white);
      font-family: var(--font-disp);
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      padding: 9px 24px 9px 16px;
      border-radius: 0 8px 8px 0;
      border-left: 4px solid var(--red);
      margin-bottom: 24px;
    }

    .cat-block-label.lbl-bev { border-left-color: var(--blue); }
    .cat-block-label.lbl-hev { border-left-color: var(--green); }
    .cat-block-label.lbl-ice { border-left-color: var(--red); }

    /* ── PRODUCT CARD ── */
    .product-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      border: 1.5px solid transparent;
      transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease);
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
      border-color: rgba(230,0,18,.2);
    }

    /* image zone */
    .pc-img {
      background: var(--black);
      padding: 28px 22px 18px;
      position: relative;
      overflow: hidden;
    }

    .pc-img::after {
      content: '';
      position: absolute;
      bottom: 0; left: 50%;
      transform: translateX(-50%);
      width: 70%;
      height: 50px;
      background: radial-gradient(ellipse, rgba(230,0,18,.28) 0%, transparent 70%);
      filter: blur(14px);
    }

    .pc-img.bev-glow::after { background: radial-gradient(ellipse, rgba(10,132,255,.3) 0%, transparent 70%); }
    .pc-img.hev-glow::after { background: radial-gradient(ellipse, rgba(29,163,81,.25) 0%, transparent 70%); }

    .pc-img img {
      width: 100%;
      height: 172px;
      object-fit: contain;
      display: block;
      position: relative;
      z-index: 1;
      filter: drop-shadow(0 8px 28px rgba(0,0,0,.5));
      transition: transform .38s var(--ease);
    }

    .product-card:hover .pc-img img { transform: scale(1.05); }

    /* ribbon */
    .pc-ribbon {
      position: absolute;
      top: 14px; right: 14px;
      z-index: 2;
      font-family: var(--font-disp);
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      padding: 4px 14px;
      border-radius: 100px;
      color: var(--white);
    }

    .pc-ribbon.bev { background: var(--blue); }
    .pc-ribbon.hev { background: var(--green); }
    .pc-ribbon.ice { background: var(--red); }

    /* body */
    .pc-body {
      padding: 20px 20px 12px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .pc-name {
      font-family: var(--font-disp);
      font-size: 1.55rem;
      font-weight: 800;
      color: var(--black);
      text-transform: uppercase;
      line-height: 1.05;
      margin-bottom: 2px;
    }

    .pc-tagline {
      font-size: .78rem;
      color: var(--gray-dark);
      font-weight: 500;
      margin-bottom: 14px;
    }

    /* spec pills */
    .pc-specs {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-bottom: 14px;
    }

    .pc-spec {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: var(--gray-light);
      border-radius: 100px;
      padding: 5px 11px;
      font-size: .73rem;
      font-weight: 500;
      color: var(--black-soft);
    }

    .pc-spec i { font-size: .78rem; color: var(--red); }
    .pc-spec.bev i { color: var(--blue); }
    .pc-spec.hev i { color: var(--green); }

    .pc-sep {
      height: 1px;
      background: var(--gray-mid);
      margin: 2px 0 14px;
    }

    /* price + CTA row */
    .pc-price-row {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 8px;
      margin-top: auto;
    }

    .pc-price {
      font-family: var(--font-disp);
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--red);
      line-height: 1;
    }

    .pc-price-note {
      font-size: .68rem;
      color: var(--gray-dark);
      margin-top: 3px;
    }

    .pc-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--black);
      color: var(--white);
      font-family: var(--font-disp);
      font-size: .88rem;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
      padding: 9px 17px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: all .24s var(--ease);
      text-decoration: none;
      white-space: nowrap;
    }

    .pc-btn:hover {
      background: var(--red);
      color: var(--white);
      box-shadow: var(--shadow-red);
      transform: translateY(-2px);
    }

    /* footer */
    .pc-footer {
      padding: 14px 20px 20px;
      border-top: 1px solid var(--gray-mid);
      background: #f5f7f8;
    }

    .pc-features {
      list-style: none;
      padding: 0; margin: 0;
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .pc-features li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: .77rem;
      color: var(--gray-dark);
      line-height: 1.4;
    }

    .pc-features li i {
      color: var(--red);
      font-size: .78rem;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .pc-features.bev li i { color: var(--blue); }
    .pc-features.hev li i { color: var(--green); }

    /* ── Info banner per category ── */
    .cat-banner {
      border-radius: var(--radius);
      padding: 20px 28px;
      display: flex;
      align-items: center;
      gap: 18px;
      margin-top: 8px;
    }

    .cat-banner-icon {
      font-size: 2rem;
      flex-shrink: 0;
      line-height: 1;
    }

    .cat-banner-title {
      font-family: var(--font-disp);
      font-size: 1rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: .07em;
      text-transform: uppercase;
      margin-bottom: 3px;
    }

    .cat-banner-desc {
      font-size: .78rem;
      color: #90a4ae;
      line-height: 1.55;
      margin: 0;
    }

    /* ── Responsive ── */
    @media (max-width: 767px) {
      #products { padding: 64px 0 72px; }

      .nav-tabs.chery-tabs {
        width: 100%;
        border-radius: 14px;
        flex-wrap: wrap;
        padding: 6px;
        gap: 6px;
      }

      .chery-tabs .nav-item { flex: 1 1 45%; }

      .chery-tabs .nav-link {
        border-radius: 10px;
        justify-content: center;
        padding: 10px 8px;
        font-size: .95rem;
      }

      .cat-banner { flex-direction: column; text-align: center; padding: 20px; }
    }

    @media (max-width: 575px) {
      .pc-img img { height: 148px; }
      .chery-tabs .nav-item { flex: 1 1 100%; }
      .chery-tabs { border-radius: 12px; }
    }

/* --- Testimoni / Slider --- */
#testimoni {
  background: var(--black);
  padding: 80px 0;
}

.swiper-testi {
  width: 100%;
  padding-bottom: 50px;
}

.testi-card {
  background: var(--black-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}

.testi-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.testi-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.4s;
}

.testi-card:hover .testi-img-wrap img { filter: grayscale(0); }

.testi-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,26,26,0.9));
  padding: 20px 16px 14px;
}

.testi-customer {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
}

.testi-car {
  font-size: 0.78rem;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.testi-body { padding: 16px; }

.testi-quote {
  font-size: 0.88rem;
  color: var(--gray);
  font-style: italic;
  line-height: 1.7;
}

.testi-stars { color: #FFD700; font-size: 0.85rem; margin-bottom: 8px; }

.swiper-pagination-bullet {
  background: var(--gray-dark) !important;
  opacity: 1 !important;
  width: 8px !important; height: 8px !important;
}

.swiper-pagination-bullet-active {
  background: var(--red) !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* --- CTA Section --- */
#cta-section {
  background: var(--white);
  margin-bottom: 20px;
}

.cta-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 100px;
}

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

.cta-img-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--red);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cta-text-col {
  padding: 40px;
  background: var(--black);
  border-radius: var(--radius-lg);
}

.cta-address {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
  margin: 20px 0;
}

.cta-phone {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
}

.cta-phone a { color: inherit; }

.btn-wa {
  background: #25D366;
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.btn-wa:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
  color: var(--white);
}

/* --- Why Choose Us --- */
#why-us {
  background: var(--gray-light);
  padding: 80px 0;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--red);
}

.why-icon {
  width: 64px; height: 64px;
  background: rgba(230,0,18,0.08);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--red);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--red);
  color: var(--white);
}

.why-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.why-desc {
  font-size: 0.88rem;
  color: var(--gray-dark);
  line-height: 1.7;
}

/* --- Footer --- */
#footer {
  background: var(--black);
  padding: 60px 0 0;
  border-top: 3px solid var(--red);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-brand span { color: var(--red); }

.footer-tagline {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-contact-item i {
  color: var(--red);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}

.footer-contact-item span,
.footer-contact-item a {
  font-size: 0.88rem;
  color: var(--gray);
  transition: var(--transition);
  line-height: 1.5;
}

.footer-contact-item a:hover { color: var(--red); }

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--gray);
  font-size: 1rem;
  margin-right: 8px;
  margin-bottom: 8px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  background: rgba(0,0,0,0.35);
  padding: 16px 0;
  margin-top: 40px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-dark);
}

/* --- Mobile Fixed Buttons --- */
#mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 2000;
  background: var(--black);
  border-top: 2px solid var(--red);
  padding: 10px 12px;
  gap: 10px;
}

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

.mob-btn-call {
  background: var(--black-soft);
  color: var(--white);
  border: 2px solid var(--gray-dark);
}

.mob-btn-wa {
  background: #25D366;
  color: var(--white);
}

.mob-btn:hover { opacity: 0.88; }

/* --- Responsive --- */
@media (max-width: 991.98px) {
  .hero-stats { gap: 20px; }
  .navbar-collapse {
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 12px;
  }
  .cta-text-col { padding: 28px 20px; margin-top: 20px; }
}

@media (max-width: 767.98px) {
  #mobile-cta-bar { display: flex; }
  body { padding-bottom: 70px; }
  #hero { min-height: 70vh; padding: 60px 0; }
  .hero-title { font-size: 2.4rem; }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .hero-stat-num { font-size: 1.6rem; }
  #sales-profile, #products, #testimoni, #cta-section, #why-us { padding: 56px 0; }
  .sales-img-wrap img { height: 300px; }
  .cta-img-wrap { min-height: 240px; }
}
/* --- Back to Top Button --- */
#btn-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1999;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow-red);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s var(--ease), visibility .3s var(--ease), transform .3s var(--ease);
}

#btn-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#btn-top:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
}

@media (max-width: 575.98px) {
  .hero-title { font-size: 2rem; }
  .filter-btn { padding: 8px 18px; font-size: 0.9rem; }
  #btn-top { bottom: 28px; }
}
