
.cta-section {
    position: relative;
    min-height: 500px;
    width: 100%;
    background-image: url('../img/5D1A0788.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-family: "Clarity City", sans-serif;
    overflow: hidden;
}


.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    padding: 0 40px;
    text-align: left;
    margin: 0 auto;
}

.cta-content {
    max-width: 900px;
    margin: 0;
    padding: 120px 0;
}

.cta-title {
    font-family: "Clarity City", sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.cta-subtitle {
    font-family: "Clarity City", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-button-wrapper {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button {
    display: inline-block;
    background: #E51E2A;
    color: #ffffff;
    font-family: "Clarity City", sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    padding: 18px 40px;

    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(229, 30, 42, 0.3);
    border: 2px solid #E51E2A;
}

.cta-button:hover {
    background: transparent;
    color: #E51E2A;
    border-color: #E51E2A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 30, 42, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {
    .cta-section {
        min-height: 400px;
        background-attachment: scroll;
        justify-content: center;
    }
    
    .cta-container {
        text-align: center;
    }
    
    .cta-content {
        padding: 60px 0;
        margin: 0 auto;
    }
    
    .cta-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .cta-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        min-height: 350px;
    }
    
    .cta-content {
        padding: 40px 0;
    }
    
    .cta-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .cta-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .cta-button {
        font-size: 14px;
        padding: 12px 25px;
        width: 100%;
        max-width: 250px;
    }
}


@media (min-width: 1024px) {
    .cta-section {
        background-attachment: fixed;
    }
}