/* ================= FAQ HERO ================= */

.faq-hero {
    padding: 140px 20px 70px;
    text-align: center;
    background: linear-gradient(135deg, #0f0f0f, #151515);
    color: white;
}

.faq-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 46px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: #f5b041;
}

.faq-hero p {
    font-size: 16px;
    font-weight: 400;
    color: #bdbdbd;
}


/* ================= FAQ SECTION ================= */

.faq-section {
    padding: -7px 10%;
    background: #f7f7f7;
}

.faq-container {
    max-width: 900px;
    margin: auto;
}


/* ================= FAQ CARD ================= */

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 14px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.08);
    overflow: hidden;
    border-left: 6px solid #f5b041;
}


/* ================= QUESTION ================= */

.faq-question {
    width: 100%;
    padding: 22px 26px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    background: white;
    color: #222;
    border: none;
    cursor: pointer;

    display: flex;
    justify-content: space-between;
    align-items: center;

    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #fff8ef;
}

.faq-question i {
    color: #f5b041;
    font-size: 14px;
}


/* ================= ANSWER ================= */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fafafa;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    font-size: 15px;
    font-weight: 400;
    padding: 18px 26px;
    color: #555;
    line-height: 1.7;
}

/* ================= FAQ SEARCH ================= */

.faq-search{
    padding:60px 10%;
    background:#f9f9f9;
    text-align:center;
}

.faq-search-box h2{
    font-size:32px;
    margin-bottom:20px;
}

.search-container{
    position:relative;
    max-width:500px;
    margin:auto;
}

.search-container input{
    width:100%;
    padding:14px 45px 14px 18px;
    border-radius:30px;
    border:1px solid #ddd;
    font-size:15px;
}

.search-container i{
    position:absolute;
    right:18px;
    top:50%;
    transform:translateY(-50%);
    color:#999;
}


/* ================= FAQ TITLE ================= */

.faq-title{
    text-align:center;
    margin-bottom:40px;
    font-size:28px;
}


/* ================= ASK QUESTION ================= */

.ask-question{
    padding:80px 10%;
    background:#0f0f0f;
    color:white;
}

.ask-container{
    max-width:700px;
    margin:auto;
    text-align:center;
}

.ask-container h2{
    font-size:32px;
    margin-bottom:10px;
    color:#f5b041;
}

.ask-container p{
    margin-bottom:30px;
    color:#bbb;
}


/* ================= FORM ================= */

.question-form{
    background:#141414;
    padding:40px;
    border-radius:12px;
}

.form-row{
    display:flex;
    gap:20px;
    margin-bottom:20px;
}

.question-form input,
.question-form textarea{
    width:100%;
    padding:14px;
    border:none;
    border-radius:6px;
    margin-bottom:20px;
    font-size:14px;
}

.question-form textarea{
    resize:none;
}

.question-form button{
    background:#f5b041;
    color:black;
    padding:14px 28px;
    border:none;
    border-radius:30px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.question-form button:hover{
    background:#ffbf66;
}


/* ================= RESPONSIVE ================= */

@media(max-width:768px){

    .form-row{
        flex-direction:column;
    }

    .faq-hero h1{
        font-size:32px;
    }

    .faq-search-box h2{
        font-size:24px;
    }

}

#formMessage{
margin-top:15px;
font-weight:600;
font-size:15px;
}

.input-group{
    width:100%;
}

.error{
    color:red;
    font-size:13px;
    display:block;
    margin-top:5px;
}

.input-error{
    border:1px solid red;
}

.faq-question-text{
color:#555;
margin-bottom:10px;
}

.faq-answer-text{
background:#f7f7f7;
padding:10px;
border-radius:6px;
}