/* CSS Reset and Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5f5d;
    --secondary-color: #ffffff;
    --accent-color: #1a4a47;
    --text-primary: #ffffff;
    --text-secondary: #333333;
    --text-muted: #666666;
    --bg-dark: #1a1a1a;
    --bg-light: #f8f9fa;
    --font-family: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-secondary);
    overflow-x: hidden;
    padding-top: 80px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-logo img {
    max-height: 20px;
    display: block;
}

.nav-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle-line {
    width: 25px;
    height: 3px;
    background: var(--text-secondary);
    transition: var(--transition);
}

/* =========================================
   MOBILE RESPONSIVE ENHANCEMENTS
========================================= */

/* Tablet and Mobile Navigation */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        height: 70px;
    }

    .nav-logo img {
        max-height: 18px;
    }

    .nav-list {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--secondary-color);
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 2rem;
        display: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #e9ecef;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid #f8f9fa;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-toggle {
        display: flex;
        padding: 0.5rem;
    }

    .nav-toggle-line {
        width: 22px;
        height: 2px;
    }

    /* Adjust body padding for smaller header */
    body {
        padding-top: 70px;
    }
}

/* Mobile Specific Styles */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
        height: 65px;
    }

    .nav-logo img {
        max-height: 16px;
    }

    .nav-list {
        top: 65px;
        padding: 1rem 1.5rem;
        gap: 0.8rem;
    }

    .nav-link {
        font-size: 0.95rem;
    }

    body {
        padding-top: 65px;
    }
}

/* ---------------------------------------
   BERANDA SECTION
---------------------------------------- */
/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-bottom: 3rem;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    font-family: 'Barlow Condensed', sans-serif;
}

.hero-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Mobile Hero Enhancements */
@media (max-width: 768px) {
    .hero {
        padding-bottom: 2rem;
    }

    .hero-content {
        padding: 0 1.5rem;
        max-width: 90%;
    }

    .hero-title {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
        margin-bottom: 2rem;
        line-height: 1.4;
    }

    .hero-indicators {
        bottom: 1.5rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: clamp(1.6rem, 6vw, 2rem);
        letter-spacing: 0.5px;
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }

    .hero-indicators {
        bottom: 1rem;
    }
}


.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-primary);
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: var(--text-secondary);
}

.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--text-primary);
}


/* J7 Section */
.j7-section {
    position: relative;
    height: 100vh;
    background-image: url('https://jaecoo.id/_next/image?url=https%3A%2F%2Fcms.jaecoo.id%2Fuploads%2FJ7_Highlight_c5b878ca76.jpg&w=3840&q=75');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px 0;
  }
  
  .j7-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); /* jika ingin overlay gelap */
    z-index: 1;
  }
  
  .j7-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
  }
  
  .j7-title {
    font-size: 3rem;
    font-weight: bold;
    margin: 0;
  }
  
  .btn.btn-primary {
    background-color: #1a4a47;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-block;
  }

/* Mobile J7 Section */
@media (max-width: 768px) {
    .j7-section {
        padding: 30px 0;
        min-height: 80vh;
    }

    .j7-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
        padding: 0 1rem;
    }

    .j7-content {
        padding: 0 1rem;
    }

    .btn.btn-primary {
        font-size: 1rem;
        padding: 0.8rem 1.8rem;
    }
}

@media (max-width: 480px) {
    .j7-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
    }

    .btn.btn-primary {
        font-size: 0.9rem;
        padding: 0.7rem 1.5rem;
    }
}

/* About Section */
.about-section {
    position: relative;
    height: 100vh;
    background-image: url('https://jaecoo.id/_next/image?url=https%3A%2F%2Fcms.jaecoo.id%2Fuploads%2Fstories_home_20a81b439a.png&w=3840&q=75');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 50px 20px;
}

.about-background::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3); /* transparansi gelap */
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
}

.about-text {
    font-size: 1rem;
    color: #fff;
    line-height: 1.6;
}

