/* ═══════════════════════════════════════════════════════════════
   Airport Blue & White — palette override for taxiar-child
   Loads AFTER fsh-header.css. Redefines CSS variables so all
   layout rules in fsh-header.css automatically pick up the new
   colours. No layout CSS is duplicated here.

   Palette:
     White    #FFFFFF  — navbar bg (light), text on dark
     Mist     #EAF4FB  — soft surface backgrounds
     Sky      #54B6F4  — hover accent, call badge, social hover
     Navy     #143A63  — topbar, primary buttons, borders, toggle
     Midnight #0B2038  — deepest dark, body text (light), dark bg
   ═══════════════════════════════════════════════════════════════ */

/* ── Light-mode CSS variable overrides ───────────────────────── */
:root {
    --fsh-topbar-bg    : #143A63;
    --fsh-nav-bg       : #FFFFFF;
    --fsh-nav-text     : #0B2038;
    --fsh-accent       : #54B6F4;
    --fsh-shadow       : 0 2px 16px rgba(20,58,99,.10);
    --fsh-shadow-stuck : 0 4px 24px rgba(20,58,99,.20);

    /* Airport Blue brand tokens */
    --ab-primary  : #143A63;
    --ab-accent   : #54B6F4;
    --ab-dark     : #0B2038;
    --ab-surface  : #EAF4FB;
}

