/* CTA Section Styles */

.cta-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-2xl) 0;
    overflow: hidden;
}

.star-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-background);
}

.cta-section .container {
    position: relative;
    z-index: var(--z-glass-ui);
}

.cta-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-xl);
}

.cta-title {
    font-size: var(--text-3xl);
    margin-bottom: var(--spacing-xl);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--glass-border);
}

.contact-section h3 {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    margin-bottom: var(--spacing-sm);
}

.contact-section a {
    display: block;
    margin-top: var(--spacing-xs);
}

.contact-section p {
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
}

/* Floating Data Cubes */
.orbit-cubes-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: var(--z-3d-assets);
}

.orbit-cube {
    position: absolute;
    width: 60px;
    height: auto;
    opacity: 0.7;
    transition: opacity var(--duration-quick) var(--ease-standard);
}

.orbit-cube:hover {
    opacity: 1;
}

/* Cube Positions - Scattered around the section */
.cube-pos-1 {
    top: 10%;
    left: 5%;
}

.cube-pos-2 {
    top: 15%;
    right: 8%;
}

.cube-pos-3 {
    top: 50%;
    left: 3%;
}

.cube-pos-4 {
    top: 45%;
    right: 5%;
}

.cube-pos-5 {
    bottom: 20%;
    left: 10%;
}

.cube-pos-6 {
    bottom: 15%;
    right: 12%;
}

/* Footer */
.footer-content {
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-tertiary);
    font-size: var(--text-sm);
}

.footer-links {
    margin-top: var(--spacing-sm);
}

.footer-links a {
    margin: 0 var(--spacing-sm);
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-card {
        padding: var(--spacing-lg);
    }

    .cta-title {
        font-size: var(--text-2xl);
    }

    .cta-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    /* Smaller cubes on mobile */
    .orbit-cube {
        width: 40px;
    }

    /* Adjust positions for mobile */
    .cube-pos-1 { top: 5%; left: 5%; }
    .cube-pos-2 { top: 8%; right: 5%; }
    .cube-pos-3 { top: 40%; left: 2%; }
    .cube-pos-4 { top: 40%; right: 2%; }
    .cube-pos-5 { bottom: 15%; left: 5%; }
    .cube-pos-6 { bottom: 15%; right: 5%; }
}
