/* ===== CTA Section ===== */
.cta {
    background: #111111;
    padding: 0 40px 100px;
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Fade out at the bottom */
.cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 220px;
    background: linear-gradient(to bottom, transparent, #111111);
    pointer-events: none;
    z-index: 20;
}

/* ===== Arc Wrapper ===== */
.cta-arc-wrapper {
    position: relative;
    width: 100%;
    height: 700px;
}

/* ===== Individual image cards ===== */
.cta-arc-img {
    position: absolute;
    width: 110px;
    height: 145px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.06);
    transition: box-shadow 0.35s ease;
    /* JS will set left, top, transform */
}

.cta-arc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-arc-img:hover {
    box-shadow: 0 20px 48px rgba(245, 158, 11, 0.22);
    z-index: 5;
}

/* ===== Text content ===== */
.cta-content {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 460px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 25;
}

.cta-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    line-height: 1.1;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.92rem;
    line-height: 1.75;
    max-width: 360px;
    margin-bottom: 34px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #000;
    background: #f59e0b;
    padding: 15px 34px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

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

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .cta { padding: 0 16px 80px; }

    .cta-arc-wrapper { height: 480px; }

    .cta-arc-img {
        width: 78px;
        height: 102px;
        border-radius: 14px;
    }

    .cta-content {
        width: 260px;
        bottom: 70px;
    }

    .cta-heading { font-size: 1.35rem; letter-spacing: 1px; }
    .cta-subtitle { font-size: 0.78rem; max-width: 230px; margin-bottom: 22px; }
    .cta-btn { padding: 12px 24px; font-size: 0.72rem; }
}
