/* ============================================
   CTA (Call to Action) Section — Full Width Dramatic Banner
   ============================================ */

.cta-section {
    position: relative;
    padding: 5.5rem 0;
    background-color: var(--color-dark);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.35;
    transform: scale(1.05);
    transition: transform 10s ease-out;
}

.cta-section:hover .cta-bg img {
    transform: scale(1.1);
}

.cta-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 11, 14, 0.75) 0%,
        rgba(10, 11, 14, 0.85) 100%
    );
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.65rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.6rem;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 2rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    padding: 14px 34px;
    font-size: 0.88rem;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(243, 112, 33, 0.4);
}
