/* ========== CTA Section ========== */
.cta-section {
 
    padding: 80px 0;
}

.cta-box {
    position: relative;
    padding: 70px 40px;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(135deg, #0B3D2E 0%, #0d4631e8 50%, #0B4A3A 100%);
/*    background: linear-gradient(135deg, #0B3D2E 0%, #16a34a 50%, #0B4A3A 100%);*/
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.cta-map-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(11, 61, 46, 0.9);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-icon-wrapper:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.cta-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.cta-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cta-description {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Custom styling for CTA white outline button */
.btn-cta-white {
    background: rgba(255, 255, 255, 0.15);
    color: white !important;
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-cta-white:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white !important;
    border-color: rgba(255, 255, 255, 0.6);
}

/* Ensure secondary button works on gradient background */
.cta-buttons .btn-secondary-custom {
    background: white;
    color: var(--aviris-primary);
}

.cta-buttons .btn-secondary-custom:hover {
    background: #f9fafb;
    color: var(--aviris-primary);
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .cta-section {
        padding: 70px 0;
    }

    .cta-box {
        padding: 60px 40px;
    }

    .cta-title {
        font-size: 44px;
    }

    .cta-description {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .cta-icon-wrapper {
        width: 66px;
        height: 66px;
        margin-bottom: 22px;
    }

    .cta-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 991.98px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-box {
        padding: 50px 36px;
        border-radius: 28px;
    }

    .cta-title {
        font-size: 38px;
        margin-bottom: 18px;
    }

    .cta-description {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .cta-icon-wrapper {
        width: 62px;
        height: 62px;
        margin-bottom: 20px;
    }

    .cta-icon {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 767.98px) {
    .cta-section {
        padding: 50px 0;
    }

    .cta-box {
        padding: 44px 28px;
        border-radius: 24px;
    }

    .cta-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .cta-description {
        font-size: 14px;
        margin-bottom: 26px;
    }

    .cta-icon-wrapper {
        width: 58px;
        height: 58px;
        margin-bottom: 18px;
        border-radius: 16px;
    }

    .cta-icon {
        width: 36px;
        height: 36px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-buttons .btn-outline-custom,
    .cta-buttons .btn-secondary-custom {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .cta-section {
        padding: 40px 0;
    }

    .cta-box {
        padding: 40px 24px;
        border-radius: 20px;
    }

    .cta-title {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .cta-description {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .cta-icon-wrapper {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }

    .cta-icon {
        width: 34px;
        height: 34px;
    }
}