/* FAQ Specific Styles */

.faq-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 120px 0 80px 0;
    text-align: center;
    margin-top: 0;
}

.faq-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.faq-hero p {
    font-size: 1.3em;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.faq-content {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 20px auto;
    background-color: #2c2c2c;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #e0e0e0;
    font-size: 1.2em;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #333333;
    color: #ffd700;
}

.faq-question[aria-expanded="true"] {
    background-color: #333333;
    color: #ffd700;
}

.faq-emoji {
    font-size: 1.5em;
    min-width: 40px;
}

.faq-title {
    flex: 1;
    font-family: 'Playfair Display', serif;
}

.faq-icon {
    font-size: 1em;
    transition: transform 0.3s ease;
    color: #ffd700;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.open {
    max-height: 1000px;
    padding-bottom: 30px;
}

.faq-content-inner {
    padding: 0 30px;
    color: #b0b0b0;
    line-height: 1.7;
}

.faq-content-inner p {
    margin-bottom: 15px;
    font-size: 1.05em;
}

.faq-content-inner ul {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-content-inner li {
    margin-bottom: 8px;
    color: #c0c0c0;
}

.faq-content-inner strong {
    color: #ffd700;
    font-weight: 600;
}

.faq-cta {
    background-color: #222222;
    padding: 60px 0;
    text-align: center;
    color: #e0e0e0;
}

.faq-cta h2 {
    font-family: 'Playfair Display', serif;
    color: #ffd700;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.faq-cta p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-hero h1 {
        font-size: 2.5em;
    }
    
    .faq-hero p {
        font-size: 1.1em;
        padding: 0 20px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1.1em;
        gap: 12px;
    }
    
    .faq-content-inner {
        padding: 0 20px;
    }
    
    .faq-emoji {
        font-size: 1.3em;
        min-width: 35px;
    }
}

@media (max-width: 480px) {
    .faq-hero {
        padding: 80px 0 60px 0;
    }
    
    .faq-hero h1 {
        font-size: 2em;
    }
    
    .faq-content {
        padding: 60px 0;
    }
    
    .faq-item {
        margin: 0 10px 15px 10px;
    }
}