/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.pv-contact {
  max-width: 1320px;
  margin: 100px auto;
  padding: 0 20px;

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

/* Left Side */

.pv-contact-subtitle {
  color: #f4b400;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.pv-contact-title {
  font-size: 60px;
  line-height: 1.1;
  font-weight: 700;
  color: #111;
  margin-bottom: 24px;
}
.pv-contact-title span {
  color: #f5b400;
}

.pv-contact-description {
  width: 573px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
}
.pv-contact-text {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 40px;
}

/* Contact Info */

.pv-contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pv-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.pv-contact-icon {
  width: 52px;
  height: 52px;

  background: #fdb913;
  color: #111;

  border-radius: 50%;

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

  font-size: 22px;

  flex-shrink: 0;
}

.pv-contact-icon img {
  width: 26px;
  height: auto;
}

.pv-contact-item h4 {
  font-size: 20px;
  margin-bottom: 6px;
  color: #111;
}

.pv-contact-item p {
  color: #666;
  line-height: 1.6;
  font-size: 16px;
}

/* Right Form */

.pv-contact-form {
  background: transparent;
  padding: 20px !important;

  border-radius: 20px;

  box-shadow: none;
}

.pv-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.pv-contact-form input,
.pv-contact-form select,
.pv-contact-form textarea {
  width: 100%;

  padding: 16px 18px;

  border: 1px solid #ddd;

  border-radius: 10px;

  font-size: 16px;

  outline: none;

  transition: 0.3s;
}

.pv-contact-form textarea {
  height: 180px;

  resize: none;

  margin-bottom: 20px;
}

.pv-contact-form input:focus,
.pv-contact-form select:focus,
.pv-contact-form textarea:focus {
  border-color: #fdb913;
}

.pv-contact-btn {
  width: 100%;

  background: #fdb913;

  color: #111;

  border: none;

  border-radius: 10px;

  padding: 18px;

  font-size: 17px;

  font-weight: 700;

  cursor: pointer;

  transition: 0.3s;
}

.pv-contact-btn:hover {
  background: #111;

  color: #fff;
}

.pv-contact-container {
  display: flex;
  flex-direction: row;
  padding: 0px;
}
.pv-contact-left {
  width: 60%;
}
.pv-contact-right {
  width: 40%;
}

.pv-contact-wrapper.is-layout-constrained
  > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: 100%;
  margin-left: unset !important;
  margin-right: unset !important;
}
/* Responsive */

/*=========================================
= Footer Contact Success Message
=========================================*/

.pv-footer-contact-success {
  display: none;
  text-align: center;
  padding: 40px 30px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.pv-footer-contact-success {
  display: none;
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.pv-success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  font-size: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pv-footer-contact-success h2 {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 700;
}

.pv-send-another {
  margin-top: 30px;
}

@media (max-width: 1024px) {
  .pv-contact {
    grid-template-columns: 1fr;

    gap: 60px;
  }
  .pv-contact-left {
    width: 100%;
  }
  .pv-contact-title {
    font-size: 46px;
  }

  .pv-contact-title span {
    color: #f5b400;
  }

  .pv-contact-info {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
    padding: 0px;
  }

  .pv-form-grid {
    grid-template-columns: 1fr;
  }
  .pv-contact-description {
    width: 100%;
  }
  .pv-contact-container {
    flex-direction: column;
  }

  .pv-contact-right {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .pv-contact {
    margin: 70px auto;
  }

  .pv-contact-title {
    font-size: 36px;
  }

  .pv-contact-form {
    padding: 25px;
  }
  .pv-contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0px;
  }
}
