/**
 * Investor Relations CTA Styles
 * Custom styles for the Investor Relations page CTAs
 *
 * @package Zero_Qubit_Astra_Child
 * @since 1.0.0
 */

/* Primary CTA Button Styles */
.investor-cta {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

.investor-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent);
    transition: all 0.4s ease;
    z-index: -1;
}

.investor-cta:hover::before {
    left: 100%;
}

/* Primary Investor CTA */
.investor-cta.primary {
    background: linear-gradient(135deg, #38b2ac 0%, #2c5282 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.investor-cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

.investor-cta.primary:active {
    transform: translateY(1px);
}

/* Secondary Investor CTA */
.investor-cta.secondary {
    background: transparent;
    color: #38b2ac;
    border: 2px solid #38b2ac;
}

.investor-cta.secondary:hover {
    background-color: rgba(56, 178, 172, 0.1);
    transform: translateY(-2px);
}

.investor-cta.secondary:active {
    transform: translateY(1px);
}

/* Featured CTA Container */
.featured-cta-container {
    position: relative;
    padding: 2rem;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(26, 32, 44, 0.8) 0%, rgba(44, 82, 130, 0.8) 100%);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(56, 178, 172, 0.2);
    overflow: hidden;
}

.featured-cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2338b2ac' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.featured-cta-container .content {
    position: relative;
    z-index: 1;
}

/* CTA with Icon */
.investor-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.investor-cta-icon i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.investor-cta-icon:hover i {
    transform: translateX(3px);
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #38b2ac 0%, #2c5282 100%);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

.floating-cta i {
    font-size: 24px;
}

/* CTA Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(56, 178, 172, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(56, 178, 172, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(56, 178, 172, 0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .investor-cta {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .floating-cta {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .floating-cta i {
        font-size: 20px;
    }
}
