/**======================
 * CONTACT HEADER STYLES
 =======================*/
.contact__header {
  padding: 0;
  min-height: 30vh;
  background: linear-gradient(
    to top left,
    rgba(62, 82, 67, 0.95) 0%,
    rgba(62, 82, 67, 0.8) 20%,
    rgba(212, 168, 43, 0.3) 45%,
    rgba(212, 168, 43, 0.1) 65%,
    var(--color-light) 100%
  );
}

.contact__header .section__chapter {
  align-items: center;
  justify-content: center;
}

.contact__main {
  padding: 0;
  min-height: 100vh;
}

.contact__container {
  width: 100%;
  margin: 0 auto;
  max-width: 160rem;
  padding: clamp(6rem, 8vw, 8rem) clamp(2rem, 4vw, 4rem);
}

.contact__grid {
  display: grid;
  min-height: 80vh;
  gap: clamp(4rem, 6vw, 6rem);
  grid-template-columns: 40% 60%;
}

/**=========================
 * CONTACT EDITORIAL STYLES
 ==========================*/
.contact__editorial {
  height: 145vh;
  display: flex;
  position: relative;
  flex-direction: column;
  background: transparent;
  padding-right: clamp(2rem, 4vw, 4rem);
  border-right: 2px solid var(--color-secondary);
}

.contact__editorial::before {
  top: 10%;
  right: -5%;
  content: "";
  width: 15rem;
  opacity: 0.2;
  height: 15rem;
  position: absolute;
  transform: rotate(25deg);
  background-image: url("/assets/images/logos/logo-1.png");
  background-size: contain;
  background-repeat: no-repeat;
}

/**============================
* EDITORIAL HEADER STYLES
=============================*/
.contact__editorial-header {
  margin-bottom: clamp(4rem, 6vw, 6rem);
}

.contact__editorial-meta {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 3vw, 3rem);
  margin-bottom: clamp(2rem, 3vw, 3rem);
  padding-bottom: clamp(1.5rem, 2vw, 2rem);
  border-bottom: 1px solid rgba(212, 168, 43, 0.3);
}

.contact__editorial-label {
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-secondary);
  font-size: clamp(1.4rem, 1.6vw, 1.5rem);
}

.contact__editorial-number {
  font-weight: 800;
  line-height: 0.8;
  color: var(--color-secondary);
  font-size: clamp(3rem, 4vw, 4.5rem);
}

.contact__editorial-headline {
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  font-size: clamp(3.2rem, 5vw, 5.6rem);
}

/**=========================
* EDITORIAL CONTENT STYLES
==========================*/
.contact__editorial-content {
  display: grid;
  gap: clamp(3rem, 4vw, 4rem);
}

.contact__editorial-intro {
  padding-bottom: clamp(2rem, 3vw, 3rem);
  border-bottom: 1px solid rgba(212, 168, 43, 0.2);
}

.contact__editorial-intro p {
  margin: 0;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-gray);
  font-size: clamp(1.8rem, 2.2vw, 2rem);
}

/**=========================
 * CONTACT INFO GRID STYLES
 ==========================*/
.contact__info-grid {
  display: grid;
  gap: clamp(2.5rem, 3vw, 3rem);
}

.contact__info-block {
  position: relative;
  padding-left: clamp(1.5rem, 2vw, 2rem);
}

.contact__info-block::before {
  top: 0;
  left: 0;
  width: 3px;
  content: "";
  height: 60%;
  position: absolute;
  background: linear-gradient(to bottom, var(--color-secondary), transparent);
}

.contact__info-category {
  display: block;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-secondary);
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
}

.contact__info-content {
  gap: 0.5rem;
  display: grid;
}

.contact__info-content p {
  margin: 0;
  line-height: 1.4;
  color: var(--color-gray);
  font-size: clamp(1.5rem, 1.7vw, 1.6rem);
}

.contact__info-content a {
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  color: var(--color-primary);
}

.contact__info-content a:hover {
  transform: translateX(3px);
  color: var(--color-secondary);
}

/**======================
 * EDITORIAL QUOTE STYLES
 =======================*/
.contact__editorial-quote {
  text-align: center;
  border-radius: 0 3rem 0 3rem;
  background: var(--color-primary);
  padding: clamp(2.5rem, 3vw, 3rem);
  margin-top: clamp(2rem, 3vw, 3rem);
}

.contact__editorial-quote blockquote {
  margin: 0 0 1.5rem;
  font-weight: 300;
  line-height: 1.3;
  font-style: italic;
  color: var(--color-white);
  font-size: clamp(1.8rem, 2.2vw, 2rem);
}

.contact__editorial-quote cite {
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-secondary);
  font-size: clamp(1.3rem, 1.5vw, 1.4rem);
}

/**=====================
* FORM SECTION STYLES
 ======================*/
.contact__form-section {
  padding-left: clamp(2rem, 4vw, 4rem);
}

.contact__form-header {
  margin-bottom: clamp(3rem, 4vw, 4rem);
  padding-bottom: clamp(2rem, 3vw, 3rem);
  border-bottom: 2px solid var(--color-secondary);
}

.contact__form-header h2 {
  font-weight: 600;
  margin: 0 0 1.5rem;
  color: var(--color-primary);
  font-size: clamp(2.4rem, 3vw, 3.2rem);
}

.contact__form-header p {
  margin: 0;
  line-height: 1.5;
  color: var(--color-gray);
  font-size: clamp(1.6rem, 1.8vw, 1.7rem);
}

/**====================
 * BREAKPOINT STYLES
 =====================*/
@media (max-width: 1200px) {
  .contact__grid {
    gap: clamp(1rem, 4vw, 4rem);
    grid-template-columns: 45% 55%;
  }
}

@media (max-width: 992px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact__editorial {
    padding-right: 0;
    border-right: none;
    padding-bottom: clamp(1rem, 4vw, 4rem);
    border-bottom: 2px solid var(--color-secondary);
  }

  .contact__editorial::before {
    display: none;
  }

  .contact__editorial-meta {
    justify-content: space-between;
  }

  .contact__form-section {
    padding-left: 0;
  }

  .contact__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact__container {
    padding: clamp(1rem, 6vw, 6rem) clamp(2rem, 3vw, 3rem);
  }

  .contact__fieldset {
    padding: clamp(2rem, 3vw, 3rem);
    border-radius: 1.5rem 0 1.5rem 0;
  }

  .contact__editorial-meta {
    gap: 1rem;
    align-items: center;
  }

  .contact__editorial-quote {
    border-radius: 0 2rem 0 2rem;
    padding: clamp(2rem, 2.5vw, 2.5rem);
  }
}

@media (max-width: 480px) {
  .contact__header .section__chapter {
    padding-bottom: 0;
    flex-direction: column;
  }

  .contact__header {
    min-height: 10vh;
  }

  .contact__main {
    background: var(--color-white);
  }

  .contact__info-block {
    padding-left: clamp(1rem, 1.5vw, 1.5rem);
  }

  .contact__editorial-quote {
    border-radius: 0 1.5rem 0 1.5rem;
  }
}
