/* FAQ Section Styles */
.faq-section {
    width: 100%;
    background: #000;
    padding: 100px 0;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(222, 116, 21, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 104, 166, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.faq-container {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-columns {
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

/* Left Column Styles */
.faq-left {
    width: 400px;
    height: 410px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.faq-label {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.faq-title {
    font-size: 60px;
    font-weight: 400;
    color: white;
    line-height: 1.1;
    margin: 0;
}

.faq-contact {
    margin-top: auto;
}

.contact-bold {
    font-size: 20px;
    font-weight: 400;
    color: white;
    margin: 0 0 10px 0;
}

.contact-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.contact-btn {
    width: 177px;
    height: 50px;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Right Column - Accordion Styles */
.faq-right {
    flex: 1;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.accordion-header {
    width: 100%;
    height: 64px;
    padding: 0 30px;
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.0.5);
}

.accordion-icon {
    transition: all 0.5s ease;
    flex-shrink: 0;
}

.vertical-line {
    transition: all 0.5s ease;
    transform-origin: center;
}

.horizontal-line {
    transition: all 0.5s ease;
    transform-origin: center;
}

/* Closed state - Plus icon */
.accordion-item .vertical-line {
    opacity: 1;
    transform: rotate(0deg) scaleY(1);
}

.accordion-item .horizontal-line {
    opacity: 1;
    transform: rotate(0deg) scaleX(1);
}

/* Open state - Minus icon */
.accordion-item.active .vertical-line {
    opacity: 0;
    transform: rotate(90deg) scaleY(0);
}

.accordion-item.active .horizontal-line {
    opacity: 1;
    transform: rotate(0deg) scaleX(1);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

.accordion-content p {
    padding: 0 30px 30px;
    margin: 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
    .faq-container {
        max-width: 95%;
    }

    .faq-columns {
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    .faq-columns {
        flex-direction: column;
        gap: 50px;
    }

    .faq-left {
        width: 100%;
        height: auto;
        text-align: center;
    }

    .faq-title {
        font-size: 48px;
        margin: 20px 0;
    }

    .faq-contact {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 36px;
    }

    .accordion-header {
        height: auto;
        min-height: 64px;
        padding: 20px 25px;
        font-size: 16px;
    }

    .accordion-content p {
        padding: 0 25px 25px;
        font-size: 15px;
    }

    .contact-btn {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 32px;
    }

    .contact-bold {
        font-size: 18px;
    }

    .contact-text {
        font-size: 15px;
    }

    .accordion-header {
        padding: 18px 20px;
        font-size: 15px;
    }

    .accordion-content p {
        padding: 0 20px 20px;
        font-size: 14px;
    }

    .contact-btn {
        width: 100%;
        max-width: 200px;
    }
}