/* ===============================
   CONTACT SECTION STYLING
   =============================== */
.contact-section {
  padding: 140px 0;
  font-family: "Inter", sans-serif;
}

.page-title {
  font-size: 42px;
  font-weight: 600;
  color: #0c1b3a;
  margin-bottom: 40px;
}

/* Container Layout */
.contact-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.contact-info {
  width: 40%;
  background: #f7f7fa;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 20px #eaeaea;
}

.contact-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0c1b3a;
}

.contact-info p {
  font-size: 15px;
  color: #555;
  line-height: 22px;
  margin-top: 15px;
}

.qr-code {
  width: 90px;
  margin-top: 20px;
  border-radius: 8px;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap:5px;
  margin-top: 25px;
}

.social-icons .icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0c1b3a;
  font-size: 23px;
  transition: 0.3s ease;
}

.social-icons .icon:hover {
  transform: translateY(-3px);
  color: #0073ce;
}

/* ===============================
   FORM STYLING
   =============================== */
.contact-form {
  width: 60%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* Make textarea full width */
.form-grid textarea {
  grid-column: span 2;
  resize: none;
  height: 170px;
}

/* Inputs */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: 0.2s;
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0073ce;
}

/* Submit Button */
/* .submit-btn {
  margin-top: 18px;
  padding: 14px 35px;
  background: var(--theme-color);
  border: none;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
   color: white;
}

.submit-btn:hover {
  background: var(--theme-color-secondary);
} */

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 992px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid textarea {
    grid-column: span 1;
  }
}
