.faq-premium-section {
    position: relative;
    min-height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    padding: 100px 0;
    overflow: hidden;
}

.faq-bg-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* Dark overlay with a gradient to make text pop on the right */
.faq-premium-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 0;
}

.faq-glass-card {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px;
    border-radius: 40px;
}

/* Accordion Nodes */
.faq-node {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
}

.faq-count {
    font-family: var(--smartmove-font-two);
    color: white;
    font-weight: 800;
    font-size: 14px;
    margin-right: 20px;
    opacity: 0.8;
}

.faq-text {
    color: #fff;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    flex-grow: 1;
}

/* Modern Plus/Minus Icon */
.faq-plus {
    width: 20px; height: 20px;
    position: relative;
}

.faq-plus span {
    position: absolute;
    background: #fff;
    transition: 0.3s;
}

.faq-plus span:nth-child(1) { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq-plus span:nth-child(2) { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }

.faq-node.active .faq-plus span:nth-child(2) { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-node.active .faq-text { color: white; }

/* Smooth Answer Reveal */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.faq-node.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 0 30px 35px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.8;
}