.cta-section {
    position: relative;
    background-image: url('../assets/images/footer.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 460px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}
.cta-glass-card {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    max-width: 750px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.cta-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}
.cta-title span {
    color: #ff7b00;
}
.cta-desc {
    color: #f0f0f0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}
.cta-btn {
    background: #ff7b00;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 1rem 3rem;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 123, 0, 0.4);
}
.cta-btn:hover {
    background: #e66a00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 123, 0, 0.6);
    color: #fff;
}