/* ========================================
   LUXURY FAQ PAGE STYLES
   ======================================== */

.page-header {
    position: relative;
    padding: 180px 0 100px;
    background: #0b1c2e;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('hero-main.jpg');
    /* Using same asset for consistency, or replace */
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #0b1c2e);
    z-index: 2;
}

.page-header-content {
    position: relative;
    z-index: 3;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.text-gold {
    color: #d4af37;
    background: linear-gradient(135deg, #d4af37, #f7d794, #b8941f);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* FAQ SECTION */
.faq-section {
    padding: 100px 0;
    background: #fffcf5;
    /* Warm Cream */
}

.section-intro {
    margin-bottom: 60px;
}

.sub-label-badge {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.section-title-dark {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-desc {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* FAQ GRID */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.faq-section .faq-cat-title {
    font-family: 'Cairo', sans-serif;
    font-size: 14px !important;
    /* Forces the size */
    color: #0b1c2e;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: normal;
}

/* Icon style removed */

/* FAQ ITEM */
.faq-item {
    margin-bottom: 15px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}

.faq-item.active {
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    transition: 0.3s;
}

.faq-question:hover {
    color: #d4af37;
}

.faq-item.active .faq-question {
    color: #d4af37;
    background: #fffbf0;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    background: #f5f5f5;
    border-radius: 50%;
    color: #888;
    transition: 0.3s;
}

.faq-item.active .faq-icon {
    background: #d4af37;
    color: #fff;
    transform: rotate(45deg);
    /* Make plus a cross */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* CTA BOX */
.faq-cta-box {
    margin-top: 60px;
    background: #25D366;
    /* Using WhatsApp Green base or Dark Blue */
    background: linear-gradient(135deg, #0b1c2e 0%, #1a2f45 100%);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    box-shadow: 0 15px 40px rgba(11, 28, 46, 0.2);
    grid-column: span 2;
}

.cta-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-content p {
    color: #ccc;
    font-size: 1.1rem;
    margin: 0;
}

.cta-actions {
    display: flex;
    gap: 15px;
}

/* Borrowing btn-royal from hero.css but adjusting slightly if needed */
.btn-royal {
    background: linear-gradient(45deg, #d4af37, #f7d794);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    border: none;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    transition: 0.3s;
}

.btn-royal:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
    color: #fff;
}

.btn-whatsapp-outline {
    background: transparent;
    border: 2px solid #25D366;
    color: #25D366;
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn-whatsapp-outline:hover {
    background: #25D366;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-cta-box {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}