/* ============================================================
   TRANSPORT SERVICES
   FAQ PAGE — FINAL PREMIUM CSS
   ============================================================ */


/* ============================================================
   01. VARIABLES
   ============================================================ */

:root {
    --faq-primary: #078bd1;
    --faq-primary-dark: #0069a8;
    --faq-primary-light: #e7f7ff;

    --faq-sky: #dff4ff;
    --faq-sky-soft: #f4fbff;

    --faq-text: #0b2d49;
    --faq-text-soft: #55748d;

    --faq-white: #ffffff;

    --faq-border: rgba(8, 139, 209, .14);

    --faq-shadow:
        0 18px 50px rgba(5, 69, 105, .09);

    --faq-shadow-hover:
        0 25px 65px rgba(5, 69, 105, .14);

    --faq-radius: 22px;
}


/* ============================================================
   02. MAIN
   ============================================================ */

.transport-faq-main {
    width: 100%;
    overflow: hidden;

    color: var(--faq-text);

    background:
        linear-gradient(
            180deg,
            #f5fbff 0%,
            #ffffff 45%,
            #eef9ff 100%
        );
}

.transport-faq-main .container {
    width: min(
        calc(100% - 40px),
        1080px
    );

    margin-left: auto;
    margin-right: auto;
}


/* ============================================================
   03. HERO
   ============================================================ */

.faq-hero {
    position: relative;
    isolation: isolate;

    padding: 88px 0 82px;

    background:
        radial-gradient(
            circle at 8% 20%,
            rgba(7, 139, 209, .13),
            transparent 30%
        ),
        radial-gradient(
            circle at 92% 10%,
            rgba(72, 194, 239, .18),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #edfaff 0%,
            #ffffff 52%,
            #e2f6ff 100%
        );

    border-bottom: 1px solid var(--faq-border);
}

.faq-hero-background {
    position: absolute;
    inset: 0;

    z-index: -1;

    pointer-events: none;
    overflow: hidden;
}

.faq-hero-orb {
    position: absolute;

    border-radius: 50%;
}

.faq-hero-orb-one {
    width: 330px;
    height: 330px;

    top: -180px;
    right: -80px;

    background:
        radial-gradient(
            circle,
            rgba(7, 139, 209, .20),
            rgba(7, 139, 209, 0)
        );
}

.faq-hero-orb-two {
    width: 280px;
    height: 280px;

    bottom: -180px;
    left: -100px;

    background:
        radial-gradient(
            circle,
            rgba(71, 194, 239, .18),
            rgba(71, 194, 239, 0)
        );
}

.faq-hero-content {
    max-width: 850px;
}

.faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 9px 15px;

    color: var(--faq-primary);

    background: rgba(255,255,255,.84);

    border: 1px solid rgba(7,139,209,.18);
    border-radius: 999px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;
}

.faq-eyebrow i {
    font-size: 13px;
}

.faq-hero-title {
    margin: 22px 0 18px;

    color: var(--faq-text);

    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.02;

    letter-spacing: -2.7px;

    font-weight: 900;
}

.faq-hero-title span {
    color: var(--faq-primary);
}

.faq-hero-description {
    max-width: 760px;

    margin: 0;

    color: var(--faq-text-soft);

    font-size: 17px;
    line-height: 1.8;
}


/* ============================================================
   04. FAQ SECTION
   ============================================================ */

.faq-section {
    padding: 88px 0;

    background: #ffffff;
}

.faq-layout {
    display: grid;

    grid-template-columns:
        285px
        minmax(0, 1fr);

    gap: 42px;

    align-items: start;
}


/* ============================================================
   05. SIDEBAR
   ============================================================ */

.faq-sidebar {
    position: sticky;
    top: 100px;

    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-sidebar-card {
    padding: 28px;

    background:
        linear-gradient(
            145deg,
            #f8fdff,
            #e5f7ff
        );

    border: 1px solid var(--faq-border);

    border-radius: 22px;

    box-shadow: var(--faq-shadow);
}

.faq-sidebar-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 19px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--faq-primary),
            var(--faq-primary-dark)
        );

    border-radius: 15px;

    box-shadow:
        0 11px 25px rgba(7,139,209,.20);
}

.faq-sidebar-icon i {
    font-size: 20px;
}

.faq-sidebar-card h2 {
    margin: 0 0 10px;

    color: var(--faq-text);

    font-size: 21px;
    line-height: 1.3;

    font-weight: 850;
}

.faq-sidebar-card > p {
    margin: 0 0 21px;

    color: var(--faq-text-soft);

    font-size: 13px;
    line-height: 1.7;
}

