:root{
    --primary:#8B5E3C;
    --secondary:#C79A63;
    --light:#F5EFE7;
    --dark:#3D2B1F;
    --accent:#D7B38A;
    --white:#ffffff;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    font-family:'Poppins',sans-serif;
    background:var(--light);
    color:var(--dark);
    overflow-x:hidden;
}
a{
    text-decoration:none;
}
.navbar{
    background:rgba(255,255,255,0.94);
    backdrop-filter:blur(10px);
    padding:18px 0;
    box-shadow:0 2px 15px rgba(0,0,0,0.08);
}
.navbar-brand{
    display:flex;
    align-items:center;
    gap:12px;
}
.navbar-brand img{
    width:58px;
    height:58px;
    object-fit:contain;
}
.brand-text{
    font-family:'Playfair Display',serif;
    font-size:1.7rem;
    font-weight:700;
    color:var(--primary);
}
.nav-link{
    color:var(--dark);
    font-weight:500;
    margin:0 10px;
    transition:0.3s;
}
.nav-link:hover{
    color:var(--primary);
}
.notification-btn{
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:var(--primary);
    color:white;
    transition:0.3s;
}
.notification-btn:hover{
    background:var(--secondary);
}
.faq-hero{
    padding-top:180px;
    padding-bottom:120px;
    text-align:center;
    color:white;
    background:
    linear-gradient(rgba(61,43,31,0.75), rgba(61,43,31,0.75)),
    url('../images/hero3.jpg');
    background-size:cover;
    background-position:center;
}
.faq-hero h1{
    font-family:'Playfair Display',serif;
    font-size:4.5rem;
    margin-bottom:25px;
}
.faq-hero p{
    max-width:850px;
    margin:auto;
    line-height:1.9;
    font-size:1.1rem;
}
.faq-section{
    padding:110px 0;
}
.section-title{
    text-align:center;
    margin-bottom:70px;
}
.section-title h2{
    font-family:'Playfair Display',serif;
    font-size:3rem;
    color:var(--primary);
}
.faq-item{
    background:white;
    border-radius:24px;
    margin-bottom:25px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.07);
    transition:0.3s;
}
.faq-item:hover{
    transform:translateY(-4px);
}
.faq-question{
    width:100%;
    border:none;
    background:white;
    padding:30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    font-size:1.1rem;
    font-weight:600;
    color:var(--primary);
    cursor:pointer;
}
.faq-question i{
    transition:0.3s;
}
.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:0.4s ease;
    padding:0 30px;
}
.faq-answer p{
    padding-bottom:30px;
    color:#555;
    line-height:1.9;
}
.faq-item.active .faq-answer{
    max-height:300px;
}
.faq-item.active .faq-question i{
    transform:rotate(180deg);
}
.support-section{
    padding-bottom:110px;
}
.support-box{
    background:white;
    border-radius:35px;
    padding:60px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,0.08);
}
.support-box h2{
    font-family:'Playfair Display',serif;
    color:var(--primary);
    font-size:3rem;
    margin-bottom:25px;
}
.support-box p{
    max-width:700px;
    margin:auto;
    line-height:1.9;
    color:#555;
    margin-bottom:35px;
}
.support-btn{
    background:var(--primary);
    color:white;
    padding:16px 34px;
    border-radius:50px;
    transition:0.3s;
    display:inline-block;
    font-weight:600;
}
.support-btn:hover{
    background:var(--secondary);
    color:white;
}
footer{
    background:var(--dark);
    color:white;
    padding:70px 0 30px;
}
.footer-brand{
    font-family:'Playfair Display',serif;
    font-size:2rem;
    margin-bottom:20px;
}
.footer-links a{
    display:block;
    color:#d9d9d9;
    margin-bottom:12px;
    transition:0.3s;
}
.footer-links a:hover{
    color:var(--secondary);
}
.footer-divider{
    width:1px;
    background:rgba(255,255,255,0.2);
}
.developer-link{
    color:var(--secondary);
    font-weight:600;
}
.copyright{
    border-top:1px solid rgba(255,255,255,0.1);
    margin-top:50px;
    padding-top:25px;
    text-align:center;
}
.faq-modal-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.65);
    backdrop-filter:blur(6px);
    z-index:99999;
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transition:0.3s;
}
.faq-modal-overlay.active{
    opacity:1;
    visibility:visible;
}
.faq-modal{
    width:95%;
    max-width:850px;
    background:white;
    border-radius:35px;
    padding:50px;
    position:relative;
    transform:translateY(30px);
    transition:0.4s;
    box-shadow:0 25px 60px rgba(0,0,0,0.25);
}
.faq-modal-overlay.active .faq-modal{
    transform:translateY(0);
}
.faq-modal-close{
    position:absolute;
    top:25px;
    right:25px;
    width:48px;
    height:48px;
    border:none;
    border-radius:50%;
    background:#F5EFE7;
    color:#8B5E3C;
    font-size:20px;
    transition:0.3s;
}
.faq-modal-close:hover{
    background:#8B5E3C;
    color:white;
}
.faq-modal-header{
    margin-bottom:40px;
}
.faq-modal-header h2{
    font-family:'Playfair Display',serif;
    color:#8B5E3C;
    font-size:3rem;
    margin-bottom:15px;
}
.faq-modal-header p{
    color:#666;
    line-height:1.8;
}
.faq-input{
    border:none;
    background:#F5EFE7;
    border-radius:18px;
    padding:16px 20px;
    min-height:60px;
    color:#3D2B1F;
    box-shadow:none !important;
}
.faq-input:focus{
    background:#efe3d4;
}
.faq-textarea{
    min-height:180px;
    resize:none;
}
.form-group label{
    display:block;
    margin-bottom:12px;
    color:#8B5E3C;
    font-weight:600;
}
.faq-submit-btn{
    margin-top:35px;
    width:100%;
    border:none;
    background:#8B5E3C;
    color:white;
    height:65px;
    border-radius:20px;
    font-size:1.05rem;
    font-weight:600;
    transition:0.3s;
}
.faq-submit-btn:hover{
    background:#C79A63;
}
body.modal-open{
    overflow:hidden;
}

@media(max-width:768px){
    .faq-modal{
        padding:35px 25px;
    }
    .faq-modal-header h2{
        font-size:2rem;
    }
    .faq-modal{
        max-height:90vh;
        overflow-y:auto;
        -webkit-overflow-scrolling:touch;
    }
    .faq-modal-overlay{
        overflow-y:auto;
    }
}

@media(max-width:991px){
    .faq-hero h1{
        font-size:3rem;
    }
    .support-box{
        padding:40px 25px;
    }
    .footer-divider{
        display:none;
    }

}