/* Premium CTA Section Redesign */

/* Main CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(10, 12, 20, 0.95) 0%, rgba(17, 24, 39, 0.9) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

/* CTA Content Container */
.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ffffff 0%, #00f2ff 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradient-flow 4s ease infinite;
}

.cta-content>p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 50px;
}

/* CTA Options Grid - Side by Side */
.cta-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

/* Individual CTA Option Card */
.cta-option {
    background: linear-gradient(145deg, rgba(30, 35, 50, 0.8) 0%, rgba(20, 25, 40, 0.9) 100%);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cta-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7c3aed, #06b6d4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-option:hover {
    transform: translateY(-10px);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow:
        0 20px 60px rgba(124, 58, 237, 0.2),
        0 0 40px rgba(6, 182, 212, 0.1);
}

.cta-option:hover::before {
    opacity: 1;
}

/* CTA Option Icon */
.cta-option-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(124, 58, 237, 0.3);
    transition: all 0.3s ease;
}

.cta-option:hover .cta-option-icon {
    background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

.cta-option-icon i {
    font-size: 2.5rem;
    background: linear-gradient(90deg, #7c3aed, #00f2ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.cta-option:hover .cta-option-icon i {
    -webkit-text-fill-color: #ffffff;
    background: none;
}

/* CTA Option Title */
.cta-option h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: "Orbitron", sans-serif;
}

/* CTA Option Description */
.cta-option>p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 30px;
    min-height: 50px;
}

/* CTA Buttons styling override */
.cta-option .btn-primary,
.cta-option .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 16px 30px;
    font-size: 1rem;
    border-radius: 12px;
}

.cta-option .btn-primary {
    background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.cta-option .btn-primary:hover {
    box-shadow: 0 12px 35px rgba(6, 182, 212, 0.5);
    transform: translateY(-3px);
}

.cta-option .btn-secondary {
    background: transparent;
    border: 2px solid rgba(124, 58, 237, 0.5);
    color: #ffffff;
}

.cta-option .btn-secondary:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
    border-color: #06b6d4;
}

/* First option special accent */
.cta-option:first-child {
    border-color: rgba(124, 58, 237, 0.4);
}

.cta-option:first-child::before {
    background: linear-gradient(90deg, #7c3aed, #a855f7);
}

/* Second option special accent */
.cta-option:last-child {
    border-color: rgba(6, 182, 212, 0.4);
}

.cta-option:last-child::before {
    background: linear-gradient(90deg, #06b6d4, #22d3ee);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-options {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }

    .cta-option {
        padding: 40px 30px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content>p {
        font-size: 1rem;
        padding: 0 20px;
    }
}

/* Light theme adjustments */
[data-theme="light"] .cta-section {
    background: linear-gradient(135deg, rgba(244, 247, 252, 0.98) 0%, rgba(230, 235, 245, 0.95) 100%);
}

[data-theme="light"] .cta-option {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 255, 0.9) 100%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .cta-option h3 {
    color: #1a1a2e;
}

[data-theme="light"] .cta-option>p {
    color: rgba(30, 30, 50, 0.7);
}

[data-theme="light"] .cta-content>p {
    color: rgba(30, 30, 50, 0.8);
}

/* Footer tagline style */
.footer-tagline {
    font-size: 0.9rem;
    color: #06b6d4;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}