/* =========================================
   MIG CTA Block – style.css
   ========================================= */
.cta-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
}

/* ── Background image (parallax target) ── */
.cta-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 130%;
    object-fit: cover;
    object-position: center;
    top: -15%;
    z-index: 0;
    will-change: transform;
}

/* ── Glass card ── */
.cta-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    padding: 64px 50px 60px;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
}

/* ── Heading ── */
.cta-heading {
    font-size: 32px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.5;
    letter-spacing: 0.04em;
    margin: 0 0 22px;
}

/* ── Paragraph ── */
.cta-sub {
    font-size: 18px;
    color: #fff;
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 36px;
    font-weight: 200;
}

/* ── Button ── */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #fff;
    color: #000 !important;
    border: none;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, transform 0.15s;
    border-radius: 10px;
}

.cta-btn:hover {
    background: #e6ca60;
    color: #000 !important;
    transform: translateY(-2px);
}

.cta-btn i {
    font-size: 13px;
    transition: transform 0.2s ease;
}

.cta-btn:hover i {
    transform: translateX(3px);
}
.cta-heading strong {
  display: block;
  font-weight: 500;
  color: #e6ca60;
}

/* ── Mobile ── */
@media (max-width: 700px) {
    .cta-card {
        padding: 44px 28px 40px;
        max-width: 92vw;
    }

    .cta-section {
        height: auto;
        min-height: 520px;
        padding: 80px 0;
    }
}
