/* FAQ Accordion Styles */
.faq-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.03);
    padding-top: 120px !important;
    padding-bottom: 120px !important;
}

.accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(15, 15, 35, 0.7);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.accordion-header {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.accordion-header h3 {
    margin: 0;
    color: var(--primary-cyan);
    font-size: 18px;
    font-weight: 600;
}

.accordion-icon {
    width: 25px;
    height: 25px;
    position: relative;
    transition: transform 0.3s ease;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background-color: var(--primary-cyan);
    transition: all 0.3s ease;
}

.accordion-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.accordion-icon::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.accordion-item.active .accordion-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 25px;
    color: var(--text-secondary);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(-8px);
    will-change: transform, opacity, max-height;
    backface-visibility: hidden;
    transform-origin: top;
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
    padding: 20px 25px;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    opacity: 1;
    transform: translateY(0);
    transition-duration: 0.4s;
}

/* Animated Contact Section */
.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 100px 0;
    background: linear-gradient(
        135deg,
        rgba(0, 10, 20, 0.9),
        rgba(0, 20, 40, 0.9)
    );
    overflow: hidden;
}

.contact-container {
    position: relative;
    z-index: 2;
}

.contact-card {
    background: rgba(15, 15, 35, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    padding-top: 120px !important;
    padding-bottom: 120px !important;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.2);
}

.contact-title {
    color: var(--primary-cyan);
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
}

.contact-subtitle {
    color: var(--text-secondary);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-method {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    width: 280px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.1);
    border-color: var(--primary-cyan);
}

.contact-method:hover::before {
    opacity: 1;
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-cyan);
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.contact-method:hover .contact-icon {
    animation: bounce 1s ease infinite;
}

.contact-method h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-method p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
    min-height: 60px;
}

.contact-btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(
        135deg,
        var(--primary-cyan),
        var(--primary-purple)
    );
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(
        135deg,
        var(--primary-purple),
        var(--primary-cyan)
    );
    transition: all 0.3s ease;
    z-index: -1;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.contact-btn:hover::before {
    width: 100%;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }

    .contact-method {
        width: 100%;
        max-width: 350px;
    }

    .contact-title {
        font-size: 2rem;
    }
}
