.contact-hero-area {
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    padding: 100px 0 80px;
    text-align: center;
  color: #fff;
}

.contact-hero-content {
    max-width: 700px;
  margin: 0 auto;
}

.contact-main-heading {
    font-size: 42px;
   font-weight: 700;
   margin-bottom: 15px;
    color: #fff;
}

.contact-hero-text {
   font-size: 18px;
  opacity: 0.95;
}

.contact-form-zone {
   padding: 80px 0;
   background: #f9f9f9;
}

.form-container-wrapper {
   background: #fff;
   padding: 50px;
   border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 50px;
}

.form-intro-block {
    text-align: center;
    margin-bottom: 40px;
}

.form-section-title {
   font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.form-description-text {
   color: #666;
    font-size: 16px;
}

.form-grid-layout {


    display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-field-unit {
   display: flex;
   flex-direction: column;
}

.full-width-field {
       grid-column: 1 / -1;
}

.field-label-js {
    display: flex;
  align-items: center;
   gap: 8px;
   font-size: 14px;
   font-weight: 600;
  color: #333;
    margin-bottom: 8px;
}

.label-icon-js {
  width: 18px;
   height: 18px;
  stroke: #27ae60;
    fill: none;
  stroke-width: 1.5;
}

.form-input-js,
.form-select-js,
.form-textarea-js {
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
   border-radius: 6px;
  font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
   background: #fff;
}

.form-input-js:focus,
.form-select-js:focus,
.form-textarea-js:focus {
   outline: none;
   border-color: #27ae60;
  box-shadow: 0 0 0 3px rgba(39,174,96,0.1);
}

.form-input-js.error-field,
.form-select-js.error-field,
.form-textarea-js.error-field {
   border-color: #e74c3c;
}

.form-textarea-js {
  resize: vertical;
   min-height: 120px;
}

.error-message-js {
   color: #e74c3c;
  font-size: 13px;
  margin-top: 5px;
   display: none;
}

.error-message-js.show-error {
   display: block;
}

.char-counter-js {

	    font-size: 12px;
    color: #999;
    margin-top: 5px;}

.radio-group-js {
  display: flex;
  gap: 25px;
   padding: 10px 0;
}

.radio-label-js {
   display: flex;
   align-items: center;
   gap: 10px;
    cursor: pointer;
    font-size: 15px;
    color: #555;
}

.radio-input-js {
    position: absolute;
   opacity: 0;
   cursor: pointer;
}

.radio-custom-js {
   width: 20px;
   height: 20px;
   border: 2px solid #ddd;
   border-radius: 50%;
    position: relative;
   transition: all 0.3s;
}

.radio-input-js:checked + .radio-custom-js {
   border-color: #27ae60;
}

.radio-input-js:checked + .radio-custom-js::after {
  content: '';
   position: absolute;
   top: 50%;
    left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
    height: 10px;
  background: #27ae60;
  border-radius    :        50%;
}

.radio-icon-js {
    width: 16px;
   height: 16px;
    stroke: #666;
  fill: none;
  stroke-width: 1.5;
}

.form-submit-btn {
  background: #27ae60;
   color: #fff;
   padding: 15px 40px;
    border: none;
    border-radius: 6px;
   font-size: 16px;
   font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
   display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.form-submit-btn:hover {
  background: #229954;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(39,174,96,0.3);
}

.btn-icon-js {
  width: 18px;
    height: 18px;
  stroke: #fff;
    fill: none;
  stroke-width: 2;
}

.contact-info-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card-js {
  background: #fff;
   padding: 35px 25px;
   border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.info-icon-large {
   width: 48px;
    height: 48px;
    stroke: #27ae60;
   fill: none;
  stroke-width: 1.5;
   margin-bottom: 15px;
}

.info-card-js h3 {
   font-size: 18px;
    font-weight: 700;
   color: #1a1a1a;
  margin-bottom: 10px;
}

.info-card-js p {
    font-size: 15px;
  color: #666;
   line-height: 1.6;
}

.success-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
   width: 100%;
    height: 100%;
  background: rgba(0,0,0,0.8);
    z-index: 99999;
   display: none;
  align-items: center;
  justify-content: center;
}

.success-popup-overlay.show-popup {
  display: flex;
}

.success-popup-modal {
    background: #fff;
  border-radius: 12px;
   max-width: 450px;
   width: 90%;
   padding: 40px 30px;
  text-align: center;
  animation: slideInPop 0.4s ease;
}@keyframes slideInPop {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}.success-icon-wrapper {
    width: 80px;
   height: 80px;
  background: #27ae60;
    border-radius: 50%;
  display: flex;
          align-items: center;
    justify-content: center;
   margin: 0 auto 25px;
}

.success-check-icon {
    width: 40px;
    height: 40px;
    stroke: #fff;
    fill: none;
    stroke-width: 3;
}

.success-popup-content h2 {
   font-size: 28px;
   color: #1a1a1a;
   margin-bottom: 15px;
}

.success-popup-content p {
    font-size: 16px;
    color: #666;
   line-height: 1.6;
   margin-bottom: 25px;
}

.success-close-btn {
   background: #27ae60;
    color: #fff;
    padding: 12px 35px;
    border: none;
   border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
   cursor: pointer;
  transition: all 0.3s;
}

.success-close-btn:hover {
  background: #229954;
}@media (max-width: 991px) {
    .contact-info-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .contact-hero-area {
        padding: 70px 0 60px;
    }

    .contact-main-heading {
        font-size: 32px;
    }

    .form-container-wrapper {
        padding: 35px 25px;
    }

    .form-grid-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-section-title {
        font-size: 26px;
    }

    .contact-form-zone {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .contact-main-heading {
        font-size: 28px;
    }

    .form-container-wrapper {
        padding: 25px 20px;
    }

    .radio-group-js {
        flex-direction: column;
        gap: 15px;
    }
}