.contact-hero-zone {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f0f7f0 0%, #e8f5e8 100%);
    text-align: center;
}

.contact-page-title {
    font-size: 46px;
    font-weight: 700;
    color: #1a3a1a;
    margin-bottom: 18px;
}

.contact-page-subtitle {
    font-size: 18px;
    color: #4a5a4a;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-zone {
    padding: 80px 0;
    background: #ffffff;
}

.contact-form-wrapper {
    background: #f8faf8;
    border: 2px solid #d5e5d5;
    border-radius: 15px;
    padding: 45px 40px;
    box-shadow: 0 8px 20px rgba(26, 58, 26, 0.08);
}

.form-header-block {
    text-align: center;
    margin-bottom: 40px;
}

.form-header-icon {
    width: 60px;
    height: 60px;
    stroke: #4a7c4a;
    fill: none;
    stroke-width: 2;
    margin-bottom: 20px;
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a3a1a;
    margin-bottom: 12px;
}

.form-description {
    font-size: 16px;
    color: #5a6a5a;
    margin: 0;
}

.contact-form-element {
    margin-top: 35px;
}

.form-row-group {
    margin-bottom: 25px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-field-unit {
    flex: 1 1 100%;
    position: relative;
}

.form-field-unit.half-width {
    flex: 1 1 calc(50% - 10px);
}

.field-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #2d5a2d;
    margin-bottom: 10px;
}

.label-icon {
    width: 20px;
    height: 20px;
    stroke: #4a7c4a;
    fill: none;
    stroke-width: 2;
}

.form-input-field,
.form-select-field,
.form-textarea-field {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #d5e5d5;
    border-radius: 8px;
    font-size: 15px;
    color: #1a3a1a;
    background: #ffffff;
    transition: all 0.3s;
    font-family: inherit;
}

.form-input-field:focus,
.form-select-field:focus,
.form-textarea-field:focus {
    outline: none;
    border-color: #4a7c4a;
    box-shadow: 0 0 0 3px rgba(74, 124, 74, 0.1);
}

.form-input-field.error,
.form-select-field.error,
.form-textarea-field.error {
    border-color: #e74c3c;
}

.form-textarea-field {
    resize: vertical;
    min-height: 140px;
}

.form-select-field {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a7c4a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 13px;
    margin-top: 6px;
    min-height: 18px;
    font-weight: 500;
}

.word-counter {
    display: block;
    text-align: right;
    font-size: 13px;
    color: #5a6a5a;
    margin-top: 6px;
}

.radio-group-holder {
    display: flex;
    gap: 20px;
    margin-top: 12px;
}

.radio-option-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #ffffff;
    border: 2px solid #d5e5d5;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.radio-option-item:hover {
    border-color: #4a7c4a;
    background: #f8faf8;
}

.radio-option-item input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.radio-custom {
    width: 22px;
    height: 22px;
    border: 2px solid #d5e5d5;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s;
}

.radio-option-item input[type="radio"]:checked + .radio-custom {
    border-color: #4a7c4a;
    background: #4a7c4a;
}

.radio-option-item input[type="radio"]:checked + .radio-custom:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
}

.radio-icon {
    width: 22px;
    height: 22px;
    stroke: #4a7c4a;
    fill: none;
    stroke-width: 2;
}

.radio-text {
    font-size: 15px;
    font-weight: 500;
    color: #2d5a2d;
}

.form-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #4a7c4a 0%, #2d5a2d 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(74, 124, 74, 0.3);
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 74, 0.4);
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-icon {
    width: 22px;
    height: 22px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
}

.contact-info-row {
    margin-top: 60px;
}

.contact-info-card {
    background: #f8faf8;
    border: 2px solid #d5e5d5;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(74, 124, 74, 0.15);
    border-color: #4a7c4a;
}

.info-icon-holder {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4a7c4a 0%, #2d5a2d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-card-icon {
    width: 35px;
    height: 35px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
}

.info-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a3a1a;
    margin-bottom: 10px;
}

.info-card-text {
    font-size: 16px;
    color: #4a5a4a;
    margin: 0;
}

.success-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s;
}

.success-popup-overlay.show {
    display: flex;
    opacity: 1;
}

.success-popup-box {
    background: #ffffff;
    border-radius: 15px;
    padding: 45px 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: popupSlide 0.4s ease-out;
}

@keyframes popupSlide {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}.success-icon-wrapper {
  width: 90px;
    height: 90px;
  background: linear-gradient(135deg, #4a7c4a 0%, #2d5a2d 100%);
    border-radius: 50%;
    display: flex;
  align-items: center;
  justify-content: center;
   margin: 0 auto 25px;
}

.success-icon-img {
   width: 45px;
  height: 45px;
  stroke: #ffffff;
    fill: none;
    stroke-width: 2;
}

.success-popup-title {
  font-size: 28px;
    font-weight: 700;
    color: #1a3a1a;
  margin-bottom: 15px;
}

.success-popup-text {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5a4a;
    margin-bottom: 30px;
}

.success-popup-btn {
   padding: 14px 40px;
  background: linear-gradient(135deg, #4a7c4a 0%, #2d5a2d 100%);
  color: #ffffff;
  border: none;
    border-radius: 8px;
  font-size: 16px;
   font-weight: 700;
   text-transform: uppercase;
    cursor: pointer;
  transition: all 0.3s;
}

.success-popup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(74, 124, 74, 0.4);
}@media (max-width: 768px) {
    .contact-hero-zone {
        padding: 120px 0 60px;
    }

    .contact-page-title {
        font-size: 36px;
    }

    .contact-form-wrapper {
        padding: 35px 25px;
    }

    .form-title {
        font-size: 26px;
    }

    .form-field-unit.half-width {
        flex: 1 1 100%;
    }

    .radio-group-holder {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .contact-page-title {
        font-size: 30px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .form-header-icon {
        width: 50px;
        height: 50px;
    }

    .form-title {
        font-size: 24px;
    }

    .success-popup-box {
        padding: 35px 25px;
    }
}