/* ============================================
   CONTACT PAGE
============================================ */
/* Contact Page Hero */
.page-hero {
  background-image: url('../images/banner2-about.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /* background:
    radial-gradient(circle at left center,
      rgba(18, 42, 82, 0.9) 0%,
      rgba(10, 26, 56, 0) 45%),
    radial-gradient(circle at right center,
      rgba(47, 111, 240, 0.22) 0%,
      rgba(10, 26, 56, 0) 45%),
    var(--navy-900); */
  min-height: 380px;
  display: flex;
  align-items: center;
  color: #fff;
}

.page-hero .wrap {
  width: 100%;
}

.text-center {
  text-align: center;
}


/* ============================================
   CONTACT INFORMATION SECTION
============================================ */

.contact-info-section {
  padding: 20px 0 50px;
  background: #fff;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

/* ============================================
   CONTACT DETAILS
============================================ */

.contact-details {
  padding-top: 10px;
}

.contact-details h2 {
  margin: 0 0 50px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  font-weight: 700;
  color: var(--navy-950);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 38px;
}

.info-item>i {
  flex: 0 0 36px;
  width: 36px;
  margin-top: 3px;
  text-align: center;
  font-size: 1.8rem;
  color: #1595f5;
}

.info-item h4 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--navy-900);
}

.info-item p {
  margin: 0;
  color: #777;
  font-size: 0.95rem;
  line-height: 1.65;
}

.info-item .appointment {
  margin-top: 8px;
  color: #777;
  font-size: 0.88rem;
}

.info-item a {
  display: inline-block;
  margin: 0;
  color: #1595f5;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
}

.info-item a:hover {
  color: var(--navy-900);
}


/* ============================================
   SOCIAL ICONS
============================================ */

.contact-details h3 {
  margin: 45px 0 18px 58px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-900);
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 58px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #1595f5;
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.social-icons a i {
  font-size: 2rem;
}

.social-icons a:hover {
  color: var(--navy-900);
  transform: translateY(-2px);
}


/* ============================================
   MAP
============================================ */

.contact-map {
  width: 100%;
  min-height: 520px;
  overflow: hidden;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
}


/* ============================================
   CONTACT FORM SECTION
============================================ */

.contact-form-section {
  position: relative;
  padding: 80px 0 100px;
  background: #fff;
  overflow: hidden;
}



/* ============================================
   FORM HEADING
============================================ */

.form-heading {
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
}

.form-heading h2 {
  margin: 0 0 15px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--navy-950);
}

.form-heading p {
  max-width: 760px;
  margin: 0 auto;

  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;

  color: #777;
}

/* ============================================
   FORM GRID
============================================ */

.contact-form-section .contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  align-items: start;
}

/* ============================================
   FORM IMAGE
============================================ */

.contact-image {
  width: 100%;
  overflow: hidden;
}

.contact-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}


/* ============================================
   FORM WRAPPER
============================================ */

.contact-form-wrap {
  width: 100%;
  max-width: 700px;
}


/* ============================================
   FORM
============================================ */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.form-row label {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: #666;
}


.form-row .optional {
  color: #888;
  font-weight: 400;
  font-size: 0.82rem;
}

