/* #ee6c0a */

/* ================= HERO SECTION ================= */
.dealer-hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #f57c00, #d32f2f);
  display: flex;
  align-items: center;
  padding: 70px 6%;
  color: #fff;
  overflow: hidden;
}

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

.dealer-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.dealer-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.dealer-content h1 span {
  color: #ffcc00;
}

.dealer-content p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary {
  background: #ffcc00;
  color: #000;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  background: #d32f2f;
  cursor: pointer;
}

/* ================= MAP ================= */
.dealer-map {
  position: relative;
  z-index: 2;
  width: 630px;
  height: 647px;
  margin-left: auto;
  /* background: rgba(255,255,255,0.08); */
  backdrop-filter: blur(6px);
  border-radius: 20px;
  /* padding: 15px; */
  /* box-shadow: 0 20px 50px rgba(0,0,0,0.4); */
}

#chartdiv {
  width: 100%;
  height: 100%;
}

/* ================= FORM ================= */
.dealer-form-section {
  background: #fff;
  padding: 80px 6%;
}

.dealer-form-box {
  max-width: 700px;
  margin: auto;
  background: #fafafa;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.dealer-form-box h2 {
  text-align: center;
  margin-bottom: 30px;
}

.dealer-form-box input,
.dealer-form-box textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.dealer-form-box button {
  width: 100%;
  padding: 14px;
  background: #d32f2f;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}

.network-section {
  padding: 80px 6%;
  background: #f9fafb;
  text-align: center;
}

.network-ticker {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.network-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: countries 40s linear infinite;
  will-change: transform;
}


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

@keyframes countries {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.network-card {
  min-width: 160px;
  background: #fff;
  padding: 20px 16px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.network-card img {
  width: 56px;
}

.network-card span {
  font-weight: 600;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .dealer-hero {
    flex-direction: column;
    text-align: center;
  }

  .dealer-map {
    margin: 40px auto 0;
    width: 100%;
    height: 400px;
  }

  .hero-buttons {
    justify-content: center;
  }
}