.contact-banner {
    min-height: 320px;
    display: flex;
    align-items: center;

    /* DEMO IMAGE */
    background:
        linear-gradient(to right, #efe7da 40%, rgba(0, 0, 0, 0.15)),
        url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d");

    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

/* Left text */
.banner-content {
    padding: 60px;
    max-width: 500px;
}

.banner-content h1 {
    font-size: 42px;
    color: #c7921e;
    font-weight: 700;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 16px;
    color: #333;
}

/* Tablet */
@media (max-width: 991px) {
    .banner-content h1 {
        font-size: 34px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .contact-banner {
        background:
            linear-gradient(to bottom, rgba(239, 231, 218, 0.95), rgba(239, 231, 218, 0.85)),
            url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d");
        background-position: center;
        text-align: center;
    }

    .banner-content {
        padding: 40px 20px;
        margin: auto;
    }

    .banner-content h1 {
        font-size: 28px;
    }
}





.company-info {
    background: #ffffff;
    padding: 40px 20px;
    border-top: 1px solid #eee;
}

.info-box {
    max-width: 1100px;
    margin: auto;
    font-size: 14px;
    color: #333;
    line-height: 1.8;
}

.info-box h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
    text-transform: uppercase;
}

.info-box p {
    margin-bottom: 12px;
}

.info-box a {
    color: #1a73e8;
    text-decoration: none;
}

.info-box a:hover {
    text-decoration: underline;
}

/* Tablet */
@media (max-width: 991px) {
    .info-box {
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .company-info {
        padding: 30px 15px;
    }

    .info-box {
        font-size: 13px;
        text-align: left;
    }

    .info-box h3 {
        font-size: 14px;
    }
}







.sales-team {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.sales-team h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.sales-team .line {
    width: 40px;
    height: 3px;
    background: #f0b400;
    display: inline-block;
    margin-bottom: 40px;
}

.team-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    font-size: 14px;
    color: #333;
}

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.team-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.team-card .phone {
    font-weight: 600;
    margin-bottom: 10px;
}

.team-card p {
    margin: 4px 0;
}

/* Tablet */
@media (max-width: 991px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sales-team h2 {
        font-size: 22px;
    }
}







.after-sale {
    background: #fff;
    font-size: 14px;
    color: #222;
}

/* Top white area */
.after-sale-top {
    max-width: 1200px;
    margin: auto;
    padding: 30px 20px;
}

.after-sale-top h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.after-sale-top p {
    line-height: 1.8;
    color: #444;
}

.after-sale-top span {
    margin: 0 6px;
    color: #999;
}

/* Bottom yellow bar */
.after-sale-bottom {
    background: #ffc107;
    padding: 15px 20px;
    text-align: center;
    font-weight: 600;
}

.after-sale-bottom a {
    color: #000;
    text-decoration: none;
}

.after-sale-bottom a:hover {
    text-decoration: underline;
}

/* Tablet */
@media (max-width: 991px) {
    .after-sale-top {
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .after-sale-top p {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .after-sale-top span {
        display: none;
    }

    .after-sale-bottom {
        font-size: 14px;
    }
}




.contact-section {
  padding: 80px 0;
  background: #f8f8f8;
  font-family: Arial, sans-serif;
}

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* FORM BOX */
.contact-form-box {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-title {
  font-size: 28px;
  font-weight: bold;
}

.contact-description {
  color: #666;
  margin-bottom: 20px;
}

/* FORM STYLE */
.form-group-container {
  display: grid;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 14px;
  margin-bottom: 5px;
}

.form-input,
.form-textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  width: 100%;
}

.form-textarea {
  min-height: 120px;
}

.form-submit {
  width: 100%;
  margin-top: 15px;
  background: #f5b400;
  color: #000;
  border: none;
  padding: 12px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

.form-submit:hover {
  background: #000;
  color: #fff;
}

/* MAP */
.contact-map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-map iframe {
    height: 300px;
  }
}
