/* =========================
   BASE
========================= */
body {
    font-family: Arial, Helvetica, sans-serif;
}

/* =========================
   HERO SECTIONS
========================= */

/* DEFAULT HERO (index.php) */
.hero-section {
    min-height: 50vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(0,0,50,.75), rgba(0,0,50,.75)),
        url("../img/hero.jpg") top/cover no-repeat;
}

/* SUPPORT HERO */
.hero-section.support-hero {
    background:
        linear-gradient(rgba(0,0,50,.8), rgba(0,0,50,.8)),
        url("../img/support-hero.jpg") top/cover no-repeat;
}

/* CONTACT HERO */
.hero-section.contact-hero {
    background:
        linear-gradient(rgba(0,0,50,.8), rgba(0,0,50,.8)),
        url("../img/contact-hero.jpg") top/cover no-repeat;
}

/* =========================
   FEATURES
========================= */
.feature-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.feature-box a {
    color: #1f2b6c;
    text-decoration: none;
    font-weight: 500;
}

.feature-box a:hover {
    text-decoration: underline;
}

.icon-circle {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 2px solid #e6e9f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle i {
    font-size: 28px;
    color: #1f2b6c;
}

/* =========================
   STEPS
========================= */
.steps-section {
    padding: 90px 0;
}

.steps-title {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 60px;
}

.step-box {
    position: relative;
    padding: 30px;
}

.step-number {
    position: absolute;
    top: -20px;
    font-size: 72px;
    font-weight: 700;
    color: rgba(31,43,108,.08);
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid #e6e9f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-icon i {
    font-size: 26px;
    color: #1f2b6c;
}

/* =========================
   FAQ V2
========================= */
.faq-v2 {
    padding: 100px 0;
    background: #f6f8fc;
}

.faq-title {
    font-size: 34px;
    margin-bottom: 40px;
}

.faq-accordion .accordion-item {
    border: none;
    border-radius: 14px;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.faq-accordion .accordion-button {
    background: #fff;
    font-weight: 500;
    padding: 22px;
}

.faq-accordion .accordion-body {
    padding: 0 22px 22px;
    color: #555;
}

.accordion-button::after {
    transform: scale(1.1);
}

/* =========================
   FAQ VISUAL (RIGHT HERO)
========================= */
.faq-visual {
    height: 100%;
    min-height: 420px;
    border-radius: 18px;
    position: relative;
    background: url("../img/faq.jpg") center/cover no-repeat;
}

.faq-visual-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #fff;
    max-width: 300px;
}

.faq-visual-overlay h4 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
}

.faq-visual-overlay p {
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.95;
}

/* =========================
   MOBILE OPTIMIZATION
========================= */
@media (max-width: 768px) {

    .hero-section {
        min-height: 60vh;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 28px;
    }

    .faq-v2 {
        padding: 60px 0;
    }

    .steps-title,
    .faq-title {
        font-size: 26px;
        text-align: center;
    }
}

/* =========================
   GLOBAL UX
========================= */
section {
    scroll-margin-top: 100px;
}