.faq-contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    width: 100%;

    min-height: 46px;

    padding: 0 16px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--faq-primary),
            var(--faq-primary-dark)
        );

    border-radius: 12px;

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;

    box-shadow:
        0 9px 22px rgba(7,139,209,.18);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.faq-contact-button:hover {
    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 14px 28px rgba(7,139,209,.24);
}

.faq-sidebar-note {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    padding: 18px;

    background: #f5fbff;

    border: 1px solid var(--faq-border);

    border-radius: 17px;
}

.faq-sidebar-note > i {
    margin-top: 2px;

    color: var(--faq-primary);

    font-size: 15px;
}

.faq-sidebar-note strong {
    display: block;

    margin-bottom: 5px;

    color: var(--faq-text);

    font-size: 12px;
    font-weight: 850;
}

.faq-sidebar-note p {
    margin: 0;

    color: var(--faq-text-soft);

    font-size: 11.5px;
    line-height: 1.6;
}


/* ============================================================
   06. FAQ LIST
   ============================================================ */

.faq-list {
    display: flex;
    flex-direction: column;

    gap: 13px;
}

.faq-item {
    background: #ffffff;

    border: 1px solid rgba(7,139,209,.13);

    border-radius: 17px;

    box-shadow:
        0 8px 28px rgba(5,69,105,.055);

    overflow: hidden;

    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}

.faq-item:hover {
    border-color: rgba(7,139,209,.24);

    box-shadow:
        0 14px 35px rgba(5,69,105,.09);
}


/* ============================================================
   07. QUESTION
   ============================================================ */

.faq-item summary {
    position: relative;

    display: grid;

    grid-template-columns:
        42px
        minmax(0,1fr)
        30px;

    align-items: center;

    gap: 14px;

    min-height: 76px;

    padding: 13px 19px;

    cursor: pointer;

    list-style: none;

    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::marker {
    display: none;
    content: "";
}

.faq-question-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--faq-primary);

    background: var(--faq-primary-light);

    border-radius: 12px;

    transition:
        background .25s ease,
        color .25s ease;
}

.faq-question-icon i {
    font-size: 15px;
}

.faq-question {
    color: var(--faq-text);

    font-size: 14px;
    line-height: 1.5;

    font-weight: 800;
}

.faq-toggle {
    width: 29px;
    height: 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--faq-primary);

    background: #f1faff;

    border-radius: 50%;

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease;
}

.faq-toggle i {
    font-size: 11px;
}


/* ============================================================
   08. OPEN FAQ
   ============================================================ */

.faq-item[open] {
    border-color: rgba(7,139,209,.25);

    box-shadow:
        0 18px 42px rgba(5,69,105,.10);
}

.faq-item[open] .faq-question-icon {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--faq-primary),
            var(--faq-primary-dark)
        );
}

.faq-item[open] .faq-toggle {
    color: #ffffff;

    background: var(--faq-primary);

    transform: rotate(45deg);
}


/* ============================================================
   09. ANSWER
   ============================================================ */

.faq-answer {
    padding: 0 19px 22px 75px;

    animation:
        faqAnswer .25s ease both;
}

@keyframes faqAnswer {

    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.faq-answer p {
    margin: 0;

    color: var(--faq-text-soft);

    font-size: 13.5px;
    line-height: 1.8;

    font-weight: 500;
}

.faq-answer strong {
    color: var(--faq-text);
    font-weight: 850;
}


/* ============================================================
   10. FEE LIST
   ============================================================ */

.faq-fee-list {
    display: grid;

    gap: 8px;

    margin-top: 17px;
}

.faq-fee-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 10px 13px;

    background: #f6fbfe;

    border: 1px solid rgba(7,139,209,.08);

    border-radius: 10px;

    color: var(--faq-text-soft);

    font-size: 12px;
    font-weight: 600;
}

.faq-fee-list strong {
    flex-shrink: 0;

    color: var(--faq-primary);

    font-size: 13px;
    font-weight: 850;
}


/* ============================================================
   11. CTA
   ============================================================ */

.faq-cta {
    padding: 0 0 90px;

    background: #ffffff;
}

.faq-cta-box {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 46px 50px;

    background:
        linear-gradient(
            135deg,
            #063d62 0%,
            #075c89 50%,
            #078bd1 100%
        );

    border-radius: 27px;

    box-shadow:
        0 24px 65px rgba(3,62,96,.20);

    overflow: hidden;
}

.faq-cta-box::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    top: -170px;
    right: -80px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.09);
}

