.faq-wrapper .info-cta {
    margin-top: 80px;
    border-radius: 4px;
}

/* Luxury FAQ Page Styles */

/* Search Box */
.faq-search {
    margin-bottom: 50px;
    position: relative;
}

.faq-search input {
    width: 100%;
    padding: 20px 25px 20px 60px;
    border: 1px solid #ddd;
    font-size: 1.1rem;
    transition: all 0.3s;
    background: #fff;
    box-shadow: var(--shadow-sm);
    font-family: var(--font-body);
    box-sizing: border-box;
}

.faq-search input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: var(--shadow-md);
}

.faq-search i {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.faq-search input:focus + i {
    color: var(--primary);
}

/* FAQ Items */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #ddd;
    box-shadow: var(--shadow-sm);
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
    transition: all 0.3s;
    flex-shrink: 0;
    border: 1px solid #eee;
    border-radius: 50%;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

.faq-answer {
    display: none;
    padding: 0 25px 25px;
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    display: block;
    border-top-color: #f9f9f9;
    padding-top: 20px;
}

/* Empty State */
.faq-empty {
    text-align: center;
    padding: 60px 40px;
    background: #f9f9f9;
    border: 1px solid #eee;
}

.faq-empty i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 20px;
}

.faq-empty h4 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.faq-empty p {
    color: #888;
    font-size: 1rem;
}
