/* ======= FULL SCREEN SECTIONS ======= */
.section-full {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
}

/* ======= HERO / BANNER ======= */
.banner-slider-hero {
  position: relative;
  width: 100%;
  height: 100vh;
}

.carousel-container-hero {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide-hero {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-slide-hero.active {
  opacity: 1;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.carousel-slide-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 50%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 64px));
  margin: 0 auto;
  text-align: center;
  padding: 60px 0;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
}

.hero-label {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #FFD400;
  margin-bottom: 16px;
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.hero-title {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-arrow:hover {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(255,255,255,0.6);
}

.carousel-arrow-prev { left: 24px; }
.carousel-arrow-next { right: 24px; }

.carousel-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.carousel-dots button.active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.2);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ======= SECTION STYLES ======= */
.section-title {
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #FF0052;
  margin-bottom: 8px;
  font-weight: 600;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 12px;
}

.section-header.center {
  flex-direction: column;
  text-align: center;
}

.section-title-text {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-line {
  height: 3px;
  width: 50px;
  background: #FF0052;
  margin-top: 14px;
  border-radius: 3px;
}

.section-line.center-line {
  margin-inline: auto;
}

.dark-text {
  color: #fff;
}

.dark-text .section-title {
  color: rgba(255, 255, 255, 0.7);
}

.dark-text .section-title-text {
  color: #fff;
}

.dark-muted {
  color: rgba(255,255,255,0.7);
}

/* ======= SECTIONS DEFAULT ======= */
/*
  Sections stacked naturally, Lenis handles smooth scroll.
  Subtle top accent line as visual separator.
*/
.overlap-section {
  position: relative;
  z-index: 2;
}

.overlap-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  pointer-events: none;
}

.overlap-section.z3 { z-index: 3; }
.overlap-section.z4 { z-index: 4; }
.overlap-section.z5 { z-index: 5; }
.overlap-section.z6 { z-index: 6; }

/* ======= PROMO SECTION ======= */
.promo-section {
  position: relative;
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  overflow: hidden;
}

.promo-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,0,82,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(0,85,218,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Regular mode (1-4 items) */
.promo-section:not([data-promo-horizontal]) {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
}

.promo-section:not([data-promo-horizontal]) .promo-section-sticky {
  width: 100%;
}

/* Horizontal scroll sticky mode (5+ items) */
.promo-section[data-promo-horizontal] {
  pointer-events: none;
}

.promo-section[data-promo-horizontal] .promo-section-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.promo-section[data-promo-horizontal] .promo-section-sticky.active {
  opacity: 1;
  visibility: visible;
}

.promo-section[data-promo-horizontal] .promo-section-sticky > .container {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-grid {
  display: grid;
  gap: 24px;
}

.promo-grid.cols-1 {
  grid-template-columns: 1fr;
  max-width: 800px;
  margin-inline: auto;
}

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

.promo-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.promo-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Horizontal scroll track */
.promo-scroll-track {
  overflow: hidden;
  width: 100%;
}

.promo-scroll-content {
  display: flex;
  gap: 24px;
  will-change: transform;
}

.promo-scroll-content .promo-card {
  flex-shrink: 0;
  width: 360px;
}

@media (max-width: 860px) {
  .promo-scroll-content .promo-card {
    width: 280px;
  }
}

@media (max-width: 520px) {
  .promo-scroll-content .promo-card {
    width: 240px;
  }
}

/* Scroll indicator */
.promo-scroll-indicator {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.promo-scroll-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.promo-scroll-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

.promo-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  aspect-ratio: 3/4;
  min-height: 380px;
  border: 1px solid rgba(255,255,255,0.06);
}

.promo-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.15);
}

.promo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.05) 70%);
  z-index: 1;
  transition: opacity 0.4s ease;
}

.promo-card:hover::after {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.1) 70%);
}

.promo-card-body {
  position: relative;
  z-index: 2;
  padding: 36px;
  color: #fff;
}

.promo-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(255,212,0,0.2);
  color: #FFD400;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  backdrop-filter: blur(4px);
}

.promo-card-title {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}

.promo-card-subtitle {
  font-size: 13px;
  opacity: 0.75;
  line-height: 1.5;
  max-width: 90%;
}

.promo-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.25s ease;
  width: fit-content;
}

.promo-card:hover .promo-card-cta {
  background: var(--accent);
  border-color: var(--accent);
}

/* Single promo card center */
.promo-grid.cols-1 .promo-card {
  aspect-ratio: 16/7;
  min-height: 380px;
}

@media (max-width: 860px) {
  .promo-grid.cols-2,
  .promo-grid.cols-3,
  .promo-grid.cols-4 {
    grid-template-columns: 1fr;
  }

  .promo-grid.cols-1 .promo-card {
    aspect-ratio: 16/9;
    min-height: 280px;
  }

  .promo-card {
    min-height: 300px;
  }

  .promo-card-body {
    padding: 24px;
  }
}

