 .cta-section {
        background: linear-gradient(135deg, #0f172a, #1e293b);
        padding: 80px 0;
        color: #fff;
        border-radius: 24px;
        overflow: hidden;
        position: relative;
    }

    .cta-section::before {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        background: rgba(255,255,255,0.04);
        border-radius: 50%;
        top: -100px;
        right: -100px;
    }

    .cta-title {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 12px;
        letter-spacing: -1px;
    }

    .cta-subtitle {
        font-size: 18px;
        color: #cbd5e1;
        margin-bottom: 0;
    }

    .glass-card {
        background: rgba(255,255,255,0.06);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 20px;
        padding: 40px;
        height: 100%;
        transition: 0.3s ease;
    }

    .glass-card:hover {
        transform: translateY(-5px);
    }

    .glass-card h3 {
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .glass-card p {
        color: #d1d5db;
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .custom-btn {
        padding: 12px 24px;
        border-radius: 50px;
        border: none;
        font-weight: 600;
        margin-right: 10px;
        margin-bottom: 10px;
        transition: 0.3s ease;
    }

    .btn-contact {
        background: #2563eb;
        color: #fff;
    }

    .btn-contact:hover {
        background: #1d4ed8;
    }

    .btn-call {
        background: #fff;
        color: #111827;
    }

    .btn-call:hover {
        background: #e5e7eb;
    }

    .btn-chat {
        background: #22c55e;
        color: #fff;
    }

    .btn-chat:hover {
        background: #16a34a;
    }

    .social-icons {
        margin-top: 25px;
    }

    .social-icons li {
        margin: 0 8px;
    }

    .social-icons a {
        width: 52px;
        height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
        color: #000000;
        font-size: 20px;
        transition: 0.3s ease;
        text-decoration: none;
    }

    .social-icons a:hover {
        background: #2563eb;
        transform: translateY(-4px);
    }

    @media (max-width: 768px) {
        .cta-title {
            font-size: 32px;
        }

        .glass-card {
            margin-bottom: 25px;
        }
    }

    