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

.contact-sec-1 {
  padding: 80px 0;
  background: #f8f9fb;
}

.contact-sec-1-container {
  width: calc(100% - 40px);
  max-width: 1400px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 80px;
  align-items: center;
}

/*====================================
            Left
====================================*/

.contact-sec-1-tag {
  display: inline-flex;
  align-items: center;

  padding: 8px 18px;

  background:#1a93ba0f;
  color: var(--primary);

  border-radius: 999px;

  font-size: 0.9rem;
  font-weight: 600;
}

.contact-sec-1-title {
  margin-top: 22px;

  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;

  color: #222;
}

.contact-sec-1-description {
  margin-top: 25px;

  color: #666;
  line-height: 1.9;
  font-size: 1rem;

  max-width: 620px;
}

/*====================================
        Contact Information
====================================*/

.contact-sec-1-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 24px;

  margin-top: 45px;
}

.contact-sec-1-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;

  padding: 24px;

  background: #fff;

  border: 1px solid #ececec;

  border-radius: 18px;

  transition: 0.3s;
}

.contact-sec-1-item:hover {
  transform: translateY(-6px);

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

.contact-sec-1-icon {
  width: 56px;
  height: 56px;

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

  background: #1a93ba0f;

  color: var(--primary);

  border-radius: 16px;

  flex-shrink: 0;

  font-size: 1.3rem;
}

.contact-sec-1-item h4 {
  margin-bottom: 8px;

  font-size: 1.1rem;
  font-weight: 600;

  color: #222;
  transition: 0.3s;
}

.contact-sec-1-item p {
  color: #666;

  line-height: 1.7;
}

.contact-sec-1-item {
  text-decoration: none;
  color: inherit;
}

.contact-sec-1-item:hover h4 {
  color: var(--primary);
}
/*====================================
            Form
====================================*/

.contact-sec-1-right {
  background: #fff;

  padding: 40px;

  border-radius: 24px;

  border: 1px solid #ececec;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

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

.contact-sec-1-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-sec-1-field label {
  color: #222;

  font-weight: 600;

  font-size: 0.95rem;
	
  display: none;
}

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

  padding: 16px 20px;

  border: 1px solid #ddd;

  border-radius: 14px;

  background: #fff;

  font-size: 1rem;

  font-family: inherit;

  transition: 0.3s;

  resize: vertical;
}

.contact-sec-1-field textarea {
  min-height: 160px;
}

.contact-sec-1-field input:focus,
.contact-sec-1-field textarea:focus {
  outline: none;

  border-color: var(--primary);

  box-shadow: 0 0 0 4px #1a93ba0a;
}

/*====================================
            Button
====================================*/

.contact-sec-1-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  width: 100%;
  height: 58px;

  margin-top: 10px;

  border: none;
  border-radius: 14px;

  background: var(--primary);
  color: #fff;

  font-size: 1rem;
  font-weight: 600;

  cursor: pointer;

  transition: 0.3s;
}

.contact-sec-1-btn:hover {
  background: #1684a7;

  transform: translateY(-3px);

  box-shadow: 0 15px 35px #1a93ba47;
}

/*====================================
        Responsive
====================================*/

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

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

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

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

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

@media (max-width: 576px) {
  .contact-sec-1-title {
    font-size: 1.8rem;
  }

  .contact-sec-1-description {
    font-size: 0.95rem;
  }

  .contact-sec-1-item {
    padding: 20px;
  }

  .contact-sec-1-icon {
    width: 48px;
    height: 48px;

    font-size: 1.1rem;

    border-radius: 14px;
  }

  .contact-sec-1-right {
    padding: 22px;
  }
}







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

.contact-sec-2 {
  padding: 0 0 80px;
  background: #f8f9fb;
}

.contact-sec-2-container {
  width: calc(100% - 40px);
  max-width: 1400px;
  margin: auto;
}

.contact-sec-2-map {
  overflow: hidden;

  border-radius: 24px;

  border: 1px solid #ececec;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

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

  border: none;

  display: block;
}

@media (max-width: 992px) {
  .contact-sec-2-map iframe {
    height: 450px;
  }
}

@media (max-width: 576px) {
  .contact-sec-2 {
    padding-bottom: 60px;
  }

  .contact-sec-2-map {
    border-radius: 18px;
  }

  .contact-sec-2-map iframe {
    height: 350px;
  }
}