/* ── Top-bar links ───────────────────────────────────────────── */
.fsh-tb-link:hover,
.fsh-tb-link:hover i { color: #ffffff; }

/* ── Social icon hover — sky tint ───────────────────────────── */
.fsh-tb-social a:hover {
    background   : rgba(84,182,244,.25);
    border-color : #54B6F4;
    color        : #ffffff;
}

/* ── Call Now badge — sky fill, midnight text ────────────────── */
.fsh-call-badge {
    background : #54B6F4;
    color      : #0B2038;
}
.fsh-call-badge:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* ── Logo ────────────────────────────────────────────────────── */
.fsh-logo-text          { color: #0B2038; }
.fsh-logo-text:hover    { color: #54B6F4; }

/* ── Menu underline & active / hover colour — sky ────────────── */
.fsh-menu > li > a::after { background: #54B6F4; }

.fsh-menu > li > a:hover,
.fsh-menu > li.current-menu-item > a,
.fsh-menu > li.current-menu-ancestor > a,
.fsh-menu > li.current-page-ancestor > a { color: #54B6F4; }

/* ── Neutralise old :last-child pill rule from fsh-header.css ───────────── */
/* The quote button is now a standalone <a class="fsh-quote-btn"> in the    */
/* template, not a menu item. Reset last-child to normal menu-link styling. */



/* ── "Get a free quote" standalone pill button ──────────────────────────── */
.fsh-quote-btn {
    display         : inline-flex;
    align-items     : center;
    padding         : 11px 22px;
    border          : 2px solid #54B6F4;
    border-radius   : 99px;
    color           : #143A63;
    font-size       : 13px;
    font-weight     : 700;
    text-transform  : uppercase;
    letter-spacing  : 0.6px;
    text-decoration : none;
    white-space     : nowrap;
    background      : transparent;
    transition      : background .25s, color .25s, border-color .25s,
                      box-shadow .25s, transform .25s;
}
.fsh-quote-btn:hover {
    background   : #54B6F4;
    border-color : #54B6F4;
    color        : #0B2038;
    box-shadow   : 0 6px 20px rgba(84,182,244,.35);
    transform    : translateY(-1px);
}

/* Dark mode — sky outline */
html[data-theme="dark"] .fsh-quote-btn {
    border-color : #54B6F4;
    color        : #54B6F4;
}
html[data-theme="dark"] .fsh-quote-btn:hover {
    background : #54B6F4;
    color      : #0B2038;
}

/* ── Dropdown ────────────────────────────────────────────────── */
.fsh-menu .sub-menu                  { border-top-color: #54B6F4; }
.fsh-menu .sub-menu li a:hover       { color: #54B6F4; }
.fsh-menu .sub-menu li.current-menu-item a { color: #54B6F4; }

/* ── BOOK A RIDE CTA — navy → midnight on hover ─────────────── */
.fsh-cta-btn {
    background   : #143A63;
    border-color : #143A63;
    color        : #FFFFFF;
}
.fsh-cta-btn:hover {
    background   : #0B2038;
    border-color : #0B2038;
    color        : #FFFFFF;
    box-shadow   : 0 6px 20px rgba(11,32,56,.30);
}

/* ── Hamburger toggle ────────────────────────────────────────── */
.fsh-toggle:hover { border-color: #143A63; }

.fsh-toggle[aria-expanded="true"] .fsh-bar:nth-child(1),
.fsh-toggle[aria-expanded="true"] .fsh-bar:nth-child(3) {
    background: #143A63;
}

/* ── Mobile drawer ───────────────────────────────────────────── */
.fsh-drawer-close:hover { border-color: #143A63; color: #143A63; }
.fsh-drawer-phone i     { color: #143A63; }
.fsh-drawer-phone:hover { border-color: #143A63; color: #143A63; }
.fsh-drawer-cta          { background: #143A63; border-color: #143A63; color: #FFFFFF; }
.fsh-drawer-cta:hover    { background: #0B2038; border-color: #0B2038; color: #FFFFFF; }

.fsh-drawer-menu li a:hover,
.fsh-drawer-menu li.current-menu-item > a,
.fsh-drawer-menu li.current-menu-ancestor > a {
    color: #143A63;
}

.fsh-sub-toggle:hover { color: #143A63; }
.fsh-drawer-menu li.is-open > .fsh-sub-toggle { color: #143A63; }

/* ── Theme toggle button ─────────────────────────────────────── */
.fsh-theme-toggle {
    display         : inline-flex;
    align-items     : center;
    justify-content : center;
    width           : 40px;
    height          : 40px;
    border-radius   : 50%;
    border          : 2px solid #143A63;
    background      : #143A63;
    color           : #FFFFFF;
    font-size       : 15px;
    cursor          : pointer;
    flex-shrink     : 0;
    transition      : background .3s, border-color .3s, transform .3s;
    padding         : 0;
    line-height     : 1;
}
.fsh-theme-toggle:hover {
    background   : #0B2038;
    border-color : #0B2038;
    transform    : rotate(22deg);
}

/* Sun icon hidden in light mode; moon shown */
.fsh-theme-toggle .fsh-icon-sun  { display: none; }
.fsh-theme-toggle .fsh-icon-moon { display: block; }

/* ═══════════════════════════════════════════════════════════════
   DARK MODE — flip CSS variables; layout rules inherit new values
   ═══════════════════════════════════════════════════════════════ */
html[data-theme="dark"] {
    --fsh-topbar-bg    : #0B2038;
    --fsh-nav-bg       : #143A63;
    --fsh-nav-text     : #EAF4FB;
    --fsh-shadow       : 0 2px 24px rgba(0,0,0,.40);
    --fsh-shadow-stuck : 0 4px 32px rgba(0,0,0,.55);
}

/* Dark: toggle shows sun */
html[data-theme="dark"] .fsh-theme-toggle .fsh-icon-sun  { display: block; }
html[data-theme="dark"] .fsh-theme-toggle .fsh-icon-moon { display: none; }

/* Dark: toggle button itself */
html[data-theme="dark"] .fsh-theme-toggle {
    background   : rgba(255,255,255,.10);
    border-color : #54B6F4;
    color        : #54B6F4;
}
html[data-theme="dark"] .fsh-theme-toggle:hover {
    background   : rgba(84,182,244,.20);
    border-color : #54B6F4;
    transform    : rotate(22deg);
}

/* Dark: logo */
html[data-theme="dark"] .fsh-logo-text { color: #FFFFFF; }

/* Dark: CTA — sky fill */
html[data-theme="dark"] .fsh-cta-btn {
    background   : #54B6F4;
    border-color : #54B6F4;
    color        : #0B2038;
}
html[data-theme="dark"] .fsh-cta-btn:hover {
    background   : #EAF4FB;
    border-color : #EAF4FB;
    color        : #0B2038;
}

/* Dark: dropdown bg */
html[data-theme="dark"] .fsh-menu .sub-menu { background: #0B2038; }
html[data-theme="dark"] .fsh-menu .sub-menu li a { color: #EAF4FB; }
html[data-theme="dark"] .fsh-menu .sub-menu li a:hover { color: #54B6F4; }

/* Dark: mobile drawer */
html[data-theme="dark"] .fsh-drawer            { background: #143A63; }
html[data-theme="dark"] .fsh-drawer-menu li a  { color: #EAF4FB; }
html[data-theme="dark"] .fsh-drawer-menu li a:hover { color: #54B6F4; }
html[data-theme="dark"] .fsh-drawer-cta { background: #54B6F4; border-color: #54B6F4; color: #0B2038; }
html[data-theme="dark"] .fsh-drawer-cta:hover { background: #EAF4FB; border-color: #EAF4FB; color: #0B2038; }
html[data-theme="dark"] .fsh-drawer-phone i    { color: #54B6F4; }
html[data-theme="dark"] .fsh-drawer-phone:hover { border-color: #54B6F4; color: #54B6F4; }
html[data-theme="dark"] .fsh-drawer-close:hover { border-color: #54B6F4; color: #54B6F4; }

.fsh-header .fsh-menu > li:last-child > a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 52px !important;
    padding: 0 30px !important;
    border: 2px solid #143A63 !important;
    border-radius: 999px !important;
    background: transparent !important;
    color: #143A63 !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.7px !important;
    line-height: 1 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    box-shadow: none !important;
}

.fsh-header .fsh-menu > li:last-child > a:hover {
    background: #143A63 !important;
    border-color: #143A63 !important;
    color: #FFFFFF !important;
    box-shadow: 0 8px 24px rgba(20,58,99,.28) !important;
    transform: translateY(-1px);
}

html[data-theme="dark"] .fsh-header .fsh-menu > li:last-child > a {
    border-color: #54B6F4 !important;
    background: transparent !important;
    color: #54B6F4 !important;
}

html[data-theme="dark"] .fsh-header .fsh-menu > li:last-child > a:hover {
    background: #54B6F4 !important;
    border-color: #54B6F4 !important;
    color: #0B2038 !important;
}

.fsh-header .fsh-menu > li:last-child > a::before,
.fsh-header .fsh-menu > li:last-child > a::after {
    display: none !important;
}

/* Hide Taxiar breadcrumb/page title gray banner */
body.home #breadcrumbwrap,
body.home .breadcrumb-wrapper,
body.home .breadcumb-wrapper,
body.home .breadcumb-menu-wrap {
    display: none !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
}

/* Remove Taxiar breadcrumb/page-title/banner area globally */
#breadcrumbwrap,
.breadcrumb-wrapper,
.breadcumb-wrapper,
.breadcumb-menu-wrap,
.page-title,
.page-title-area,
.page-title-wrapper,
.th-breadcrumb,
.th-breadcrumb-wrapper {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
}

/* Remove leftover gap after header globally */
.fsh-header {
    margin-bottom: 0 !important;
}

.fsh-header + *,
#breadcrumbwrap + *,
.breadcrumb-wrapper + *,
.breadcumb-wrapper + *,
.page-title-wrapper + * {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Remove top spacing from first Elementor section globally */
.elementor > .elementor-element:first-child,
.elementor-section:first-child,
.elementor-top-section:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}


@media (min-width: 1200px) {
    .fsh-navbar-inner {
        justify-content: center !important;
        gap: 34px !important;
    }

    .fsh-logo-wrap {
        flex: 0 0 auto !important;
    }

    .fsh-nav {
        flex: 0 1 auto !important;
        justify-content: center !important;
    }

    .fsh-menu {
        justify-content: center !important;
        gap: 6px !important;
    }

    .fsh-nav-right {
        flex: 0 0 auto !important;
    }
}

@media (max-width: 1199px) {
    .fsh-drawer-menu li.menu-item-has-children {
        display: grid !important;
        grid-template-columns: 1fr 44px !important;
        align-items: center !important;
    }

    .fsh-drawer-menu li.menu-item-has-children > a {
        grid-column: 1 !important;
        grid-row: 1 !important;
        margin: 0 !important;
    }

    .fsh-drawer-menu li.menu-item-has-children > .fsh-sub-toggle {
        grid-column: 2 !important;
        grid-row: 1 !important;
        margin: 0 14px 0 0 !important;
        width: 34px !important;
        min-width: 34px !important;
        height: 34px !important;
    }

    .fsh-drawer-menu li.menu-item-has-children > .sub-menu {
        grid-column: 1 / -1 !important;
    }
}

/* Floating WhatsApp + Call buttons alignment */
.joinchat {
    right: 18px !important;
    bottom: 82px !important;
    left: auto !important;
    z-index: 99998 !important;
}

.joinchat__button {
    right: 0 !important;
    bottom: 0 !important;
}

.wpr-pc-content,
.wpr-pc-text {
    display: none !important;
}

.wpr-pc-btn {
    position: fixed !important;
    right: 18px !important;
    bottom: 146px !important;
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
    min-height: 58px !important;
    max-width: 58px !important;
    max-height: 58px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 50% !important;
    background: #e53935 !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 99999 !important;
    text-decoration: none !important;
    box-shadow: 0 8px 22px rgba(229,57,53,.35) !important;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, filter .25s ease !important;
}

.wpr-pc-btn:hover {
    background: #c62828 !important;
    transform: translateY(-6px) scale(1.1) !important;
    box-shadow: 0 18px 38px rgba(229,57,53,.55) !important;
    filter: brightness(1.08) !important;
}

.wpr-pc-btn::before {
    font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free" !important;
    content: "\f095" !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    font-size: 22px !important;
    line-height: 1 !important;
}

/* Desktop */
@media (min-width: 768px) {
    .joinchat {
        right: 20px !important;
        bottom: 86px !important;
    }

    .wpr-pc-btn {
        right: 20px !important;
        bottom: 168px !important;
        width: 60px !important;
        height: 60px !important;
        min-width: 60px !important;
        min-height: 60px !important;
        max-width: 60px !important;
        max-height: 60px !important;
    }
}

/* Very small mobile */
@media (max-width: 480px) {
    .joinchat {
        right: 14px !important;
        bottom: 78px !important;
    }

    .wpr-pc-btn {
        right: 14px !important;
        bottom: 154px !important;
    }
}

@media (max-width: 1199px) {
    .fsh-drawer {
        background: #143A63 !important;
    }

    .fsh-drawer-menu li a {
        background: #143A63 !important;
        color: #EAF4FB !important;
        border-bottom: 1px solid rgba(234,244,251,.12) !important;
    }

    .fsh-drawer-menu li a:hover,
    .fsh-drawer-menu li.current-menu-item > a,
    .fsh-drawer-menu li.current-menu-ancestor > a {
        background: #0B2038 !important;
        color: #54B6F4 !important;
    }

    .fsh-sub-toggle {
        background: #0B2038 !important;
        color: #54B6F4 !important;
        border-radius: 8px !important;
    }

    .fsh-drawer-menu .sub-menu {
        background: #0B2038 !important;
    }

    .fsh-drawer-menu .sub-menu li a {
        background: #0B2038 !important;
        color: #EAF4FB !important;
        padding-left: 34px !important;
    }

    .fsh-drawer-menu .sub-menu li a:hover {
        background: #143A63 !important;
        color: #54B6F4 !important;
    }
}

/* Red floating call button hover effect */
.wpr-pc-btn:hover {
    background: #c62828 !important;
    transform: translateY(-5px) scale(1.08) !important;
    box-shadow: 0 18px 38px rgba(229, 57, 53, 0.55) !important;
    filter: brightness(1.05) !important;
}

.wpr-pc-btn:hover::before {
    color: #ffffff !important;
}

/* ═══════════════════════════════════════════════════════════════
   HIDE ALL OLD TAXIAR ELEMENTOR WIDGETS (v1 + v2)
   ═══════════════════════════════════════════════════════════════ */
.elementor-widget-taxiarcontactform,
.elementor-widget-taxsecocontactform,
.elementor-widget-taxiarbutton,
.elementor-widget-taxsecobutton {
    display: none !important;
}

/* ═══════════════════════════════════════════════════════════════
   INNER PAGE — BANNER HERO
   ═══════════════════════════════════════════════════════════════ */
.fsh-inner-banner {
    position  : relative;
    background: linear-gradient(135deg, #0B2038 0%, #143A63 55%, #1A5A9A 100%);
    padding   : 72px 20px 60px;
    text-align: center;
    overflow  : hidden;
}
.fsh-inner-banner::before {
    content   : '';
    position  : absolute;
    inset     : 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2354B6F4' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.fsh-inner-banner-inner {
    position : relative;
    max-width: 820px;
    margin   : 0 auto;
}
.fsh-inner-banner-title {
    color        : #FFFFFF;
    font-size    : clamp(28px, 4.5vw, 52px);
    font-weight  : 800;
    line-height  : 1.15;
    margin-bottom: 18px;
    text-shadow  : 0 2px 12px rgba(0,0,0,.25);
}
.fsh-inner-breadcrumb {
    display    : flex;
    align-items: center;
    justify-content: center;
    gap        : 10px;
    font-size  : 14px;
    font-weight: 500;
    color      : rgba(255,255,255,.65);
}
.fsh-inner-breadcrumb a {
    color          : #54B6F4;
    text-decoration: none;
    transition     : color .2s;
}
.fsh-inner-breadcrumb a:hover { color: #EAF4FB; }

/* ═══════════════════════════════════════════════════════════════
   INNER PAGE — ELEMENTOR CONTENT AREA
   ═══════════════════════════════════════════════════════════════ */

/* Taxiar CSS variable overrides */
.fsh-inner-content {
    --theme-color: #143A63;
    --title-color: #0B2038;
    --body-color : #3D5166;
}
html[data-theme="dark"] .fsh-inner-content {
    --title-color: #EAF4FB;
    --body-color : rgba(234,244,251,.80);
    --theme-color: #54B6F4;
}

/* Page bg — cards will float on this */
html:not([data-theme="dark"]) .fsh-inner-content { background: #EDF4FB; }
html[data-theme="dark"]       .fsh-inner-content { background: #071827; }

/* Outer padding so cards don't touch browser edge */
.fsh-inner-content {
    padding: 40px 20px 64px !important;
    margin : 0 !important;
}

/* ── Kill top gap on first Elementor section ──────────────────── */
.fsh-inner-content .elementor-section:first-child,
.fsh-inner-content .e-con:first-child,
.fsh-inner-content .elementor-top-section:first-child {
    margin-top : 0 !important;
    padding-top: 0 !important;
    min-height : auto !important;
}
.fsh-inner-content .elementor-element:first-child {
    margin-top: 0 !important;
}

/* ── Section cards ────────────────────────────────────────────── */
.fsh-inner-content .elementor-section,
.fsh-inner-content .e-con {
    border-radius: 22px !important;
    margin       : 0 auto 28px !important;
    max-width    : 1100px !important;
    overflow     : hidden !important;
    padding-left : 0 !important;
    padding-right: 0 !important;
    width        : 100% !important;
}
html:not([data-theme="dark"]) .fsh-inner-content .elementor-section,
html:not([data-theme="dark"]) .fsh-inner-content .e-con {
    background: #FFFFFF !important;
    box-shadow: 0 4px 30px rgba(11,32,56,.08), 0 1px 0 rgba(11,32,56,.04) !important;
    border    : 1px solid #D8E7F2 !important;
}
html[data-theme="dark"] .fsh-inner-content .elementor-section,
html[data-theme="dark"] .fsh-inner-content .e-con {
    background: #0E2236 !important;
    box-shadow: 0 4px 30px rgba(0,0,0,.30) !important;
    border    : 1px solid rgba(84,182,244,.12) !important;
}

/* ── Inner container: centred, padded ────────────────────────── */
.fsh-inner-content .elementor-container,
.fsh-inner-content .e-con-inner {
    max-width : 980px !important;
    margin    : 0 auto !important;
    padding   : 40px 36px !important;
    box-sizing: border-box !important;
    width     : 100% !important;
}

/* ── Headings — large & tight (preview.html quality) ─────────── */
.fsh-inner-content h1,
.fsh-inner-content .elementor-heading-title {
    font-size     : clamp(2rem, 4.5vw, 3.6rem) !important;
    font-weight   : 900 !important;
    letter-spacing: -.035em !important;
    line-height   : 1.1 !important;
    margin-bottom : 16px !important;
}
.fsh-inner-content h2 {
    font-size     : clamp(1.5rem, 3.2vw, 2.6rem) !important;
    font-weight   : 800 !important;
    letter-spacing: -.025em !important;
    line-height   : 1.15 !important;
    padding-left  : 16px !important;
    border-left   : 4px solid #54B6F4 !important;
    margin-top    : 32px !important;
    margin-bottom : 14px !important;
}
.fsh-inner-content h3 {
    font-size     : clamp(1.05rem, 2vw, 1.35rem) !important;
    font-weight   : 700 !important;
    letter-spacing: -.01em !important;
    padding-left  : 12px !important;
    border-left   : 3px solid rgba(84,182,244,.50) !important;
    margin-top    : 22px !important;
    margin-bottom : 8px !important;
}
.fsh-inner-content h4,
.fsh-inner-content h5,
.fsh-inner-content h6 {
    font-weight  : 700 !important;
    margin-top   : 18px !important;
    margin-bottom: 6px !important;
}

html:not([data-theme="dark"]) .fsh-inner-content h1,
html:not([data-theme="dark"]) .fsh-inner-content .elementor-heading-title { color: #06264a !important; }
html:not([data-theme="dark"]) .fsh-inner-content h2 { color: #0b3b70 !important; }
html:not([data-theme="dark"]) .fsh-inner-content h3 { color: #1A5A9A !important; }
html:not([data-theme="dark"]) .fsh-inner-content h4,
html:not([data-theme="dark"]) .fsh-inner-content h5,
html:not([data-theme="dark"]) .fsh-inner-content h6 { color: #06264a !important; }

html[data-theme="dark"] .fsh-inner-content h1,
html[data-theme="dark"] .fsh-inner-content .elementor-heading-title { color: #EAF4FB !important; }
html[data-theme="dark"] .fsh-inner-content h2 { color: #7ECEF7 !important; }
html[data-theme="dark"] .fsh-inner-content h3 { color: #54B6F4 !important; }
html[data-theme="dark"] .fsh-inner-content h4,
html[data-theme="dark"] .fsh-inner-content h5,
html[data-theme="dark"] .fsh-inner-content h6 { color: #EAF4FB !important; }

/* ── Paragraphs ───────────────────────────────────────────────── */
.fsh-inner-content p,
.fsh-inner-content .elementor-widget-text-editor p {
    font-size    : 1.04rem !important;
    line-height  : 1.85 !important;
    margin-bottom: 18px !important;
}
html:not([data-theme="dark"]) .fsh-inner-content p { color: #3D5166 !important; }
html[data-theme="dark"]       .fsh-inner-content p { color: rgba(234,244,251,.82) !important; }

/* ── Lists — sky-blue checkmark bullets ───────────────────────── */
.fsh-inner-content ul,
.fsh-inner-content ol {
    padding-left : 0 !important;
    margin-bottom: 22px !important;
    list-style   : none !important;
}
.fsh-inner-content ul li,
.fsh-inner-content ol li {
    position     : relative;
    padding-left : 28px !important;
    margin-bottom: 11px !important;
    font-size    : 1.02rem !important;
    line-height  : 1.75 !important;
}
.fsh-inner-content ul li::before {
    content    : '✓';
    position   : absolute;
    left       : 0;
    top        : 2px;
    color      : #54B6F4;
    font-weight: 700;
    font-size  : 13px;
}
html:not([data-theme="dark"]) .fsh-inner-content ul li,
html:not([data-theme="dark"]) .fsh-inner-content ol li { color: #3D5166 !important; }
html[data-theme="dark"]       .fsh-inner-content ul li,
html[data-theme="dark"]       .fsh-inner-content ol li { color: rgba(234,244,251,.82) !important; }

/* ── Images — white-border card treatment ────────────────────── */
.fsh-inner-content .elementor-widget-image img,
.fsh-inner-content img {
    border-radius: 18px !important;
    border       : 7px solid #FFFFFF !important;
    box-shadow   : 0 14px 44px rgba(11,32,56,.16) !important;
    max-width    : 100%;
    height       : auto;
    display      : block;
    object-fit   : cover;
}
html[data-theme="dark"] .fsh-inner-content .elementor-widget-image img,
html[data-theme="dark"] .fsh-inner-content img {
    border-color: rgba(84,182,244,.22) !important;
    box-shadow  : 0 14px 44px rgba(0,0,0,.45) !important;
}

/* ── Links ────────────────────────────────────────────────────── */
html:not([data-theme="dark"]) .fsh-inner-content a:not(.th-btn):not(.elementor-button) {
    color                : #1A6FA8;
    text-decoration      : underline;
    text-decoration-color: rgba(26,111,168,.35);
    transition           : color .2s, text-decoration-color .2s;
}
html:not([data-theme="dark"]) .fsh-inner-content a:not(.th-btn):not(.elementor-button):hover {
    color                : #06264a;
    text-decoration-color: #06264a;
}
html[data-theme="dark"] .fsh-inner-content a:not(.th-btn):not(.elementor-button) {
    color                : #54B6F4;
    text-decoration      : underline;
    text-decoration-color: rgba(84,182,244,.40);
}

/* ── Buttons — navy pill ──────────────────────────────────────── */
.fsh-inner-content .th-btn,
.fsh-inner-content a.th-btn,
.fsh-inner-content .elementor-button {
    background    : #06264a !important;
    color         : #FFFFFF !important;
    border-color  : #06264a !important;
    border-radius : 999px !important;
    font-weight   : 900 !important;
    letter-spacing: 0.4px !important;
    text-transform: uppercase !important;
    box-shadow    : 0 8px 24px rgba(6,38,74,.28) !important;
    transition    : background .25s, transform .2s, box-shadow .25s !important;
    padding       : 15px 36px !important;
}
.fsh-inner-content .th-btn:hover,
.fsh-inner-content a.th-btn:hover,
.fsh-inner-content .elementor-button:hover {
    background  : #54B6F4 !important;
    border-color: #54B6F4 !important;
    color       : #06264a !important;
    transform   : translateY(-2px) !important;
    box-shadow  : 0 12px 32px rgba(84,182,244,.38) !important;
}
html[data-theme="dark"] .fsh-inner-content .th-btn,
html[data-theme="dark"] .fsh-inner-content a.th-btn,
html[data-theme="dark"] .fsh-inner-content .elementor-button {
    background  : #54B6F4 !important;
    border-color: #54B6F4 !important;
    color       : #06264a !important;
}

/* ── Sub-title accent lines (gold → sky) ─────────────────────── */
.fsh-inner-content .sec-title .sub-title,
.fsh-inner-content .th-title .sub-title,
.fsh-inner-content [class*="sub-title"] { color: #54B6F4 !important; }
.fsh-inner-content .sec-title .sub-title::before,
.fsh-inner-content .sec-title .sub-title::after { background: #54B6F4 !important; }

/* ── Icon boxes / service cards ───────────────────────────────── */
html:not([data-theme="dark"]) .fsh-inner-content .th-service-card,
html:not([data-theme="dark"]) .fsh-inner-content .th-icon-box {
    background   : #F4F8FC;
    border-radius: 18px;
    box-shadow   : 0 4px 20px rgba(11,32,56,.08);
    border       : 1px solid #D8E7F2;
}
html[data-theme="dark"] .fsh-inner-content .th-service-card,
html[data-theme="dark"] .fsh-inner-content .th-icon-box {
    background   : #0A1E30;
    border-radius: 18px;
    box-shadow   : 0 4px 20px rgba(0,0,0,.30);
    border       : 1px solid rgba(84,182,244,.14);
}
.fsh-inner-content .th-icon-box .icon,
.fsh-inner-content .th-service-card .icon {
    color       : #06264a !important;
    background  : rgba(6,38,74,.08) !important;
    border-color: #D8E7F2 !important;
}
html[data-theme="dark"] .fsh-inner-content .th-icon-box .icon,
html[data-theme="dark"] .fsh-inner-content .th-service-card .icon {
    color       : #54B6F4 !important;
    background  : rgba(84,182,244,.12) !important;
    border-color: rgba(84,182,244,.25) !important;
}

/* ── Dividers ─────────────────────────────────────────────────── */
html:not([data-theme="dark"]) .fsh-inner-content .elementor-divider-separator { border-color: #D8E7F2 !important; }
html[data-theme="dark"]       .fsh-inner-content .elementor-divider-separator { border-color: rgba(84,182,244,.20) !important; }

/* ── Mobile ───────────────────────────────────────────────────── */
@media (max-width: 767px) {
    .fsh-inner-banner { padding: 52px 20px 42px; }
    .fsh-inner-banner-title { font-size: clamp(22px, 6vw, 32px); }
    .fsh-inner-content { padding: 24px 12px 48px !important; }
    .fsh-inner-content .elementor-section,
    .fsh-inner-content .e-con { border-radius: 16px !important; margin-bottom: 18px !important; }
    .fsh-inner-content .elementor-container,
    .fsh-inner-content .e-con-inner { padding: 28px 20px !important; }
    .fsh-inner-content h2 { padding-left: 12px !important; margin-top: 20px !important; }
    .fsh-inner-content h3 { padding-left: 10px !important; }
}