/* GLOBAL */
body {
    font-family: 'Poppins', sans-serif;
    background: #f4f7fb;
    color: #1a1a1a;
}

/* HERO SECTION */
.help-hero {
    position: relative;
    background: linear-gradient(rgba(10,35,70,0.85), rgba(10,35,70,0.85)),
                url("../../images/help.jpg") center/cover no-repeat;
    padding: 100px 20px;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-content p {
    opacity: 0.85;
    margin-bottom: 25px;
}

/* SEARCH BAR */
.hero-content input {
    width: 380px;
    max-width: 90%;
    padding: 15px 20px;
    border-radius: 50px;
    border: none;
    outline: none;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.hero-content input:focus {
    transform: scale(1.05);
}

/* CATEGORY GRID */
.help-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    padding: 60px;
}

/* CATEGORY CARD */
.category-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 30px;
    transition: all 0.35s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

/* subtle gradient glow */
.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(11,47,91,0.2), transparent);
    opacity: 0;
    transition: 0.4s;
}

.category-card:hover::before {
    opacity: 1;
}

/* hover */
.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* text */
.category-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.category-card p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.category-card a {
    color: #0b2f5b;
    font-weight: 500;
    text-decoration: none;
}

/* FAQ SECTION */
.faq-section {
    padding: 60px;
}

.faq-section h2 {
    margin-bottom: 25px;
}

/* FAQ CARD */
.faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.faq-item:hover {
    transform: scale(1.01);
}

/* QUESTION */
.faq-question {
    width: 100%;
    padding: 18px;
    background: linear-gradient(90deg, #0b2f5b, #1c4d8c);
    color: white;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 15px;
    position: relative;
}

/* arrow icon */
.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 20px;
}

/* ANSWER */
.faq-answer {
    display: none;
    padding: 18px;
    font-size: 14px;
    background: #f9fbff;
    border-top: 1px solid #eee;
}

/* CONTACT CTA */
.help-contact {
    text-align: center;
    padding: 70px 20px;
    background: linear-gradient(135deg, #0b2f5b, #1c4d8c);
    color: white;
}

.help-contact h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.help-contact p {
    opacity: 0.9;
    margin-bottom: 20px;
}

/* BUTTON */
.contact-btn {
    display: inline-block;
    background: white;
    color: #0b2f5b;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.contact-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .help-categories {
        padding: 30px;
    }

    .faq-section {
        padding: 30px;
    }
}