/* FAQ PAGE - LUXURY DESIGN */

/* BASIC RESET */
* {
    box-sizing: border-box;
}

/* LUXURY HERO SECTION */
.luxury-hero.faq-hero {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
}

.luxury-badge {
    display: inline-block;
    background: #DC143C;
    color: #FFFFFF;
    padding: 0.5rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    border: 2px solid #FFFFFF;
}

.luxury-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: #DC143C;
}

.divider-icon {
    color: #DC143C;
    font-size: 1.2rem;
    margin: 0 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
}

.luxury-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #CCCCCC;
    margin-top: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ CONTENT SECTION */
.faq-content {
    padding: 6rem 0;
    background: #FFFFFF;
    position: relative;
}

.faq-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(0,0,0,0.01) 100px, rgba(0,0,0,0.01) 102px),
        repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(220,20,60,0.01) 100px, rgba(220,20,60,0.01) 102px);
    pointer-events: none;
}

.faq-wrapper {
    position: relative;
    z-index: 2;
}

/* FAQ ITEMS */
.faq-item {
    background: #FFFFFF;
    border: 3px solid #000000;
    border-radius: 0;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.faq-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #DC143C;
    opacity: 0.3;
    z-index: 1;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.faq-question h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.question-icon {
    width: 60px;
    height: 60px;
    background: #DC143C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 3px solid #000000;
}

.question-icon i {
    font-size: 1.5rem;
    color: #FFFFFF;
}

.faq-answer {
    position: relative;
    z-index: 2;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333333;
    margin: 0;
    text-align: justify;
}

.faq-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #DC143C;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .luxury-title {
        font-size: 2.5rem;
    }

    .faq-item {
        padding: 2rem 1.5rem;
        border-width: 2px;
    }

    .faq-question {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .faq-question h3 {
        font-size: 1.5rem;
        padding-right: 0;
    }

    .question-icon {
        width: 50px;
        height: 50px;
        align-self: flex-end;
    }

    .question-icon i {
        font-size: 1.2rem;
    }

    .faq-number {
        font-size: 2.5rem;
        top: 0.5rem;
        right: 1rem;
    }
}

@media (max-width: 576px) {
    .luxury-hero.faq-hero {
        min-height: 50vh;
    }

    .luxury-title {
        font-size: 2rem;
    }

    .faq-content {
        padding: 4rem 0;
    }

    .faq-item {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .faq-question h3 {
        font-size: 1.3rem;
    }

    .faq-number {
        font-size: 2rem;
    }

    .question-icon {
        width: 45px;
        height: 45px;
    }

    .question-icon i {
        font-size: 1rem;
    }
}

/* ADDITIONAL LUXURY TOUCHES */
.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #DC143C 50%, transparent 100%);
    opacity: 0.5;
}

.faq-answer p strong,
.faq-answer p b {
    color: #DC143C;
}

.faq-answer p a {
    color: #DC143C;
    text-decoration: none;
    border-bottom: 1px solid #DC143C;
}

.faq-answer p a:hover {
    color: #000000;
    border-bottom-color: #000000;
}