.form-row input,
.form-row textarea {
  display: block;

  width: 100%;

  box-sizing: border-box;

  padding: 12px 14px;

  font-family: var(--font-body);
  font-size: 0.95rem;

  color: var(--ink);

  background: #fff;

  border: 1px solid #ccc;
  border-radius: 2px;

  outline: none;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-row input {
  height: 46px;
}

.form-row textarea {
  min-height: 170px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: #1595f5;
  box-shadow: 0 0 0 2px rgba(21, 149, 245, 0.12);
}

/* Required red left line */

.form-row input.required-field {
  border-left: 4px solid #ed1c24;
}

/* ============================================
   INFO ICON
============================================ */

.info-icon {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 14px;
  height: 14px;

  margin-left: 3px;

  border-radius: 50%;

  font-size: 9px;
  font-weight: 700;

  color: #fff;
  background: #999;

  vertical-align: 2px;
}

/* ============================================
   SUBMIT BUTTON
============================================ */

.contact-form .btn {
  align-self: flex-start;
  margin-top: 8px;
  padding: 12px 28px;
}


/* ============================================
   FORM NOTICES
============================================ */

.form-notice {
  margin-bottom: 22px;
  padding: 15px 18px;
  border-radius: 4px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-notice--success {
  color: #1d6d37;
  background: #ebf7ee;
  border: 1px solid #bfe2c6;
}

.form-notice--error {
  color: #a32626;
  background: #fdeeee;
  border: 1px solid #f3c3c3;
}

.form-notice ul {
  margin: 0;
  padding-left: 18px;
}

/* ============================================
   SUPPORT REQUEST PAGE
============================================ */

.support-request-section {
  padding: 80px 0 100px;
  background: #fff;
}


/* ============================================
   HEADING
============================================ */

.support-heading {
  max-width: 850px;
  margin: 0 auto 60px;
  text-align: center;
}

.support-heading h1 {
  margin: 0 0 12px;

  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;

  color: var(--navy-950);
}

.support-heading p {
  margin: 0;

  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;

  color: var(--slate-600);
}


/* ============================================
   FORM WRAPPER
============================================ */

.support-form-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.support-form {
  width: 100%;
}


/* ============================================
   FORM ROW
============================================ */

.support-form-row {
  display: grid;
  grid-template-columns: 230px 1fr;

  gap: 20px;

  align-items: center;

  margin-bottom: 18px;
}


/* ============================================
   LABEL
============================================ */

.support-form-row label {
  text-align: right;

  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;

  color: var(--slate-600);
}

.support-form-row .required {
  color: #e73b3b;
}


/* ============================================
   INPUTS
============================================ */

.support-form-row input,
.support-form-row textarea {
  width: 100%;
  box-sizing: border-box;

  font-family: var(--font-body);
  font-size: 0.9rem;

  color: var(--ink);

  background: #fff;

  border: 1px solid #cfd4dc;
  border-radius: 2px;

  outline: none;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.support-form-row input {
  height: 42px;
  padding: 10px 12px;
}

.support-form-row textarea {
  min-height: 150px;
  padding: 12px;

  line-height: 1.5;

  resize: vertical;
}


/* Focus */

.support-form-row input:focus,
.support-form-row textarea:focus {
  border-color: #1595f5;

  box-shadow:
    0 0 0 2px rgba(21, 149, 245, 0.1);
}


/* ============================================
   TEXTAREA
============================================ */

.textarea-row {
  align-items: start;
}

.textarea-row label {
  padding-top: 10px;
}

.support-field {
  width: 100%;
}


/* ============================================
   CHARACTER COUNTER
============================================ */

.character-count {
  display: block;
  margin-top: 4px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: #75a4ff;
}


/* ============================================
   CAPTCHA
============================================ */

.support-captcha {
  margin-top: 30px;
  margin-bottom: 20px;
}

.captcha-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 200px;
  height: 70px;

  border: 1px solid #ddd;

  background: #fafafa;

  color: #777;

  font-size: 0.8rem;
}


/* ============================================
   BUTTONS
============================================ */

.support-actions {
  display: flex;

  gap: 10px;

  margin-left: 250px;
}

.support-actions .btn {
  padding: 11px 22px;

  border: none;
  border-radius: 2px;

  font-family: var(--font-body);
  font-size: 0.85rem;

  cursor: pointer;
}

.support-actions .btn i {
  margin-left: 7px;
}

.support-cancel {
  color: #888;
  background: #f5f5f5;
}

.support-cancel:hover {
  background: #e9e9e9;
}


/* ============================================
   TABLET
============================================ */

@media (max-width: 800px) {

  .support-request-section {
    padding: 60px 0 80px;
  }

  .support-form-wrap {
    max-width: 650px;
  }

  .support-form-row {
    grid-template-columns: 180px 1fr;
  }

  .support-captcha,
  .support-actions {
    margin-left: 200px;
  }

}


/* ============================================
   MOBILE
============================================ */

@media (max-width: 600px) {

  .support-request-section {
    padding: 45px 0 60px;
  }

  .support-heading {
    margin-bottom: 40px;
  }

  .support-heading h1 {
    font-size: 1.8rem;
  }

  .support-heading p {
    font-size: 0.85rem;
  }

  .support-form-row {
    display: flex;
    flex-direction: column;

    gap: 7px;

    align-items: stretch;

    margin-bottom: 18px;
  }

  .support-form-row label {
    text-align: left;
  }

  .textarea-row label {
    padding-top: 0;
  }

  .support-form-row input {
    height: 44px;
  }

  .support-form-row textarea {
    min-height: 135px;
  }

  .support-captcha {
    margin-left: 0;
    margin-top: 25px;
  }

  .support-actions {
    margin-left: 0;
  }

  .support-actions .btn {
    flex: 1;
  }

}

/* ============================================
   RESPONSIVE - TABLET
============================================ */

@media (max-width: 900px) {

  .contact-info-section {
    padding: 10px 0 80px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-map {
    min-height: 400px;
  }

  .contact-map iframe {
    height: 400px;
  }

  .contact-form-section {
    padding: 70px 0 80px;
  }

  .contact-form-section .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .contact-image {
    max-width: 600px;
    margin: 0 auto;
  }
}


/* ============================================
   RESPONSIVE - MOBILE
============================================ */

@media (max-width: 600px) {

  .contact-info-section {
    padding: 15px 0 60px;
  }

  .contact-info-grid {
    gap: 35px;
  }

  .contact-details h2 {
    margin-bottom: 35px;
    font-size: 1.8rem;
  }

  .info-item {
    gap: 16px;
    margin-bottom: 30px;
  }

  .info-item>i {
    flex-basis: 30px;
    width: 30px;
    font-size: 1.4rem;
  }

  .info-item h4 {
    font-size: 0.92rem;
  }

  .info-item p,
  .info-item a {
    font-size: 0.88rem;
  }

  .contact-details h3 {
    margin-left: 46px;
    margin-top: 35px;
    font-size: 0.95rem;
  }

  .social-icons {
    margin-left: 46px;
  }

  .social-icons a {
    width: 36px;
    height: 36px;
  }

  .social-icons a i {
    font-size: 1.7rem;
  }

  .contact-map {
    min-height: 300px;
  }

  .contact-map iframe {
    height: 300px;
  }

  .contact-form-section {
    padding: 55px 0 65px;
  }

  .form-heading {
    margin-bottom: 40px;
  }

  .form-heading h2 {
    font-size: 1.8rem;
  }

  .form-heading p {
    font-size: 0.85rem;
  }

  .contact-form-section .contact-grid {
    gap: 35px;
  }

  .form-row input {
    height: 44px;
  }

  .form-row textarea {
    min-height: 140px;
  }

  .contact-form .btn {
    width: 100%;
  }
}