/* FAQ Specific Styles - Clean Design Without Navigation */

/* FAQ Header - Completely seamless with page background */
header {
    background: var(--light-bg); /* Exact same background as page */
    padding: 20px 0;
    position: relative;
    z-index: 1000;
    margin: 0;
    border: none; /* Remove any borders */
    box-shadow: none; /* Remove any shadows */
}

header .container {
    display: flex;
    justify-content: center; /* Center the logo */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header .logo {
    position: static; /* Override any absolute positioning */
    margin: 0; /* Remove any margins that could offset centering */
}

header .logo img {
    height: 75px; /* Increased from 50px to 75px (50% bigger) */
    width: auto;
}

/* FAQ Content Section - Adjusted for blended header */
#faq-content {
    padding: 55px 0; /* Reduced from 80px to 55px (25px reduction) */
    background: var(--light-bg);
}

/* FAQ Main Header - Perfect Positioning */
.faq-main-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

/* Main Section Title - Above the line with blue gradient */
.main-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px; /* Space before the dash */
    text-align: center;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, var(--primary-dark-blue), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Signature Dash - Between title and subtitle */
.signature-dash {
    width: 80px;
    height: 4px;
    background: var(--accent-gold);
    margin: 0 auto 25px; /* Space after the dash */
    border-radius: 2px;
}

/* Section Subtitle - Below the line */
.section-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--accent-gold);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
    font-style: italic;
}

/* FAQ Categories */
.faq-category {
    margin-bottom: 50px;
}

/* Category Title - Centered and Matching Landing Page with blue gradient */
.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    background: linear-gradient(90deg, var(--primary-dark-blue), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Category Title Signature Dash - Matching Landing Page */
.category-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    width: 120px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-dark-blue));
    border-radius: 3px;
}

/* FAQ Boxes - Static styled containers with refined hover effects */
.faq-box {
    background: white;
    border-radius: 16px;
    margin: 0 auto 30px; /* Center the boxes */
    padding: 35px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1.3px solid transparent; /* Reduced from 2px (35% reduction) */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    max-width: calc(100% - 30px); /* Reduced by 15px on each side for desktop */
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .faq-box {
        max-width: calc(100% - 6px); /* Reduced by 3px on each side for mobile */
        padding: 25px; /* Slightly less padding on mobile */
    }
}

.faq-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #f4d03f 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.faq-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.12); /* Reduced from 0.2 (40% reduction) */
    border-color: var(--accent-gold);
}

.faq-box:hover::before {
    opacity: 0.03; /* Reduced from 0.05 (40% reduction) */
}

/* FAQ Question Title - Gold and Matching Fonts */
.faq-question-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.faq-box:hover .faq-question-title {
    color: #b8860b;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.18); /* Reduced from 0.3 (40% reduction) */
}

/* FAQ Content Text - Matching Landing Page Typography */
.faq-content-text {
    position: relative;
    z-index: 2;
}

.faq-content-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 18px;
    transition: color 0.3s ease;
}

.faq-content-text p:last-child {
    margin-bottom: 0;
}

.faq-box:hover .faq-content-text p {
    color: var(--primary-dark);
}

/* Footer Styling */
footer {
    background: var(--primary-dark);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--accent-gold);
    text-decoration: none;
    margin: 0 15px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

footer p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #ccc;
    margin: 0;
}

/* Animation Classes */
.slide-in-up {
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.fade-in.delay-200 {
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.fade-in.delay-300 {
    animation-delay: 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Enhanced Gold Accents - Removed animated underline */

@keyframes goldShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }
    
    header .logo img {
        height: 40px;
    }
    
    #faq-content {
        padding: 60px 0;
    }
    
    .faq-main-header {
        margin-bottom: 40px;
    }
    
    .main-section-title {
        font-size: 2.8rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .category-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .faq-box {
        padding: 25px;
        margin-bottom: 25px;
        border-width: 1px; /* Adjusted for mobile */
    }
    
    .faq-question-title {
        font-size: 1.4rem;
    }
    
    .faq-content-text p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .faq-box:hover {
        transform: translateY(-4px) scale(1.01);
    }
}

@media (max-width: 480px) {
    header {
        padding: 12px 0;
    }
    
    header .logo img {
        height: 35px;
    }
    
    #faq-content {
        padding: 40px 0;
    }
    
    .main-section-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .signature-dash {
        width: 60px;
        height: 3px;
        margin-bottom: 20px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .category-title {
        font-size: 1.7rem;
        margin-bottom: 25px;
    }
    
    .category-title::after {
        width: 40px;
        height: 2px;
        bottom: -10px;
    }
    
    .faq-box {
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 12px;
        border-width: 1px; /* Adjusted for mobile */
    }
    
    .faq-question-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .faq-content-text p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
}


/* CSS Variables for Blue Gradient - Matching Landing Page */
:root {
    --primary-dark-blue: #0f193c;
    --secondary-blue: #6495ed;
    --primary-dark: #0f193c; /* Fallback for other elements */
    --accent-gold: #daa520;
    --light-bg: #f8f9fa;
    --text-dark: #333;
}

