.contact-info-cards-strip {
    padding: 65px 0;
    background: #fff;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.info-card-block {
    text-align: center;
    padding: 38px 24px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.info-card-block:hover {
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.card-icon-holder {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #d97132;
}

.card-icon-holder img {
    width: 32px;
    height: 32px;
    stroke: #d97132;
    stroke-width: 2;
    fill: none;
}

.info-card-block h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 12px;
}

.info-card-block p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #5a5a5a;
    margin: 0;
}

.contact-form-section {
    padding: 95px 0;
    background: #f8f9fa;
}

.form-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 65px;
    align-items: start;
}

.form-intro-column h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 18px;
    line-height: 1.3;
}

.form-intro-column > p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 38px;
}

.reasons-to-contact {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.reason-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.reason-item img {
    width: 28px;
    height: 28px;
    stroke: #d97132;
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
    margin-top: 2px;
}

.reason-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 6px;
}

.reason-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #5a5a5a;
    margin: 0;
}

.form-container-column {
    background: #fff;
    padding: 42px 38px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #2a2a2a;
    display: flex;
    align-items: center;
    gap: 4px;
}

.required-mark {
    color: #d97132;
    font-size: 16px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 14px;
    width: 18px;
    height: 18px;
    stroke: #5a5a5a;
    stroke-width: 2;
    fill: none;
    pointer-events: none;
}

.textarea-icon {
    top: 14px;
    align-self: flex-start;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 14px 13px 44px;
    font-size: 15px;
    color: #2a2a2a;
    background: #f8f9fa;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d97132;
    background: #fff;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ec5453;
}

.form-group select {
    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='%235a5a5a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}

.error-message {
    font-size: 13px;
    color: #ec5453;
    display: none;
    margin-top: -4px;
}

.error-message.visible {
    display: block;
}

.checkbox-group {
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    position: relative;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e8e8e8;
    background: #f8f9fa;
    flex-shrink: 0;
    margin-top: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: #d97132;
    border-color: #d97132;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 1.6;
}

.checkbox-text a {
    color: #d97132;
    text-decoration: underline;
}

.checkbox-text a:hover {
    text-decoration: none;
}

.form-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #d97132;
    color: #fff;
    padding: 16px 38px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.form-submit-button:hover:not(:disabled) {
    background: transparent;
    color: #d97132;
    border-color: #d97132;
    transform: translateY(-2px);
}

.form-submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-submit-button img {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
}

.map-location-area {
    padding: 0 0 95px 0;
    background: #f8f9fa;
}

.map-header-text {
    text-align: center;
    margin-bottom: 45px;
}

.map-header-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 12px;
}

.map-header-text p {
    font-size: 16px;
    color: #5a5a5a;
}

.map-embed-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 25px;
}

.map-embed-container iframe {
    width: 100%;
    display: block;
}

.success-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 42, 42, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content-box {
    background: #fff;
    padding: 48px 42px;
    max-width: 520px;
    width: 90%;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.success-popup-overlay.active .popup-content-box {
    transform: translateY(0);
}

.popup-icon-circle {
    width: 75px;
    height: 75px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2fa499;
    border-radius: 50%;
}

.popup-icon-circle img {
    width: 38px;
    height: 38px;
    stroke: #fff;
    stroke-width: 3;
    fill: none;
}

.popup-content-box h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 16px;
}

.popup-content-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 32px;
}

.popup-close-btn {
    background: #d97132;
    color: #fff;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-close-btn:hover {
    background: #c65f28;
}

@media (max-width: 992px) {
    .form-layout-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-form-section,
    .map-location-area {
        padding: 65px 0;
    }

    .form-intro-column h2 {
        font-size: 28px;
    }

    .form-container-column {
        padding: 32px 24px;
    }

    .map-header-text h2 {
        font-size: 28px;
    }

    .popup-content-box {
        padding: 38px 28px;
    }

    .popup-content-box h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group select,
    .form-group textarea {
        padding: 12px 12px 12px 40px;
        font-size: 14px;
    }

    .input-icon {
        left: 12px;
        width: 16px;
        height: 16px;
    }

    .form-submit-button {
        padding: 14px 28px;
        font-size: 15px;
    }

    .reason-item img {
        width: 24px;
        height: 24px;
    }
}