/* ============================================================
   JANNATA GROUP — GLOBAL CTA SECTION (FULL WIDTH)
   Mobile (<768px), Tablet (768px-1023px), Macbook (1024px-1439px), Desktop (>=1440px)
   ============================================================ */
.cta-section {
    width: 100%;
    padding: 80px 0 0 0;
    background: transparent;
    overflow: hidden;
    margin: 0;
}

.cta-card {
    position: relative;
    width: 100%;
    height: 500px;
    background: #0D2745;
    border-radius: 80px 80px 0px 0px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.cta-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(4px);
    transform: scale(1.05);
    transition: transform 0.6s ease;
}

.cta-card:hover .cta-card-bg {
    transform: scale(1.08);
}

.cta-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(146.01deg, #0D2745 0.31%, rgba(13, 39, 69, 0.4) 94%);
    z-index: 1;
    pointer-events: none;
}

.cta-card-content {
    position: relative;
    z-index: 2;
    max-width: 1028px;
    width: 100%;
    padding: 0 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 24px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    color: #FFFFFF;
    margin: 0;
    text-align: center;
    width: 100%;
}

.cta-desc {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #FFFFFF;
    margin: 0;
    text-align: center;
    max-width: 1028px;
    width: 100%;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    height: 48px;
    background: #204093;
    border-radius: 100px;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(32, 64, 147, 0.3);
}

.cta-btn:hover {
    background: #0C45B5;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(12, 69, 181, 0.45);
}

.cta-btn svg {
    transition: transform 0.3s ease;
}

.cta-btn:hover svg {
    transform: translateX(4px);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS (Desktop, Macbook, Tablet, Mobile)
   ============================================================ */

/* 1. DESKTOP (>= 1440px) - Handled by default styles */

/* 2. MACBOOK / LAPTOP (1024px to 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
    .cta-card {
        height: 460px;
        border-radius: 60px 60px 0px 0px;
    }
    .cta-title {
        font-size: 32px;
        line-height: 40px;
    }
    .cta-desc {
        font-size: 17px;
    }
}

/* 3. TABLET (768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .cta-section {
        padding-top: 60px;
    }
    .cta-card {
        height: 400px;
        border-radius: 40px 40px 0px 0px;
    }
    .cta-card-content {
        padding: 0 24px;
        gap: 20px;
    }
    .cta-title {
        font-size: 28px;
        line-height: 36px;
    }
    .cta-desc {
        font-size: 16px;
    }
}

/* 4. MOBILE (< 768px) */
@media (max-width: 767px) {
    .cta-section {
        padding-top: 40px;
    }
    .cta-card {
        height: auto;
        padding: 48px 20px;
        border-radius: 28px 28px 0px 0px;
    }
    .cta-card-content {
        padding: 0;
        gap: 16px;
    }
    .cta-title {
        font-size: 22px;
        line-height: 30px;
    }
    .cta-desc {
        font-size: 14px;
        line-height: 1.6;
    }
    .cta-btn {
        padding: 10px 20px;
        height: 44px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
    }
}
