* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.container {
  width: 96%;
  max-width: 1400px;
  margin: auto;
}

/* CONTACT HERO */

.contact-hero {
  position: relative;
  height: 400px;

  background: url("../assets/Contact.png") center/cover no-repeat;

  display: flex;
  align-items: flex-end;
}

/* PURPLE OVERLAY */

.contact-overlay {
  position: absolute;
  inset: 0;

  background: #320242c4;
}

/* TEXT */

.contact-content {
  position: relative;
  padding: 40px 5%;
}

.contact-content h1 {
  color: #ffc107;
  font-size: 42px;
  font-weight: 700;
}

/* MAP */

.map-section {
  width: 100%;
  height: 500px;
  opacity: 1;
}

.map-section iframe {
  width: 100%;
  height: 450px;
  object-fit: cover;
  /* keeps proportions and fills width */
  display: block;
}
/* MAP IMAGE */

.map-image {
  width: 100%;
  height: 100%;
}

/* CONTACT SECTION */

.contact-section {
  background: #ffff;
  padding: 80px 0;
}

.contact-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;

  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* FORM */

.contact-form {
  width: 60%;
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group.full {
  width: 100%;
}

.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #666;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 14px;
  font-size: 14px;
  background: #f8fafc;
}

textarea {
  height: 120px;
  resize: none;
}

/* BUTTON */

.submit-btn {
  margin-top: 15px;
  width: 100%;
  background: #f1b311;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
}

.form-note {
  font-size: 11px;
  color: #777;
  margin-top: 15px;
}

/* RIGHT PANEL */

.contact-info {
  width: 40%;
  padding-top: 20px;
}

.contact-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.divider {
  height: 2px;
  width: 60%;
  background: #f1b311;
  margin-bottom: 25px;
}

.divider.large {
  width: 100%;
  height: 1px;
  background: #ddd;
  margin: 35px 0;
}

/* INFO ITEMS */

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.icon-box {
  width: 40px;
  height: 40px;
  background: #f1b311;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.label {
  font-size: 11px;
  letter-spacing: 1px;
  color: #f1b311;

  margin-bottom: 4px;
}

.value {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

.value.strong {
  font-weight: 600;
}

.time {
  font-size: 12px;
  color: #777;
}

/* CONNECT */

.connect-title {
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: #444;
}

.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #f1b311;
  color: white;

  padding: 10px 18px;
  border-radius: 6px;

  font-size: 13px;
  font-weight: 600;

  cursor: pointer;
  text-decoration: none;
}

.linkedin-btn span {
  background: #fff;
  color: #f1b311;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
}

/* RESPONSIVE DESIGN */

/* Tablet (1024px) */
@media (max-width: 1024px) {
  .contact-hero {
    height: 350px;
  }

  .contact-hero h1 {
    font-size: 38px;
  }

  .contact-container {
    gap: 40px;
  }

  .contact-form {
    padding: 30px;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .contact-info h3 {
    font-size: 22px;
  }
}

/* Mobile (767px) */
@media (max-width: 767px) {
  .contact-hero {
    height: 300px;

    justify-content: center;
  }

  .contact-content {
    padding: 30px 20px;
    text-align: center;
  }

  .contact-hero h1 {
    font-size: 32px;
  }

  .map-section {
    height: 350px;
  }

  .contact-section {
    padding: 60px 0;
  }

  .contact-container {
    flex-direction: column;
    gap: 50px;
    align-items: center;
  }

  .contact-form {
    width: 100%;
    padding: 25px 20px;
  }

  .contact-info {
    width: 100%;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .submit-btn {
    padding: 12px;
  }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 28px;
  }

  .map-section {
    height: 250px;
  }

  .contact-info h3 {
    font-size: 20px;
  }

  .info-item {
    gap: 10px;
  }

  .icon-box {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .value {
    font-size: 13px;
  }
}
