:root{
    --navy-deep:#0a1628;
    --navy:#0d1f3c;
    --gold:#c8a84b;
    --gold-light:#e8cc7a;
    --bg:#f5f7fa;
    --text:#1c2431;
    --muted:#7f8fa4;
    --line:#e8ecf2;
}

body{
    background:var(--bg);
    font-family:'Inter',sans-serif;
    color:var(--text);
}

/* =====================================
   HERO
===================================== */

.help-hero{
    background:
    linear-gradient(
        rgba(10,22,40,.93),
        rgba(10,22,40,.93)
    ),
    url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d');

    background-size:cover;
    background-position:center;
    color:#fff;
    padding:120px 0 100px;
    position:relative;
}

.help-hero::after{
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    height:4px;
    background:linear-gradient(
        90deg,
        var(--gold),
        var(--gold-light),
        var(--gold)
    );
}

.eyebrow{
    display:inline-block;
    padding:8px 20px;
    border-radius:30px;
    border:1px solid rgba(200,168,75,.4);
    background:rgba(200,168,75,.08);
    color:var(--gold);
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:700;
    margin-bottom:20px;
}

.help-hero h1{
    font-size:58px;
    font-weight:800;
    margin-bottom:15px;
}

.help-hero h1 span{
    color:var(--gold);
}

.help-hero p{
    max-width:700px;
    margin:auto;
    color:#c3cfdd;
    font-size:17px;
}

.search-box{
    max-width:700px;
    margin:40px auto 0;
    display:flex;
    overflow:hidden;
    border-radius:4px;
    border:1px solid rgba(200,168,75,.35);
    background:rgba(255,255,255,.05);
}

.search-box input{
    flex:1;
    border:none;
    padding:18px 20px;
    background:transparent;
    color:#fff;
}

.search-box input::placeholder{
    color:#8d9bb0;
}

.search-box input:focus{
    outline:none;
}

.search-box button{
    border:none;
    background:var(--gold);
    color:var(--navy-deep);
    font-weight:700;
    padding:0 30px;
}

.search-box button:hover{
    background:var(--gold-light);
}

/* =====================================
   SECTION TITLE
===================================== */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:38px;
    font-weight:800;
    color:var(--navy-deep);
    margin-bottom:12px;
}

.section-title p{
    color:var(--muted);
    max-width:600px;
    margin:auto;
}

/* =====================================
   HELP CARDS
===================================== */

.help-card{
    background:#fff;
    border-radius:8px;
    padding:35px;
    height:100%;
    transition:.3s;
    border:1px solid var(--line);
    box-shadow:0 10px 30px rgba(10,22,40,.05);
}

.help-card:hover{
    transform:translateY(-6px);
    border-color:var(--gold);
}

.help-card i{
    width:65px;
    height:65px;
    border-radius:50%;
    background:var(--navy-deep);
    color:var(--gold);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:25px;
    margin-bottom:25px;
}

.help-card h4{
    color:var(--navy-deep);
    font-weight:700;
    margin-bottom:12px;
}

.help-card p{
    color:var(--muted);
    margin-bottom:15px;
}

.help-card a{
    text-decoration:none;
    color:var(--gold);
    font-weight:700;
}

.help-card a:hover{
    color:var(--navy-deep);
}

/* =====================================
   FAQ SECTION
===================================== */

.faq-section{
    padding:90px 0;
    background:#fff;
}

.accordion-item{
    border:1px solid var(--line);
    margin-bottom:15px;
    border-radius:6px !important;
    overflow:hidden;
}

.accordion-button{
    font-weight:700;
    color:var(--navy-deep);
    padding:20px;
    box-shadow:none !important;
}

.accordion-button:not(.collapsed){
    background:var(--navy-deep);
    color:#fff;
}

.accordion-button:not(.collapsed)::after{
    filter:brightness(0) invert(1);
}

.accordion-body{
    padding:20px;
    color:#666;
    line-height:1.8;
}

/* =====================================
   CONTACT SECTION
===================================== */

.support-section{
    padding:80px 0;
    background:
    linear-gradient(
        135deg,
        var(--navy-deep),
        var(--navy)
    );
    color:#fff;
    position:relative;
}

.support-section::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:4px;
    background:linear-gradient(
        90deg,
        var(--gold),
        var(--gold-light),
        var(--gold)
    );
}

.support-section h2{
    font-size:40px;
    font-weight:800;
    margin-bottom:15px;
}

.support-section p{
    color:#c3cfdd;
    margin:0;
}

.support-btn{
    display:inline-block;
    background:var(--gold);
    color:var(--navy-deep);
    text-decoration:none;
    padding:15px 35px;
    border-radius:4px;
    font-weight:700;
    transition:.3s;
}

.support-btn:hover{
    background:var(--gold-light);
    color:var(--navy-deep);
    transform:translateY(-2px);
}

/* =====================================
   EXTRA HELP BOXES
===================================== */

.help-extra{
    padding:90px 0;
}

.help-stat{
    background:#fff;
    text-align:center;
    padding:40px;
    border-radius:8px;
    border-top:4px solid var(--gold);
    box-shadow:0 10px 30px rgba(10,22,40,.05);
}

.help-stat h3{
    font-size:40px;
    color:var(--navy-deep);
    font-weight:800;
}

.help-stat p{
    color:var(--muted);
    margin:0;
}

/* =====================================
   BREADCRUMB
===================================== */

.breadcrumb-custom{
    margin-bottom:30px;
}

.breadcrumb-custom a{
    color:var(--gold);
    text-decoration:none;
}

.breadcrumb-custom span{
    color:#bbb;
}

/* =====================================
   RESPONSIVE
===================================== */

@media(max-width:992px){

    .help-hero h1{
        font-size:46px;
    }

    .support-section{
        text-align:center;
    }

    .support-btn{
        margin-top:20px;
    }
}

@media(max-width:768px){

    .help-hero{
        padding:90px 0 70px;
    }

    .help-hero h1{
        font-size:34px;
    }

    .search-box{
        flex-direction:column;
    }

    .search-box button{
        width:100%;
        padding:15px;
    }

    .section-title h2{
        font-size:30px;
    }

    .support-section h2{
        font-size:30px;
    }

    .help-card{
        padding:25px;
    }
}