/* ======= LAUNCHING + NEWS COMBINED ======= */
.launch-news-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fff 0%, #fce4ec 30%, #e3f2fd 70%, #fff 100%);
  color: #1a1a2e;
  padding: 100px 0 80px;
}

.launch-news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.launch-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.launch-card-full {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 450px;
  display: flex;
  align-items: flex-end;
}

.launch-card-full::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.15) 60%);
  z-index: 1;
}

.launch-card-body {
  position: relative;
  z-index: 2;
  padding: 36px;
}

.news-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.85);
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.06);
  text-decoration: none;
  color: #1a1a2e;
  transition: all 0.25s ease;
}

.news-card:hover {
  background: #fff;
  transform: translateX(4px);
}

.news-card-thumb {
  width: 100px;
  height: 80px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.news-card-info {
  flex: 1;
  min-width: 0;
}

.news-card-date {
  font-size: 11px;
  opacity: 0.6;
  margin-bottom: 4px;
  color: #666;
}

.news-card-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #1a1a2e;
}

.news-card-excerpt {
  font-size: 12px;
  opacity: 0.6;
  margin-top: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #666;
}

/* ======= DEALER RESMI + KEUNGGULAN - Top to bottom 200vh ======= */
.brand-why-section {
  min-height: 150vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #fff 0%, #eef2ff 25%, #dbeafe 50%, #0055DA 100%);
  padding: 60px 0 50px;
}

.brand-why-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.brand-section {
  width: 100%;
  display: flex;
  justify-content: center;
}

.brand-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 820px;
  width: 100%;
}

.brand-item-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 32px;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

.brand-item-new:hover {
  border-color: #FF0052;
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 32px rgba(255, 0, 82, 0.14);
}

.brand-item-new:hover .brand-logo-img-new {
  transform: scale(1.15);
}

.brand-item-new:hover .brand-name-new {
  color: #0055DA;
}

.brand-logo-img-new {
  height: 56px;
  width: auto;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.brand-name-new {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--muted);
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.dealer-heading {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: #0055DA;
  text-align: center;
  line-height: 1.15;
  letter-spacing: -1px;
  margin: 0;
}

/* Keunggulan - Centered header layout */
.keunggulan-wrap {
  width: 100%;
}

.keunggulan-header {
  text-align: center;
  margin-bottom: 48px;
}

.keunggulan-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #FF0052;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.keunggulan-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #0055DA;
  margin: 0 0 16px 0;
  text-align: center;
  line-height: 1.2;
}

.keunggulan-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

/* Cards row - 5 columns */
.keunggulan-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 100%;
}

.why-card-new {
  padding: 40px 24px;
  background: #fff;
  border: 1px solid #FF0052;
  border-radius: 16px;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.why-card-new:hover {
  background: #fff;
  border-color: #FF0052;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 0, 82, 0.12);
}

.why-icon-new {
  font-size: 36px;
  margin-bottom: 20px;
  color: #FF0052;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.why-icon-new img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.why-title-new {
  font-size: 16px;
  font-weight: 600;
  color: #0055DA;
  margin-bottom: 8px;
}

.why-desc-new {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 100%;
}

@media (max-width: 992px) {
  .keunggulan-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .keunggulan-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .keunggulan-header {
    margin-bottom: 32px;
  }
}

/* ======= CONTACT + CREDIT SIMULATION 2-COLS ======= */
.contact-credit-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #0055DA 0%, #0055DA 40%, #3b82f6 65%, #dbeafe 85%, #fff 100%);
  color: #1a1a2e;
  padding: 100px 0 80px;
}

.contact-credit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact-col h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0055DA;
}

.contact-col > p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.6;
}

.contact-info {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.7);
  border-radius: 14px;
  border: 1px solid rgba(0,85,218,0.08);
  transition: all 0.25s ease;
}

.contact-item:hover {
  border-color: #FF0052;
  box-shadow: 0 4px 16px rgba(255, 0, 82, 0.08);
}

.contact-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FF0052;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.contact-item-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 2px;
}

.contact-item-info a,
.contact-item-info span {
  font-size: 13px;
  color: #4b5563;
  text-decoration: none;
}

.contact-item-info a:hover {
  color: #FF0052;
}

.contact-dealer-card {
  margin-top: 16px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.7);
  border-radius: 14px;
  border: 1px solid rgba(0,85,218,0.08);
}

.contact-dealer-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.contact-dealer-header svg {
  color: #0055DA;
  flex-shrink: 0;
}

.contact-dealer-header h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0;
}

.contact-dealer-address {
  font-size: 13px;
  color: #4b5563;
  margin: 4px 0;
  line-height: 1.5;
}

