/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #f5f5f5 !important;
  padding-top: 90px; /* 🔥 navbar overlap fix */
  overflow-x: hidden; /* 🔥 prevent horizontal scroll */
  width: 100%;
}

html {
  overflow-x: hidden;
  width: 100%;
}

/* ================= SECTION ================= */
.contact-section {
  padding: 40px 0;
  background: #f5f7f6;
}

/* HEADER */
.contact-header {
  max-width: 1250px;
  margin: 0 auto 30px;
  padding: 0 20px;

  display: flex;
  justify-content: space-between;
  align-items: center; /* 🔥 vertical align fix */
}

.contact-header h1 {
  font-size: 32px;
  font-weight: 700;
}

.contact-header p {
  font-size: 14px;
  color: #000000;
  line-height: 1.6;
  text-align: right;
  max-width: 400px;
}

/* MAIN BOX */
.contact-box {
  max-width: 1250px;
  margin: auto;

  display: flex;
  border-radius: 18px;
  overflow: hidden;
  font-family: "Blauer Neue", sans-serif;
  background: #e6e6e6;
  min-height: 350px !important;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* 🔥 premium feel */
}

/* LEFT */
.contact-left {
  flex: 1;
}

.contact-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT */
.contact-right {
  flex: 1;
  padding: 20px;
  background: #dcdcdc;

  display: flex;
  flex-direction: column;
  justify-content: center; /* 🔥 center content */
}

/* TEXT */
.contact-right h3 {
  font-size: 21px;
  margin-bottom: 20px;
  line-height: 1.5;
  color: #222;
}

.contact-right h3 span {
  color: #0bbf9a;
  font-weight: 600;
}

/* FORM */
.input-group {
  margin-bottom: 12px;
}

.input-group label {
  font-size: 11px;
  margin-bottom: 4px;
  display: block;
  color: #333;
}

/* INPUT */
.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 10px 12px;

  border-radius: 8px;
  border: 1px solid transparent;

  background: #f1f1f1;
  font-size: 13px;

  transition: all 0.2s ease;
}

/* HOVER + FOCUS */
.input-group input:hover,
.input-group select:hover,
.input-group textarea:hover {
  background: #eaeaea;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  background: #fff;
  border: 1px solid #0bbf9a;
  outline: none;
}

/* NAME ROW */
.flex {
  display: flex;
  gap: 10px;
}

/* TEXTAREA */
textarea {
  height: 80px;
  resize: none;
}

/* BUTTON */
.submit-btn {
  width: 100%;
  margin-top: 10px;

  padding: 12px;
  border-radius: 8px;
  border: none;

  background: linear-gradient(135deg, #0bbf9a, #0a9f85);
  color: #fff;

  font-size: 14px;
  font-weight: 600;

  cursor: pointer;
  transition: 0.3s;
}

/* HOVER EFFECT */
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(11, 191, 154, 0.3);
}

/* DISABLED */
.submit-btn:disabled {
  background: #bfbfbf;
  cursor: not-allowed;
  box-shadow: none;
}

/* ================= MOBILE ================= */
@media (max-width: 992px) {
  .contact-section {
    padding: 40px 15px;
  }

  .contact-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    margin-bottom: 30px;
    padding: 0 10px;
    margin-top: 10px;
  }

  .contact-header h1 {
    font-size: clamp(24px, 6vw, 32px);
    text-align: center;
  }

  .contact-header p {
    text-align: center;
    font-size: 14px;
    margin: 0 auto;
  }

  .contact-box {
    flex-direction: column;
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
    min-height: auto !important;
  }

  .contact-left {
    height: 250px;
    width: 100%;
  }

  .contact-right {
    padding: 30px 20px;
    width: 100%;
  }

  .contact-right h3 {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .flex {
    flex-direction: column;
    gap: 12px;
  }

  /* NAVBAR FIXES */
  .custom-nav .btn-contact {
    padding: 10px 16px;
    font-size: 14px;
  }

  .logo img {
    height: 32px;
  }

  .logo-name {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 30px 10px;
  }

  .contact-header h1 {
    font-size: 22px;
  }

  .contact-left {
    height: 200px;
  }

  .contact-right {
    padding: 25px 15px;
  }

  .submit-btn {
    padding: 14px;
    font-size: 16px;
  }
}

.form-result {
  margin-top: 15px;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
}
