.about-banner {
  width: 100%;
  height: 420px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgb(144 110 12 / 0.32),
    rgb(237 206 23 / 0.12)
  );
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.banner-content h1 {
  font-size: 72px;
  color: #fff;
  font-weight: 700;
  margin-top: 10px;
  text-shadow: 0 10px 25px rgb(0 0 0 / 0.25);
}

.banner-subtitle {
  color: #fff7cf;
  font-size: 15px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
}

@media (max-width: 768px) {
  .about-banner {
    height: 320px;
  }

  .banner-content h1 {
    font-size: 48px;
  }

  .banner-subtitle {
    font-size: 13px;
    letter-spacing: 3px;
  }
}

@media (max-width: 520px) {
  .about-banner {
    height: 270px;
  }

  .banner-content h1 {
    font-size: 38px;
  }

  .banner-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
  }
}

/*  */
/* =========================
   CONTACT SECTION
========================= */

.contact-section {
  width: 100%;

  padding: 70px 20px;

  background: #fffdf7;

  overflow: hidden;
}

/* =========================
   CONTAINER
========================= */

.contact-container {
  max-width: 1300px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 50px;

  align-items: start;
}

/* =========================
   LEFT SIDE
========================= */

.contact-subtitle {
  color: #edce17;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 4px;

  margin-bottom: 15px;
}

.contact-info h2 {
  font-size: 48px;

  color: #906e0c;

  line-height: 1.2;

  margin-bottom: 20px;
}

.contact-text {
  color: #666;

  line-height: 1.9;

  margin-bottom: 35px;
}

/* =========================
   CONTACT BOX
========================= */

.contact-box {
  display: flex;

  align-items: flex-start;

  gap: 18px;

  background: white;

  padding: 22px;

  border-radius: 22px;

  margin-bottom: 22px;

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);

  border: 1px solid rgba(237, 206, 23, 0.2);
}

.contact-icon {
  min-width: 55px;
  height: 55px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: linear-gradient(135deg, #906e0c, #edce17);

  color: white;

  font-size: 22px;
}

.contact-box h3 {
  color: #906e0c;

  margin-bottom: 8px;

  font-size: 20px;
}

.contact-box p {
  color: #666;

  line-height: 1.8;

  font-size: 15px;
}

/* =========================
   FORM
========================= */

.contact-form-box {
  background: white;

  padding: 40px;

  border-radius: 30px;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);

  border: 1px solid rgba(237, 206, 23, 0.18);
}

.contact-form {
  display: flex;

  flex-direction: column;

  gap: 22px;
}

.input-group input,
.input-group textarea {
  width: 100%;

  border: 1px solid rgba(0, 0, 0, 0.1);

  outline: none;

  padding: 16px 18px;

  border-radius: 14px;

  font-size: 15px;

  font-family: inherit;

  transition: 0.3s;
}

.input-group textarea {
  height: 160px;

  resize: none;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #edce17;

  box-shadow: 0 0 0 4px rgba(237, 206, 23, 0.15);
}

/* =========================
   BUTTON
========================= */

.contact-form button {
  border: none;

  background: linear-gradient(135deg, #906e0c, #edce17);

  color: white;

  padding: 16px;

  border-radius: 14px;

  font-size: 16px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.3s;
}

.contact-form button:hover {
  transform: translateY(-3px);
}

/* =========================
   MAP
========================= */

.map-container {
  max-width: 1300px;

  margin: 55px auto 0;

  border-radius: 30px;

  overflow: hidden;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
  width: 100%;

  height: 420px;

  border: none;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 55px 16px;
  }

  .contact-info h2 {
    font-size: 36px;
  }

  .contact-form-box {
    padding: 28px;
  }

  .map-container iframe {
    height: 320px;
  }
}

@media (max-width: 520px) {
  .contact-info h2 {
    font-size: 28px;
  }

  .contact-box {
    padding: 18px;
  }

  .contact-form-box {
    padding: 22px;

    border-radius: 24px;
  }
}
