.cta-section {
    padding: 80px 0;
    background-color: #fff;
    font-family: 'Manrope', sans-serif;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
}

.cta-card {
    position: relative;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    border-radius: 10px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Glowing background effect */
.cta-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 105, 51, 0.2) 0%, transparent 70%);
    z-index: 1;
}

.cta-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 18px;
    color: #999;
    margin-bottom: 40px;
    max-width: 500px;
}

/* Button & Badges */
.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.primary-cta-btn {
    background: #ff6933;
    color: #fff;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none; /* Underline hatane ke liye */
    display: inline-flex;  /* Icon alignment ke liye */
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: fit-content;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
}

.primary-cta-btn:hover {
    color: #fff; /* Hover par bhi text white rahe */
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 105, 51, 0.3);
}

.trust-badge-mini {
    color: #4ade80;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Right side image */
.cta-image {
    flex: 0 0 350px;
    z-index: 2;
}

.cta-image img {
    width: 100%;
}

/* --- Tablet View (max-width: 1024px) --- */
@media (max-width: 1024px) {
    .cta-card {
        padding: 40px;
        gap: 30px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-image {
        flex: 0 0 300px;
    }
}

/* --- Mobile View (max-width: 768px) --- */
@media (max-width: 768px) {
    .cta-section {
        padding: 40px 15px;
    }

    .cta-card {
        flex-direction: column; /* Content upar, Image niche */
        text-align: center;
        padding: 40px 20px;
        gap: 40px;
    }

    .cta-content p {
        margin: 0 auto 30px;
    }

    .cta-actions {
        align-items: center; /* Button aur Badge center mein */
    }

    .primary-cta-btn {
        width: 100%; /* Mobile par full width button better rehta hai */
        justify-content: center;
        font-size: 16px;
    }

    .cta-image {
        flex: none;
        width: 100%;
        max-width: 100%; /* Mobile par image bohot badi na ho */
    }
    
    .cta-glow {
        width: 250px;
        height: 250px;
        top: -10%;
        right: -10%;
    }
}

/* --- Small Mobile (320px - 480px) --- */
@media (max-width: 480px) {
    .cta-content h2 {
        font-size: 26px; /* 320px screen ke liye perfect size */
        letter-spacing: -0.5px;
    }

    .cta-content p {
        font-size: 15px;
        line-height: 1.5;
    }

    .primary-cta-btn {
        padding: 16px 24px;
    }

    .trust-badge-mini {
        font-size: 12px;
    }
}