/* Call to Action Section */
.cta-section {
    padding: 60px 0 80px 0;
    background:
        linear-gradient(135deg, rgba(230, 30, 36, 0.45) 0%, rgba(183, 28, 28, 0.5) 100%),
        url('../../images/stadium_background.webp?v=highres') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

/* White background container for content */
.cta-section .container {
    background:
        linear-gradient(to bottom, rgba(255, 255, 255, 0.97) 0%, rgba(250, 250, 250, 0.97) 100%),
        url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="%23e61e24" opacity="0.03"/></svg>');
    padding: 40px 60px;
    max-width: 100%;
    margin: 0;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-top: 3px solid var(--primary-red);
    position: relative;
}

/* Decorative corner accents */
.cta-section .container::before,
.cta-section .container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
}

.cta-section .container::before {
    left: 50%;
    transform: translateX(-50%);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 42px;
    color: var(--primary-red);
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInDown 0.8s ease-out;
}

.cta-section p {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.cta-btn {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn span {
    font-size: 20px;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 30, 36, 0.5);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.cta-btn.secondary:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 30, 36, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-section .container {
        padding: 40px 30px;
        margin: 0 15px;
    }

    .cta-section h2 {
        font-size: 32px;
        margin-top: 20px;
    }

    .cta-section p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-section .container {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .cta-section h2 {
        font-size: 24px;
        margin-top: 15px;
    }

    .cta-btn {
        padding: 15px 30px;
        font-size: 14px;
    }
}