/* FAQ Section Styles */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(254, 63, 64, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(254, 63, 64, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.faq-tag {
    display: inline-block;
    background: linear-gradient(135deg, #FE3F40, #FE3F40);
    color: #000000;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.faq-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.faq-title .highlight {
    color: #FE3F40;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(254, 63, 64, 0.2);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-item:hover {
    border-color: rgba(254, 63, 64, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 255, 136, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #FE3F40, #FE3F40);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-icon i {
    color: #000000;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 255, 136, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    margin: 0;
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.faq-cta-text {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
}

.faq-cta-subtitle {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 30px;
}

.calendly-container {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(254, 63, 64, 0.2);
}

.calendly-inline-widget {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-cta-alternative {
    margin-top: 30px;
    text-align: center;
}

.faq-cta-alternative p {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 25px;
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 3px;
    flex-wrap: wrap;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-icon:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.faq-cta-btn {
    background: linear-gradient(135deg, #FE3F40, #FE3F40);
    color: #000000;
    border: none;
    padding: 15px 30px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.faq-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(254, 63, 64, 0.3);
    color: #000000;
}

.faq-cta-btn i {
    font-size: 18px;
}

.btn-secondary {
    background: transparent;
    color: #FE3F40;
    border: 2px solid #FE3F40;
    padding: 15px 30px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #FE3F40;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(254, 63, 64, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .faq-container {
        margin: 0 20px;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 25px 20px 25px;
        font-size: 0.95rem;
    }
    
    .faq-cta-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .calendly-container {
        margin: 20px 0;
        padding: 15px;
    }
    
    .calendly-inline-widget {
        min-width: 280px !important;
        height: 500px !important;
    }
    
    .faq-cta-text {
        font-size: 1.1rem;
    }
    
    .faq-cta-subtitle {
        font-size: 0.9rem;
    }
    
    .contact-icons {
        gap: 2px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
        padding-right: 15px;
    }
    
    .faq-icon {
        width: 25px;
        height: 25px;
    }
    
    .faq-icon i {
        font-size: 12px;
    }
    
    .faq-answer p {
        padding: 0 20px 18px 20px;
        font-size: 0.9rem;
    }
    
    .faq-cta-text {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .calendly-container {
        margin: 15px 0;
        padding: 10px;
    }
    
    .calendly-inline-widget {
        min-width: 250px !important;
        height: 450px !important;
    }
    
    .faq-cta-subtitle {
        font-size: 0.85rem;
        padding: 0 20px;
    }
    
    .contact-icons {
        gap: 1px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}