/* Mobile About Section */
@media (max-width: 768px) {
    .about-section {
        padding: 30px 15px;
        min-height: 80vh;
    }

    .about-content {
        max-width: 95%;
    }

    .about-text {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        line-height: 1.7;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 20px 10px;
    }

    .about-text {
        font-size: clamp(0.85rem, 3vw, 1rem);
        padding: 0 0.5rem;
    }
}

/* ---------------------------------------
   Super Hybrid Section 
---------------------------------------- */

.super-hybrid-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.super-hybrid-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;         
    object-position: center;  
    background: black;
}


.super-hybrid-content {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.super-hybrid-content .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Mobile Super Hybrid Section */
@media (max-width: 768px) {
    .super-hybrid-section {
        min-height: 80vh;
    }

    .super-hybrid-content {
        bottom: 1.5rem;
        padding: 0 1rem;
    }

    .super-hybrid-content .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .super-hybrid-content {
        bottom: 1rem;
    }

    .super-hybrid-content .btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.85rem;
    }
}



/* =========================================
   FOOTER STYLES
========================================= */
.footer {
    background: #000;
    color: #fff;
    padding: 4rem 2rem 2rem;
    font-family: 'Inter', sans-serif;
    text-align: center;
  }

  .footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    margin-bottom: 1.5rem;
  }

  .footer-logo-img {
    height: 40px;
    filter: brightness(0) invert(1); 
  }

  .footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

  .footer-social-link {
    font-size: 1.5rem;
    color: #fff;
    transition: color 0.3s ease, transform 0.3s ease;
  }

  .footer-social-link:hover {
    color: #2c5f5d;
    transform: scale(1.1);
  }

  .footer-models {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2.5rem;
  }

  .footer-models-card {
    text-align: center;
    text-decoration: none;
    color: inherit;
    max-width: 200px;
    transition: transform 0.3s ease;
  }

  .footer-models-card:hover {
    transform: translateY(-5px);
  }

  .footer-models-image {
    height: 120px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 1rem;
  }

  .footer-models-image.models-j8-ardis {
    background-image: url('https://cms.jaecoo.id/uploads/J8_AWD_8b95bcc0c0.webp');
  }

  .footer-models-image.models-j8-shs {
    background-image: url('https://cms.jaecoo.id/uploads/j8_c40ca7c8eb.png');
  }

  .footer-models-image.models-j7-shs {
    background-image: url('https://cms.jaecoo.id/uploads/j7_phev_9f5d2ccab7.png');
  }

  .footer-models-card h3 {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    color: #ffff;
    line-height: 1.4;
  }

  .footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
  }

  .footer-nav-link:hover {
    color: #ffff;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .footer-models {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }

    .footer-social {
      gap: 1.5rem;
    }

    .footer-nav {
      flex-direction: column;
      gap: 1rem;
      padding-top: 1.5rem;
    }

    .footer-models-image {
      height: 100px;
    }

    .footer-models-card h3 {
      font-size: 0.85rem;
    }
  }

  /* Tambahan untuk device di bawah 480px */
  @media (max-width: 480px) {
    .footer {
      padding: 3rem 1rem 1rem;
    }

    .footer-logo-img {
      height: 32px;
    }

    .footer-social-link {
      font-size: 1.3rem;
    }

    .footer-models-card h3 {
      font-size: 0.8rem;
    }
  }

  
/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-family);
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: none;
}

.form-input.error,
.form-textarea.error {
    border-color: #e74c3c;
}

.form-input.error + .error-message,
.form-textarea.error + .error-message {
    display: block;
}


/* =========================================
   DEALER PAGE STYLES
========================================= */

/* ========================
   1. HERO SECTION
======================== */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300&display=swap');

.dealer-hero {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    font-family: 'Barlow Condensed', sans-serif;
}

.dealer-hero-background {
    position: relative;
    width: 100%;
    height: 90%;
}

