/* =========================
   		SECTION - 1
========================= */

/* ====================================
   Service HERO
==================================== */

.contact-sec-1-section {
  position: relative;
  overflow: hidden;

  height: 400px;

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

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

  overflow: hidden;
}

.contact-sec-1-parallax-img {
  position: absolute;

  top: -15%;
  left: 0;

  width: 100%;
  height: 130%;

  object-fit: cover;

  will-change: transform;
}

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

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

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

  max-width: 1500px;
  width: 90%;

  padding: 0 40px;
}

.contact-sec-1-content {
  text-align: center;
}

/* TITLE */

.contact-sec-1-title {
  color: #ffffff;

  font-size: 56px;
  font-weight: 700;

  line-height: 1.1;

  margin-bottom: 20px;
  font-family: var(--secondary-font);
}

/* BREADCRUMB */

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

  gap: 12px;

  color: #ffffff;

  font-size: 18px;
  font-weight: 500;
}

.contact-sec-1-breadcrumb a {
  color: #ffffff;

  text-decoration: none;

  transition: 0.3s;
}

.contact-sec-1-breadcrumb a:hover {
  color: #facc15;
}

.contact-sec-1-breadcrumb span:last-child {
  color: #facc15;
}

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

@media (max-width: 1200px) {
  .contact-sec-1-section {
    height: 500px;
  }

  .contact-sec-1-title {
    font-size: 52px;
  }
}

@media (max-width: 992px) {
  .contact-sec-1-section {
    height: 450px;
  }

  .contact-sec-1-title {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .contact-sec-1-section {
    height: 400px;
  }

  .contact-sec-1-container {
    padding: 0 24px;
  }

  .contact-sec-1-title {
    font-size: 40px;
  }

  .contact-sec-1-breadcrumb {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .contact-sec-1-section {
    height: 340px;
  }

  .contact-sec-1-title {
    font-size: 34px;
  }

  .contact-sec-1-breadcrumb {
    gap: 8px;
    font-size: 14px;
  }
}



/* =========================
   		SECTION - 2
========================= */
.contact-sec-2-section {
  padding: 120px 0;
  background: #ffffff;
}

.contact-sec-2-container {
  width: 90%;
  max-width: 1500px;
  margin: auto;
  padding: 0 40px;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}

.contact-sec-2-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;

  margin-bottom: 24px;
}

.contact-sec-2-tag::before {
  content: "";

  width: 8px;
  height: 8px;

  background: #facc15;
}

.contact-sec-2-title {
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 12px;
  font-family: var(--secondary-font);
  color: #111827;
}

.contact-sec-2-description {
  font-size: 18px;
  line-height: 1.8;
  color: #64748b;

  margin-bottom: 20px;
}

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

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

  padding: 35px 0;

  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.contact-sec-2-info-item:last-child {
  border-bottom: none;
}

.contact-sec-2-info-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  min-height: 58px;

  background: #facc15;

  border-radius: 4px;

  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s ease;
}

.contact-sec-2-info-icon svg {
  width: 28px;
  height: 28px;
  fill: #111827;
  transition: all 0.6s ease;
}

.contact-sec-2-info-item:hover .contact-sec-2-info-icon svg {
  fill: #ffffff;
}

.contact-sec-2-info-item:hover .contact-sec-2-info-icon {
  background: #111827;
}

.contact-sec-2-info-title {
  font-size: 20px;
  margin-bottom: 8px;
  font-family: var(--secondary-font);
  color: #111827;
}

.contact-sec-2-info-text {
  color: #666666;
  line-height: 1.7;
  text-decoration: none;
  transition: all 0.6s ease;
}

a.contact-sec-2-info-text:hover {
  color: #facc15;
}

.contact-sec-2-right {
  background: #f5f5f5;
  padding: 55px;
  border-radius: 8px;
}

.contact-sec-2-form-title {
  font-size: 42px;
  margin-bottom: 14px;
  font-family: var(--secondary-font);
}

.contact-sec-2-form-description {
  color: #666666;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.6;
}

.contact-sec-2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

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

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

  border: 1px solid transparent;

  background: #ffffff;

  border-radius: 8px;

  padding: 18px 20px;

  font-size: 16px;

  outline: none;

  transition: 0.3s;
}

.contact-sec-2-field textarea {
  min-height: 180px;
  resize: vertical;
  margin-top: 24px;
}

.contact-sec-2-field input:focus,
.contact-sec-2-field textarea:focus {
  border-color: #facc15;
}

.contact-sec-2-error {
  color: #ef4444;
  font-size: 13px;
  margin-top: 6px;
  min-height: 18px;
}

.contact-sec-2-button {
  margin-top: 20px;

  height: 58px;

  padding: 0 32px;

  border: none;

  border-radius: 8px;

  background: #facc15;

  color: #111827;

  font-size: 16px;
  font-weight: 700;
  font-family: var(--secondary-font);

  cursor: pointer;
}

/* Responsive */

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

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

  .contact-sec-2-title,
  .contact-sec-2-form-title {
    font-size: 36px;
  }

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

  .contact-sec-2-right {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .contact-sec-2-title,
  .contact-sec-2-form-title {
    font-size: 28px;
  }
}
