/* ============================================
   VODKA FAQ SECTION STYLES
   ============================================ */

.vodka-faq-section {
    padding: 60px 0;
    background: #1a1a2e;
    position: relative;
}

.vodka-faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.vodka-faq-title {
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vodka-faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vodka-faq-item {
    background: #16213e;
    border: 2px solid rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.vodka-faq-item:hover {
    border-color: #00d4ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.2);
}

.vodka-faq-question {
    color: #ffffff;
    padding: 25px 30px;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    line-height: 1.4;
}

.vodka-faq-question:hover {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.05);
}

.vodka-faq-icon {
    font-size: 1.5rem;
    color: #00d4ff;
    transition: transform 0.3s ease;
    font-weight: 300;
    line-height: 1;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 20px;
}

.vodka-faq-item.active .vodka-faq-icon {
    transform: rotate(45deg);
}

.vodka-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(0, 212, 255, 0.03);
}

.vodka-faq-answer p {
    color: #b8c5d6;
    line-height: 1.7;
    margin: 0;
    padding: 0 30px 25px;
    font-size: 1rem;
}

.vodka-faq-item.active .vodka-faq-answer {
    max-height: 300px;
    padding-top: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .vodka-faq-section {
        padding: 40px 0;
    }
    
    .vodka-faq-container {
        padding: 0 15px;
    }
    
    .vodka-faq-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .vodka-faq-question {
        padding: 20px 25px;
        font-size: 1.1rem;
    }
    
    .vodka-faq-answer p {
        padding: 0 25px 20px;
        font-size: 0.95rem;
    }
    
    .vodka-faq-icon {
        margin-left: 15px;
    }
}

@media (max-width: 480px) {
    .vodka-faq-title {
        font-size: 1.8rem;
    }
    
    .vodka-faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }
    
    .vodka-faq-answer p {
        padding: 0 20px 18px;
        font-size: 0.9rem;
    }
}