.dealer-hero-img {
    width: 100%;
    height: 90%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.dealer-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    background-color: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.dealer-hero-content {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 0 1rem;
}

.dealer-hero-title {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300; /* lebih tipis */
    letter-spacing: 0.15em;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.dealer-hero-subtitle {
    font-size: clamp(0.85rem, 1.2vw, 1.1rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    opacity: 0.95;
}

/* ========================
   2. DEALER LISTINGS 
======================== */
.dealer-listings {
    position: relative;
    width: 100%;
    overflow: hidden;
    font-family: 'Barlow Condensed', sans-serif;
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center; /* ✅ Semua teks rata tengah */
}

.container {
    max-width: 1140px;
    margin: 0 auto;
}

/* Kartu dealer */
.dealer-card {
    display: flex;
    flex-direction: column; /* ✅ Agar konten vertikal */
    align-items: center;
    background: #256762;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    padding: 40px 24px;
    margin-bottom: 30px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dealer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(253, 252, 252, 0.08);
}

/* Icon kiri */
.dealer-left {
    margin-bottom: 20px;
}

.dealer-icon img {
    width: 40px;
    height: 40px;
    filter: invert(50%) sepia(20%) saturate(90%) hue-rotate(129deg) brightness(20%) contrast(100%);
}

/* Konten kanan */
.dealer-right {
    width: 100%;
}

/* Nama dealer */
.dealer-name {
    font-size: 1.5rem; 
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

/* Alamat */
.dealer-address {
    font-size: 0.95rem; /* ✅ lebih kecil dan ringan */
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Telepon */
.dealer-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.95rem;
    margin-bottom: 16px;
    color: #ffffff;
}

.dealer-phone a {
    color: #ffffff;
    font-weight: 100;
    text-decoration: none;
}

.dealer-phone a:hover {
    text-decoration: underline;
}

/* Tombol aksi */
.dealer-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

/* Tombol umum */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 200;
    font-family: 'Barlow Condensed', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  }
  
  /* Tombol utama */
  .btn-primary {
    background-color: #fcfdfd;
    color: #ffffff;
    font-weight: 200;
    border: 1px solid transparent;
  }
  
  .btn-primary:hover {
    background-color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  }
  
  /* Tombol sekunder */
  .btn-secondary {
    background-color: #f4f4f4;
    color: #1a4a47;
    font-weight: 200;
    border: 1px solid #ffffff;
  }
  
  .btn-secondary:hover {
    background-color: #e0e0e0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  }
  
  /* Tombol responsif */
  @media (max-width: 768px) {
    .dealer-actions {
      flex-direction: column;
      gap: 10px;
      width: 100%;
    }
  
    .btn {
      width: 100%;
      font-size: 1rem;
    }
  }
  

/* ========================
   3. DEALER MAPS
======================== */
.dealer-map {
    position: relative;
    overflow: hidden;
    font-family: 'Barlow Condensed', sans-serif;
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-align: center;
}

.map-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.map-note {
    opacity: 0.8;
    font-size: 0.9rem;
}

.dealer-map .btn {
    font-family: 'Barlow Condensed', sans-serif;
}


/* ========================
   4.NEED HELP 
======================== */

.dealer-cta {
    padding: 4rem 2rem;
    background: var(--bg-dark);
    color: var(--text-primary);
    text-align: center;
}


.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Barlow Condensed', sans-serif;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Barlow Condensed', sans-serif;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    font-family: 'Barlow Condensed', sans-serif;
}


/* =========================================
   SUPER HYBRID PAGE 
========================================= */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300&display=swap');

.hybrid-hero {
    font-family: 'Barlow Condensed', sans-serif;
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: white;
    padding-bottom: 80px;
}

.hybrid-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.hybrid-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hybrid-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hybrid-hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 0.1rem;
    letter-spacing: 2px;
}

.hybrid-hero-subtitle {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    opacity: 0.85;
}

.hybrid-hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
    top: 40px;
}

.hybrid-intro {
    padding: 4rem 2rem;
    background: var(--secondary-color);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-muted);
    font-weight: 500;
}

