* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  color: #111;
  background: #fff;
}


/* HERO */
.hero {
  height: 80vh;
  background: url("../../img/vehicle/santafe/all-new-santa-fe-d-1920X1080.avif") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-left: 60px;
}

.hero-text {
  max-width: 600px;
  margin-top: -150px; /* makin negatif = makin ke atas */
}


.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
}

/* SECTION */
.container {
  padding: 60px;
}

/* HIGHLIGHT */
.highlight {
  display: flex;
  gap: 40px;
  align-items: center;
}

.highlight img {
  width: 100%;
  border-radius: 10px;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.feature-card h3 {
  margin-bottom: 8px;
}

/* CTA */
.cta {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.cta .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
}
/* ======================================================
   INTERNAL NAVIGATION (CSS IMAGE)
====================================================== */

.internal-nav-section {
  width: 100%;
}

/* GRID */
.internal-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* CARD */
.internal-nav-card {
  position: relative;
  height: 320px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* IMAGE SOURCE */
.nav-home {
  background-image: url("/assets/img/showroom-bsd.webp");
}

.nav-vehicle {
  background-image: url("../../img/vehicle/all.avif");
}

/* OVERLAY */
.internal-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  transition: background 0.3s ease;
}

/* TEXT */
.internal-nav-content {
  position: absolute;
  left: 48px;
  bottom: 48px;
  z-index: 2;
}

.internal-nav-label {
  font-size: 14px;
  letter-spacing: 0.5px;
  opacity: 0.85;
}

.internal-nav-title {
  font-size: 32px;
  font-weight: 600;
}

/* HOVER */
.internal-nav-card:hover .internal-nav-overlay {
  background: rgba(0,0,0,0.6);
}
/* ======================================================
   MOBILE ONLY – SANTA FE (CONTENT)
====================================================== */
@media (max-width: 480px) {

  /* ================= HERO ================= */
  .hero {
    height: 90svh;
    background-position: center;
    background-size: cover;

    display: flex;
    align-items: flex-start;
  }

  .hero-text {
    padding: 96px 20px 0;
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 12px;
  }

  .hero-text p {
    font-size: 15px;
    line-height: 1.6;
  }

  /* ================= HIGHLIGHT ================= */
  .highlight {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 64px 16px;
  }

  .highlight-text h2 {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .highlight-text p {
    font-size: 15px;
    line-height: 1.7;
  }

  .highlight-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* ================= FEATURES ================= */
  .features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 64px 16px;
  }

  .feature-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
  }

  .feature-card h3 {
    font-size: 20px;
    margin: 12px 0 6px;
  }

  .feature-card p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* ================= CTA ================= */
  .cta {
    padding: 64px 16px;
    text-align: center;
  }

  .cta h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 24px;
  }

  .cta .btn {
    width: 100%;
    max-width: 320px;
    padding: 14px 0;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .hero {
    background-image: url("../../img/vehicle/santafe/all-new-santa-fe-m-414X775.avif");
    background-position: center top;
  }
  .hero-text {
    margin-top: 72px;        /* GANTI padding-top */
    padding: 0 20px;
    max-width: 100%;
    position: relative;
    z-index: 2;
  }
}