.faq-cta-content,
.faq-cta-actions {
    position: relative;
    z-index: 1;
}

.faq-cta-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 12px;

    color: #a9e4ff;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;
}

.faq-cta-content h2 {
    margin: 0 0 11px;

    color: #ffffff;

    font-size: clamp(28px,4vw,40px);
    line-height: 1.15;

    font-weight: 900;
    letter-spacing: -1px;
}

.faq-cta-content p {
    max-width: 610px;

    margin: 0;

    color: rgba(255,255,255,.80);

    font-size: 14px;
    line-height: 1.7;
}

.faq-cta-actions {
    display: flex;
    align-items: center;

    gap: 11px;

    flex-shrink: 0;
}

.faq-cta-secondary,
.faq-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 48px;

    padding: 0 19px;

    border-radius: 12px;

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.faq-cta-secondary {
    color: #ffffff;

    border: 1px solid rgba(255,255,255,.35);

    background: rgba(255,255,255,.10);
}

.faq-cta-secondary:hover {
    color: #ffffff;

    background: rgba(255,255,255,.17);

    transform: translateY(-2px);
}

.faq-cta-primary {
    color: #073d5d;

    background: #ffffff;

    box-shadow:
        0 10px 25px rgba(0,0,0,.13);
}

.faq-cta-primary:hover {
    color: #073d5d;

    transform: translateY(-2px);

    box-shadow:
        0 15px 32px rgba(0,0,0,.18);
}

.faq-cta-primary i {
    color: var(--faq-primary);
}


/* ============================================================
   12. TABLET
   ============================================================ */

@media (max-width: 991.98px) {

    .faq-hero {
        padding: 75px 0 68px;
    }

    .faq-layout {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .faq-sidebar {
        position: static;

        display: grid;

        grid-template-columns:
            1fr 1fr;

        gap: 18px;
    }

    .faq-cta-box {
        padding: 40px;
    }

}


/* ============================================================
   13. MOBILE
   ============================================================ */

@media (max-width: 767.98px) {

    .transport-faq-main .container {
        width: min(
            calc(100% - 28px),
            1080px
        );
    }

    .faq-hero {
        padding: 60px 0 55px;
    }

    .faq-hero-title {
        margin-top: 18px;

        font-size: clamp(36px,11vw,52px);

        letter-spacing: -1.8px;
    }

    .faq-hero-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .faq-section {
        padding: 65px 0;
    }

    .faq-sidebar {
        display: flex;
        flex-direction: column;
    }

    .faq-sidebar-card {
        padding: 25px;
    }

    .faq-item summary {
        grid-template-columns:
            38px
            minmax(0,1fr)
            28px;

        gap: 11px;

        min-height: 68px;

        padding: 11px 14px;
    }

    .faq-question-icon {
        width: 36px;
        height: 36px;
    }

    .faq-question {
        font-size: 13px;
    }

    .faq-answer {
        padding: 0 14px 20px 63px;
    }

    .faq-answer p {
        font-size: 12.5px;
    }

    .faq-fee-list div {
        align-items: flex-start;
        flex-direction: column;

        gap: 3px;
    }

    .faq-cta {
        padding-bottom: 65px;
    }

    .faq-cta-box {
        flex-direction: column;
        align-items: flex-start;

        padding: 33px 26px;

        border-radius: 22px;
    }

    .faq-cta-actions {
        width: 100%;

        flex-direction: column;
        align-items: stretch;
    }

    .faq-cta-secondary,
    .faq-cta-primary {
        width: 100%;
    }

}


/* ============================================================
   14. SMALL MOBILE
   ============================================================ */

@media (max-width: 479.98px) {

    .faq-eyebrow {
        padding: 8px 12px;

        font-size: 10px;
    }

    .faq-hero-title {
        font-size: 36px;
    }

    .faq-section {
        padding: 52px 0;
    }

    .faq-sidebar-card {
        padding: 22px;
    }

    .faq-item summary {
        grid-template-columns:
            34px
            minmax(0,1fr)
            25px;

        gap: 9px;
    }

    .faq-question-icon {
        width: 34px;
        height: 34px;
    }

    .faq-toggle {
        width: 26px;
        height: 26px;
    }

    .faq-answer {
        padding-left: 14px;
    }

    .faq-cta-box {
        padding: 28px 21px;
    }

    .faq-cta-content h2 {
        font-size: 27px;
    }

}


/* ============================================================
   15. REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    .faq-item,
    .faq-contact-button,
    .faq-cta-primary,
    .faq-cta-secondary {
        transition: none;
    }

    .faq-answer {
        animation: none;
    }

}