/* -------------------------------
            Sec - 1
------------------------------- */

.contact-sec-1-hero {
  position: relative;

  min-height: 360px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background: url("../images/sec-1-img-3.jpg") center center / cover no-repeat;
}

/* Overlay */

.contact-sec-1-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55));

  z-index: 1;
}

/* Content */

.contact-sec-1-container {
  position: relative;
  z-index: 2;

  width: 100%;

  max-width: 1400px;

  padding: 0 24px;

  text-align: center;
}

.contact-sec-1-title {
  font-family: var(--secondary-font);

  color: var(--white);

  font-size: clamp(2.25rem, 3vw, 3.5rem);

  line-height: 1.1;

  margin-bottom: 25px;
}

/* Breadcrumb */

.contact-sec-1-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 18px;

  flex-wrap: wrap;
}

.contact-sec-1-breadcrumb b {
  color: var(--primary);
}

.contact-sec-1-breadcrumb a {
  color: var(--white);

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s;
}

.contact-sec-1-breadcrumb a:hover {
  color: var(--primary);
}

.contact-sec-1-breadcrumb span {
  color: var(--white);
}

.contact-sec-1-breadcrumb i {
  color: var(--primary);

  font-size: 14px;
}

.contact-sec-1-current {
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 768px) {
  .contact-sec-1-hero {
    min-height: 330px;
  }

  .contact-sec-1-title {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .contact-sec-1-hero {
    min-height: 260px;
  }

  .contact-sec-1-title {
    font-size: 2.4rem;
  }

  .contact-sec-1-breadcrumb {
    gap: 10px;
  }

  .contact-sec-1-breadcrumb a,
  .contact-sec-1-current {
    font-size: 14px;
  }
}





/* -------------------------------
            Sec - 2
------------------------------- */

.contact-sec-2 {
  position: relative;

  padding: 120px 0 120px;
}

.contact-sec-2-container {
  position: relative;
  z-index: 3;

  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 80px;
  padding: 0 24px;
}

.contact-sec-2-grid {
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 60px;
  align-items: center;
}

/* ==========================
   LEFT
========================== */

.contact-sec-2-subtitle {
  display: inline-block;

  color: var(--primary);

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

  margin-bottom: 20px;
}

.contact-sec-2-title {
  font-family: var(--secondary-font);

  font-size: clamp(2rem, 3vw, 3rem);

  line-height: 1.1;

  margin-bottom: 30px;

  color: var(--black);
}

.contact-sec-2-description {
  color: #687686;

  font-size: 14px;
  line-height: 1.4;

  margin-bottom: 45px;
}

/* ==========================
   CONTACT INFO
========================== */

.contact-sec-2-info {
  display: flex;
  gap: 40px;

  padding-bottom: 35px;

  border-bottom: 1px solid rgba(0, 0, 0, 0.08);

  margin-bottom: 35px;
}

.contact-sec-2-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-sec-2-icon {
  width: 60px;
  height: 60px;

  flex-shrink: 0;

  border-radius: 50%;

  background: var(--primary);

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--white);

  font-size: 28px;
}

.contact-sec-2-info-item h4 {
  font-family: var(--secondary-font);

  font-size: 1.25rem;

  margin-bottom: 4px;
}

.contact-sec-2-info-item p {
  color: #687686;
}

/* ==========================
   SOCIAL
========================== */

.contact-sec-2-social-wrapper {
  display: flex;
  align-items: center;
  gap: 25px;

  flex-wrap: wrap;
}

.contact-sec-2-social-title {
  font-family: var(--secondary-font);

  font-size: 1.25rem;

  color: var(--black);
}

.contact-sec-2-social {
  display: flex;
  gap: 14px;
}

.contact-sec-2-social a {
  width: 40px;
  height: 40px;

  border-radius: 50%;

  background: var(--primary);

  color: var(--white);

  text-decoration: none;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s;
}

.contact-sec-2-social a:hover {
  background: var(--primary-dark);

  transform: translateY(-3px);
}

.contact-sec-2-social a svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
}

/* ==========================
   FORM
========================== */

.contact-sec-2-form-card {
  background: var(--white);

  padding: 40px;

  border-radius: 18px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.contact-sec-2-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-sec-2-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-sec-2-field label {
  display: block;

  margin-bottom: 12px;

  font-weight: 600;

  color: var(--black);
}

.contact-sec-2-field label span {
  color: var(--primary);
}

.contact-sec-2-field input,
.contact-sec-2-field textarea {
  width: 100%;

  border: none;
  outline: none;

  background: #f4f4f4;

  border-radius: 10px;

  padding: 18px 20px;

  font-family: inherit;
}

.contact-sec-2-field textarea {
  resize: none;

  height: 180px;
}

.contact-sec-2-btn {
  height: 62px;

  border: none;

  background: var(--primary);

  color: var(--white);

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

  border-radius: 10px;

  cursor: pointer;

  transition: 0.3s;
}

.contact-sec-2-btn:hover {
  background: var(--primary-dark);
}

/* ==========================
   MAP
========================== */

.contact-sec-2-map {
  height: 500px;

  position: relative;

  z-index: 1;
}

.contact-sec-2-map iframe {
  width: 100%;
  height: 100%;

  border: none;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 1100px) {
  .contact-sec-2-grid {
    grid-template-columns: 1fr;
  }

  .contact-sec-2-form-card {
    max-width: 700px;
  }

  .contact-sec-2-info {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .contact-sec-2 {
    padding: 80px 0 80px;
  }

  .contact-sec-2-title {
    font-size: 2.2rem;
  }

  .contact-sec-2-row {
    grid-template-columns: 1fr;
  }

  .contact-sec-2-form-card {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .contact-sec-2-container {
    padding: 0 20px;
  }

  .contact-sec-2-title {
    font-size: 1.8rem;
  }

  .contact-sec-2-description {
    font-size: 14px;
  }

  .contact-sec-2-social-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-sec-2-icon {
    width: 50px;
    height: 50px;

    font-size: 22px;
  }

  .contact-sec-2-info-item h4 {
    font-size: 1rem;
  }
}
