:root {
  --navy: #18392b;
  --navy2: #295243;
  --gold: #c2a878;
  --gold2: #e3d5b8;
  --white: #fefcf8;
  --beige: #f5f1e8;
  --muted: #6f746d;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--navy2);
  font-family: "Inter", sans-serif;
}

/* NAV SPACE */
.nav-hai {
  height: 90px;
  width: 100%;
  background: var(--navy);
}

/* CONTACT SECTION */
.contact-info {
  width: 100%;
  padding: 80px 0;
}

.container-con {
  width: min(1400px, 95%);
  margin: auto;
  display: flex;
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* LEFT + RIGHT BOX */

.box1-co,
.box2 {
  width: 50%;
  padding: 40px;
}

.box1-co {
  background: var(--navy);
  color: white;
}

.box2 {
  background: #fff;
}

/* HEADINGS */

.box1-co h3,
.box2 h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 25px;
}

.box1-co h3 {
  color: var(--gold);
}

.box2 h2 {
  color: var(--navy);
}

/* CONTACT DETAILS */

.box1-co p {
  margin: 20px 0;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.box1-co i {
  font-size: 22px;
  color: var(--gold);
}

.box1-co a {
  color: white;
  text-decoration: none;
}

.box1-co a:hover {
  color: var(--gold);
}

.box1-co iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 12px;
  margin-top: 15px;
}

/* FORM */

form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

/* INPUT */

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 15px;

  border: 1px solid #ddd;
  border-radius: 10px;

  outline: none;

  font-size: 15px;
  font-family: inherit;

  background: white;

  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);

  box-shadow: 0 0 0 4px rgba(194, 168, 120, 0.18);
}

.form-group select {
  padding: 0.7rem 0.8rem;
}

.form-group textarea {
  min-height: 50px;
  resize: none;
}

/* SELECT */

.ah-select-wrap {
  width: 100%;
}

select {
  cursor: pointer;
  appearance: auto;
}

/* OTP */

.otp-area {
  display: flex;
  gap: 15px;
}

.verify-btn {
  width: 140px;

  border: none;
  border-radius: 10px;

  background: var(--navy2);

  color: white;

  font-weight: 600;

  cursor: pointer;

  transition: 0.3s;
}

.verify-btn:hover {
  background: var(--gold);

  color: #111;
}

/* OTP MESSAGE */

#otpStatus {
  margin-top: 8px;

  font-size: 14px;
}

/* SUBMIT BUTTON */

.submit-btn {
  width: 100%;

  padding: 15px;

  border: none;

  border-radius: 10px;

  background: var(--navy);

  color: white;

  font-size: 16px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.3s;
}

.submit-btn:hover {
  background: var(--gold);

  color: #111;

  transform: translateY(-2px);
}

/* ======================
      RESPONSIVE
====================== */

@media (max-width: 980px) {
  .container-con {
    flex-direction: column;
  }

  .box1-co,
  .box2 {
    width: 100%;
  }

  .contact-info {
    padding: 50px 0;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .otp-area {
    flex-direction: column;
  }

  .verify-btn {
    width: 100%;
    height: 50px;
  }

  .box1-co,
  .box2 {
    padding: 25px 20px;
  }

  .box1-co h3,
  .box2 h2 {
    font-size: 25px;
  }
}

@media (max-width: 520px) {
  .nav-hai {
    height: 75px;
  }

  .contact-info {
    padding: 25px 0;
  }

  .container-con {
    width: calc(100% - 24px);

    border-radius: 15px;
  }

  .box1-co iframe {
    height: 220px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px;
  }
}
