.cta1-section {
    background-color: #1a1a1a;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.6;
    /* border-top: 1px solid var(--accent); */
}

.cta1-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta1-title {
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    text-align: center;
    margin-top: 0 !important;
}

.cta1-title span,
.cta1-subtitle span {
    white-space: nowrap;
}

.cta1-subtitle {
    max-width: 800px;
    margin: 3rem auto;
    padding-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    /* border: 1px solid green; */
}

.cta1-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    opacity: 0;
    justify-content: center;
    width: 100%;
}

.btn {
    font-family: var(--title-font);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.25rem;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background-color: #CC0B0D;
    color: #F0F0F0;
    border: none;
    position: relative;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #CC0B0D, transparent, #CC0B0D);
    z-index: -1;
    border-radius: 0.25rem;
    background-size: 400%;
    animation: glowingBorder 8s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(204, 11, 13, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #F0F0F0;
    border: 2px solid rgba(240, 240, 240, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    z-index: -1;
}

.btn-secondary:hover {
    border-color: rgba(240, 240, 240, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(240, 240, 240, 0.1);
}

.btn svg {
    width: 18px;
    height: 18px;
}

.central-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204, 11, 13, 0.15) 0%, rgba(26, 26, 26, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: blur(50px);
}

@keyframes glowingBorder {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

@media (max-width: 1024px) {
    .cta1-title {
        font-size: 2.2rem;
    }

    .cta1-subtitle {
        font-size: 1.1rem;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .cta1-title {
        font-size: 1.8rem !important;
    }

    .cta1-subtitle {
        font-size: 1.1rem;
        padding: 0;
    }

    .cta1-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}