/* =========================================
   FAQ SECTION - MODERN ACCORDION DESIGN
   ========================================= */

.faq-section {
    padding: clamp(60px, 10vw, 100px) 5%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 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% 50%, rgba(36, 70, 189, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(51, 153, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-header {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 60px);
}

.faq-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(36, 70, 189, 0.15);
    border: 1px solid rgba(36, 70, 189, 0.3);
    border-radius: 50px;
    color: #3399ff;
    font-weight: 600;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.faq-badge:hover {
    background: rgba(36, 70, 189, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(36, 70, 189, 0.3);
}

.faq-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-family: "Orbitron", sans-serif;
    color: #fff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2446bd 0%, #3399ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-header p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(51, 153, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.faq-item[open] {
    background: rgba(255, 255, 255, 0.08);
    border-color: #3399ff;
    box-shadow: 0 10px 40px rgba(36, 70, 189, 0.3);
}

.faq-item summary {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(36, 70, 189, 0.2);
    border-radius: 10px;
    color: #3399ff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.faq-item[open] .faq-icon {
    background: #2446bd;
    color: #fff;
    transform: scale(1.1);
}

.faq-question {
    flex: 1;
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

.faq-toggle {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #3399ff;
    transition: all 0.3s ease;
}

.faq-item[open] .faq-toggle {
    background: #3399ff;
    color: #000;
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px 25px 80px;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p {
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    line-height: 1.8;
    color: #b0b0b0;
    margin: 0;
}

.faq-answer strong {
    color: #3399ff;
    font-weight: 700;
}

.faq-answer a {
    color: #3399ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-answer a:hover {
    color: #fff;
    text-decoration: underline;
}

.faq-cta {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin-top: 40px;
}

.faq-cta p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #2446bd 0%, #3399ff 100%);
    color: #fff;
    text-decoration: none;
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: bold;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(36, 70, 189, 0.4);
}

.faq-contact-btn:hover {
    background: #3399ff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(51, 153, 255, 0.5);
}

.faq-contact-btn i {
    font-size: 1.2rem;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30% {
        transform: rotate(-10deg);
    }

    20%,
    40% {
        transform: rotate(10deg);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 50px 5%;
    }

    .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-item summary {
        padding: 18px 20px;
        gap: 12px;
    }

    .faq-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .faq-toggle {
        width: 26px;
        height: 26px;
    }

    .faq-cta {
        padding: 30px 15px;
    }

    .faq-contact-btn {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .faq-header h2 {
        font-size: 1.8rem;
    }

    .faq-question {
        font-size: 0.95rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}