:root {
--gold: #D4AF37;
--light-gold: #F5E6A3;
--beige: #F5F5DC;
--dark-beige: #E6D8B5;
--black: #1a1a1a;
}

body {
font-family: 'Tajawal', sans-serif;
background: linear-gradient(135deg, #fef9e7 0%, #fdf6e3 50%, #faf3e0 100%);
line-height: 1.8;
min-height: 100vh;
}

.gold-text {
color: var(--gold);
font-weight: 700;
}

.faq-hero {
background: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(245,245,220,0.25) 100%);
padding: 100px 0 60px;
border-bottom: 3px solid var(--gold);
}

.faq-container {
max-width: 900px;
margin: -50px auto 50px;
}

.faq-card {
background: white;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
border: none;
margin-bottom: 20px;
overflow: hidden;
transition: all 0.3s ease;
}

.faq-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.faq-header {
background: linear-gradient(135deg, #fef9e7 0%, #fdf6e3 100%);
border: none;
padding: 1.5rem;
cursor: pointer;
transition: all 0.3s ease;
}

.faq-header:hover {
background: linear-gradient(135deg, #fdf6e3 0%, #fbf0d9 100%);
}

.faq-header:not(.collapsed) {
background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
color: white;
}

.faq-title {
font-weight: 600;
margin: 0;
display: flex;
align-items: center;
justify-content: space-between;
}

.faq-icon {
transition: transform 0.3s ease;
}

.faq-header:not(.collapsed) .faq-icon {
transform: rotate(180deg);
}

.faq-body {
padding: 1.5rem;
background: white;
border-top: 1px solid #f0f0f0;
}

.search-box {
max-width: 600px;
margin: 0 auto 3rem;
}

.search-box .form-control {
border-radius: 50px;
padding: 1rem 1.5rem;
border: 2px solid #e9ecef;
font-size: 1.1rem;
}

.search-box .form-control:focus {
border-color: var(--gold);
box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

.category-badges {
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: center;
margin-bottom: 3rem;
}

.category-badge {
background: white;
border: 2px solid var(--gold);
color: var(--gold);
padding: 0.5rem 1.5rem;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
}

.category-badge:hover,
.category-badge.active {
background: var(--gold);
color: white;
transform: translateY(-2px);
}

.contact-section {
background: white;
border-radius: 20px;
padding: 3rem;
margin-top: 4rem;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
text-align: center;
}

.contact-icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
}

.back-to-home {
display: inline-flex;
align-items: center;
gap: 10px;
color: var(--gold);
text-decoration: none;
font-weight: 600;
margin-top: 2rem;
transition: all 0.3s ease;
}

.back-to-home:hover {
gap: 15px;
color: var(--black);
}

.quick-actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
margin-top: 2rem;
}

.quick-action-btn {
background: white;
border: 2px solid var(--gold);
color: var(--gold);
padding: 0.75rem 1.5rem;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 8px;
}

.quick-action-btn:hover {
background: var(--gold);
color: white;
transform: translateY(-2px);
}

@media (max-width: 768px) {
.faq-hero {
    padding: 80px 0 40px;
}

.faq-container {
    margin: -30px auto 30px;
}

.contact-section {
    padding: 2rem 1.5rem;
}

.quick-actions {
    flex-direction: column;
    align-items: center;
}

.quick-action-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
}
}