/* ========================================
   Virtual CFO Services CSS
   Modern Fintech Styling with Orange Theme
   ======================================== */

:root {
    --vcfo-primary: #FF6B35;
    --vcfo-secondary: #E93C05;
    --vcfo-light: #FFF4F0;
    --vcfo-dark: #1A1A1A;
}

.vcfo-hero {
    background: linear-gradient(135deg, #FF6B35 0%, #E93C05 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.vcfo-hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    top: 0;
    left: 0;
}

.vcfo-bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(255, 255, 255, 0.04) 100px, rgba(255, 255, 255, 0.04) 110px);
    top: 0;
    left: 0;
}

.vcfo-title {
    color: white;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.vcfo-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.vcfo-btn {
    background: linear-gradient(135deg, #FF6B35 0%, #E93C05 100%);
    border: none;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.vcfo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #E93C05 0%, #D03000 100%);
}

.vcfo-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
}

.vcfo-icon-wrapper {
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
}

.vcfo-support-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.vcfo-support-card {
    background: linear-gradient(135deg, #FFF7F4 0%, #FFE8DC 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1.5px solid #FFD9CC;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.08);
}

.vcfo-support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.vcfo-support-card:hover {
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.15);
    transform: translateY(-8px);
    border-color: #FF6B35;
    background: linear-gradient(135deg, #FFE8DC 0%, #FFD9CC 100%);
}

.vcfo-support-card:hover::before {
    left: 100%;
}

.vcfo-support-number {
    display: inline-flex;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B35 0%, #E93C05 100%);
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.vcfo-benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF7F4 0%, #FFFFFF 100%);
}

.vcfo-benefit-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.vcfo-benefit-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.18);
    border-color: #FF6B35;
}

.vcfo-benefit-box i {
    font-size: 50px;
    color: #FF6B35;
    margin-bottom: 15px;
    display: block;
    transition: all 0.3s ease;
}

.vcfo-benefit-box:hover i {
    transform: scale(1.1) rotate(-5deg);
}

.vcfo-benefit-box h5 {
    color: #1f2937;
    font-weight: 700;
    margin-bottom: 10px;
}

.vcfo-benefit-box p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Problems Section */
.vcfo-problems-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF7F4 100%);
    position: relative;
}

.vcfo-problem-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    border: 1.5px solid #e9ecef;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.vcfo-problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: #FF6B35;
    transition: height 0.4s ease;
}

.vcfo-problem-card:hover {
    border-color: #FF6B35;
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.12);
    transform: translateY(-5px);
}

.vcfo-problem-card:hover::before {
    height: 100%;
}

.vcfo-problem-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFF1E8 0%, #FFE8DC 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6B35;
    font-size: 24px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.1);
}

/* FAQ Section */
.vcfo-faq-section {
    padding: 80px 0;
    background: white;
}

.vcfo-faq-item {
    background: #F9FAFB;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.vcfo-faq-item:hover {
    border-color: #FF6B35;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.1);
    transform: translateY(-3px);
    background: #FFFFFF;
}

.vcfo-faq-title {
    color: #1A1A1A;
    font-weight: 700;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.vcfo-faq-answer {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* CTA Section */
.vcfo-cta-card {
    background: linear-gradient(135deg, #FF6B35 0%, #E93C05 100%);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.35);
    position: relative;
    overflow: hidden;
}

.vcfo-cta-card::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.vcfo-cta-card::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-20px); 
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .vcfo-hero {
        padding: 60px 0 40px;
    }

    .vcfo-title {
        font-size: 2rem;
    }

    .vcfo-subtitle {
        font-size: 1rem;
    }
    
    .vcfo-icon-wrapper {
        width: 200px;
        height: 200px;
        font-size: 80px;
    }

    .vcfo-support-section,
    .vcfo-benefits-section,
    .vcfo-problems-section,
    .vcfo-faq-section {
        padding: 50px 0;
    }

    .vcfo-support-card,
    .vcfo-problem-card {
        padding: 20px;
    }

    .vcfo-support-card h5,
    .vcfo-problem-card h5 {
        font-size: 0.95rem;
    }
}