.contact-dealer-phone {
  font-size: 13px;
  color: #6b7280;
  margin: 4px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-map-wrap {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-map-card {
  padding: 14px;
  background: rgba(255,255,255,0.7);
  border-radius: 14px;
  border: 1px solid rgba(0,85,218,0.08);
}

.contact-map-card h4 {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.contact-map-embed {
  border-radius: 12px;
  overflow: hidden;
}

.contact-map-address {
  font-size: 12px;
  color: #6b7280;
  margin-top: 8px;
}

/* Credit Simulation */
.credit-col h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0055DA;
}

.credit-col > p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.6;
}

.credit-form {
  margin-top: 24px;
  padding: 30px;
  background: var(--panel);
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}

.credit-form-group {
  margin-bottom: 18px;
}

.credit-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.credit-form-input,
.credit-form-select {
  width: 100%;
  padding: 12px 16px;
  background: #f8f9ff;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.credit-form-input:focus,
.credit-form-select:focus {
  border-color: #FF0052;
}

.credit-result {
  margin-top: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #FF0052;
}

.credit-result-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.credit-result-row:last-child {
  border-bottom: none;
  padding-top: 14px;
  font-size: 18px;
  font-weight: 700;
  color: #FF0052;
}

.credit-result-label {
  color: var(--muted);
}

.credit-wa-card {
  margin-top: 20px;
  padding: 28px 24px;
  background: #fff;
  border-radius: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.credit-wa-text {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0;
}

.credit-wa-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: #25D366;
  padding: 12px 32px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.25s ease;
}

.credit-wa-link:hover {
  background: #1da851;
}

/* Delivery options */
.delivery-options {
  margin-top: 16px;
  display: flex;
  gap: 12px;
}

.delivery-option {
  flex: 1;
  padding: 18px;
  border: 2px solid var(--line);
  border-radius: 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  background: var(--panel);
}

.delivery-option:hover,
.delivery-option.selected {
  border-color: #FF0052;
  background: rgba(255, 0, 82, 0.04);
}

.delivery-option-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.delivery-option-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.delivery-option-desc {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

/* ======= BUTTONS ======= */
.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-decoration: none;
  color: #fff;
  background: #FF0052;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-accent:hover {
  background: #cc0042;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 0, 82, 0.35);
  color: #fff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-decoration: none;
  color: var(--muted);
  border: 2px solid var(--line);
  border-radius: 30px;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  border-color: #FF0052;
  color: #FF0052;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 500;
  color: #0055DA;
  background: transparent;
  border: 2px solid rgba(0,85,218,0.3);
  border-radius: 30px;
  transition: all 0.2s ease;
}

.btn-outline-white:hover {
  border-color: #0055DA;
  color: #0055DA;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ======= FORM ======= */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-group {
  margin-bottom: 14px;
}

.form-input,
.form-select {
  width: 100%;
  padding: 12px 16px;
  background: #f8f9ff;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
  resize: vertical;
  box-sizing: border-box;
}

.form-input:focus,
.form-select:focus {
  border-color: #FF0052;
}

.form-input::placeholder {
  color: var(--muted);
}

.flash-success {
  padding: 14px 18px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 10px;
  color: #22c55e;
  font-size: 14px;
  margin-bottom: 18px;
  text-align: center;
}

/* ======= SCROLL REVEAL ANIMATIONS ======= */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* Scroll velocity parallax for hero backgrounds */
.parallax-bg {
  will-change: transform;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 960px) {
  .launch-news-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-credit-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-items {
    grid-template-columns: 1fr;
  }

  .keunggulan-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .keunggulan-left {
    position: static;
  }

  .dealer-heading {
    font-size: clamp(28px, 6vw, 42px);
  }

  .keunggulan-heading {
    font-size: clamp(18px, 4vw, 26px);
  }

  .brand-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
  }

  .brand-item-new {
    padding: 28px 24px;
    min-height: 160px;
  }

  .brand-logo-img-new {
    height: 44px;
  }

  .brand-why-section .container {
    gap: 28px;
  }

}

@media (max-width: 520px) {
  .carousel-arrow {
    width: 36px;
    height: 36px;
  }
  .carousel-arrow-prev { left: 12px; }
  .carousel-arrow-next { right: 12px; }

  .delivery-options {
    flex-direction: column;
  }

  .promo-grid.single .promo-card {
    min-height: 50vh;
  }

  .credit-form {
    padding: 20px;
  }

  .brand-items {
    grid-template-columns: 1fr;
    max-width: 280px;
  }

  .brand-item-new {
    padding: 24px 20px;
    min-height: 140px;
  }

  .brand-item-new:hover .brand-logo-img-new {
    transform: scale(1.1);
  }

  .brand-logo-img-new {
    height: 40px;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .contact-dealer-card,
  .contact-map-card {
    padding: 12px 14px;
  }

  .contact-map-embed iframe {
    height: 160px;
  }
}