.hybrid-how-it-works {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.work-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background: var(--primary-color);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

.hybrid-cta {
    padding: 4rem 2rem;
    background: var(--bg-dark);
    color: var(--text-primary);
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .intro-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .work-step {
        flex-direction: column;
        text-align: center;
    }
}


/* =========================================
   CONTACT PAGE STYLES
========================================= */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300&display=swap');

.contact-hero {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    font-family: 'Barlow Condensed', sans-serif;
}

.contact-hero-background {
    position: relative;
    width: 100%;
    height: 90%;
}

.contact-hero-img {
    width: 100%;
    height: 90%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    background-color: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.contact-hero-content {
    position: absolute;
    bottom: 20rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 0 1rem;
}

.contact-hero-title {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300; /* lebih tipis */
    letter-spacing: 0.15em;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.contact-hero-subtitle {
    font-size: clamp(0.85rem, 1.2vw, 1.1rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    opacity: 0.95;
}

.contact-info {
    padding: 4rem 2rem;
    background: var(--secondary-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-details h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.contact-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-items {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.phone-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.location-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.email-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.time-icon {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.contact-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.contact-text p {
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--accent-color);
}

.social-contact h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
    color: var(--text-primary);
}

.social-btn.instagram {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.social-btn.tiktok {
    background: linear-gradient(135deg, #000000 0%, #ff0050 100%);
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-form-container {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    text-align: center;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.checkbox-input {
    margin-top: 0.2rem;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    margin-top: 1rem;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .dealer-actions {
        flex-direction: column;
    }
    
    .dealer-actions .btn {
        flex: none;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .dealers-grid {
        grid-template-columns: 1fr;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
    }
    
    .dealer-card,
    .contact-form-container {
        padding: 1.5rem;
    }
}

/* ---------------------------
   Global Section Styling
--------------------------- */
.contact-info-section {
  padding: 60px 20px;
  background-color: #fff;
  color: #333;
  font-family: 'Barlow Condensed', sans-serif;
}

.contact-info-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------------------------
   Grid Layout
--------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem; /* atau 40px, konsistenkan satuan */
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

/* Responsive: Stack Columns */
@media screen and (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-container {
    margin-top: 40px;
  }
}

/* ---------------------------
   Left Column – Contact Info
--------------------------- */
.contact-info h2 {
  font-family: 'Sackers Gothic', sans-serif; /* Fallback applies if font not loaded */
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
}

.contact-description {
  color: #666;
  font-size: 16px;
  max-width: 600px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
}

.contact-icon {
  font-size: 24px;
  color: #2c5f5d;
  width: 32px;
  text-align: center;
  margin-right: 16px;
  margin-top: 6px;
}

.contact-details h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.contact-details a {
  color: #1a4a47;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

/* Social Media */
.contact-social {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.social-btn {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #1a4a47;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-btn i {
  font-size: 20px;
  margin-right: 8px;
}

.social-btn:hover {
  color: #2c5f5d;
}

/* ---------------------------
   Right Column – Form
--------------------------- */
.contact-form-container {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact-form-container h2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-label {
  font-weight: 400;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  display: block;
}

.form-input,
.form-textarea,
select {
  width: 100%;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

.form-textarea {
  resize: vertical;
}

.form-submit {
  background-color: #2c5f5d;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.3s ease;
}

.form-submit:hover {
  background-color: #1a4a47;
}



/* ---------------------------------------
   MODELS SECTION
---------------------------------------- */
/* -----HERO SECTION----- */

.models-hero {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    font-family: 'Barlow Condensed', sans-serif;
}

.models-hero-background {
    position: relative;
    width: 100%;
    height: 90%;
}

.models-hero-img {
    width: 100%;
    height: 75vh; 
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}


.models-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 93%;
    background-color: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.models-hero-content {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    text-align: center;
    color: #ffffff;
    padding: 0 1rem;
}

.models-hero-title {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 100; /* lebih tipis */
    letter-spacing: 0.15em;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.models-hero-subtitle {
    font-size: clamp(0.85rem, 1.2vw, 1.1rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    opacity: 0.95;
}

.models-category {
    display: flex;
    flex-direction: column; /* <-- ini bikin vertikal */
    align-items: center;
    margin: 2rem 0;
  }

.category-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
    border-bottom: 2px solid #2c7a7b; /* Garis bawah hitam */
    display: inline-block;         /* Supaya garis hanya sepanjang teks */
    padding-bottom: 0.5rem;        /* Jarak antara teks dan garis */
  }  
  
  
/* Model Card */
.models-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.models-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.models-card.prebooking {
    border: 2px solid #ff6b35;
}

.models-header {
    text-align: center;
    margin-bottom: 10px;
    position: relative;
}

.models-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.models-type {
    font-size: 1rem;
    color: #2c7a7b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prebooking-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #ff6b35;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Model Image Section */
.models-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

.models-image-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.color-selector {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.color-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: none;
    border: 2px solid transparent;
    padding: 15px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-btn.active {
    border-color: #2c7a7b;
    background: rgba(44, 122, 123, 0.05);
}

.color-btn:hover {
    border-color: #2c7a7b;
}

.color-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #ddd;
    transition: all 0.3s ease;
}

.color-dot.silver {
    background: linear-gradient(135deg, #e8e8e8, #c0c0c0);
}

.color-dot.white {
    background: #ffffff;
    border-color: #ccc;
}

.color-dot.gray {
    background: linear-gradient(135deg, #808080, #606060);
}

.color-dot.black {
    background: linear-gradient(135deg, #404040, #000000);
}

.color-name {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.car-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80vh; 
    position: relative;
    overflow: hidden;
  }
  
  .car-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    transition: transform 0.8s ease, opacity 0.8s ease;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
  }
  
  .car-image:hover {
    transform: scale(1.02);
  }

/* Model Price */
.models-price {
    text-align: center;
    margin-bottom: 40px;
}

.price-tag {
    background: linear-gradient(135deg, #2c7a7b, #319795);
    color: white;
    padding: 25px 40px;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(44, 122, 123, 0.3);
    transition: all 0.3s ease;
}

.price-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(44, 122, 123, 0.4);
}

.price-tag.prebooking-price {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.price-tag.prebooking-price:hover {
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.price-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Model Specs */
.models-specs {
    text-align: center;
}

.specs-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 5px;
    margin-bottom: 30px;
}

.spec-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.spec-label {
    display: block;
    font-size: 12px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.spec-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.spec-value.price {
    color: #2c7a7b;
    font-size: 1.4rem;
    font-weight: 700;
}

/* Mobile Models Section */
@media (max-width: 768px) {
    .models-category {
        margin: 1.5rem 0;
    }

    .category-title {
        font-size: clamp(1.5rem, 4vw, 1.8rem);
        margin-bottom: 0.8rem;
        padding: 0 1rem;
    }

    .models-card {
        padding: 20px;
        margin-bottom: 30px;
        border-radius: 15px;
    }

    .models-name {
        font-size: clamp(1.5rem, 4vw, 1.8rem);
        margin-bottom: 8px;
    }

    .models-type {
        font-size: 0.9rem;
    }

    .car-image-container {
        height: 50vh;
        margin: 1rem 0;
    }

    .car-image {
        max-width: 90%;
    }

    .price-tag {
        padding: 20px 30px;
        margin: 0 1rem;
    }

    .price-amount {
        font-size: 1.5rem;
    }

    .specs-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 8px;
    }

    .spec-item {
        padding: 15px 10px;
    }

    .spec-label {
        font-size: 10px;
    }

    .spec-value {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 30px;
        font-size: 14px;
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .category-title {
        font-size: clamp(1.3rem, 5vw, 1.6rem);
        padding: 0 0.5rem;
    }

    .models-card {
        padding: 15px;
        margin: 0 0.5rem 20px;
    }

    .models-name {
        font-size: clamp(1.3rem, 5vw, 1.6rem);
    }

    .car-image-container {
        height: 40vh;
    }

    .price-tag {
        padding: 15px 25px;
    }

    .price-amount {
        font-size: 1.3rem;
    }

    .specs-grid {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        gap: 6px;
    }

    .spec-item {
        padding: 12px 8px;
    }

    .spec-value {
        font-size: 0.9rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 25px;
        font-size: 13px;
        min-width: 130px;
    }
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 180px;
}

.btn-primary {
    background: #2c7a7b;
    color: white;
}

.btn-primary:hover {
    background: #285e61;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(44, 122, 123, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.btn-secondary:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}


/* ---------------------------------------
   Smooth Scrolling
---------------------------------------- */
html {
    scroll-behavior: smooth;
}

/* Loading Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.model-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #2c7a7b;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #285e61;
}
