/* 
  HealthEdge Theme Main Styles
  Colors based on reference design:
  Dark Blue: #1a2a47
  Light Blue: #2b74d6
  White: #ffffff
  Text Gray: #666666
*/

:root {
    --primary-color: #1a2a47;
    --secondary-color: #2b74d6;
    --accent-color: #4da6ff;
    --text-color: #333333;
    --light-text: #666666;
    --background-color: #f8fbff;
    --white: #ffffff;
    --border-color: #e5e5e5;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --container-width: 1200px;
}

/* Reset & Basics */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Header */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background-color: var(--background-color);
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border-color);
}

.header-top-inner {
    display: flex;
    justify-content: flex-end;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    gap: 16px;
    max-width: 1240px;
}

.logo {
    flex-shrink: 0;
    max-width: 320px;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 44px;
    width: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-navigation a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14.5px;
    white-space: nowrap;
    padding: 4px 0;
    display: inline-block;
}

.main-navigation a:hover {
    color: var(--secondary-color);
}

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 250px;
    display: none !important;
    flex-direction: column;
    padding: 15px 0;
    border-top: 3px solid var(--secondary-color);
    z-index: 10;
    border-radius: 0 0 8px 8px;
}

.has-dropdown:hover .dropdown {
    display: flex !important;
}

.dropdown li {
    width: 100%;
    list-style: none !important;
    list-style-type: none !important;
}

.dropdown a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    white-space: normal;
}

.dropdown a:hover {
    background-color: var(--background-color);
}

.mobile-nav-cta {
    display: none;
}

.header-action {
    flex-shrink: 0;
}

.header-action .btn {
    white-space: nowrap;
    padding: 10px 20px;
    font-size: 14px;
}

.dropdown-toggle {
    display: none;
}

/* Mobile Hamburger Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: #f0f5fc;
    border: 1px solid #d0e0f5;
    border-radius: 8px;
    cursor: pointer;
    padding: 9px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    z-index: 1002;
    transition: all 0.2s ease;
}

.mobile-menu-toggle:hover {
    background: #e2eeff;
    border-color: #2563eb;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background-color: #1a2a47;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.nav-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-backdrop.active {
    display: block;
    opacity: 1;
}

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding-top: 60px;
}

.footer-container {
    padding-bottom: 40px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-widget h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-widget p {
    color: #a0aabf;
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul a {
    color: #a0aabf;
    font-size: 14px;
}

.footer-widget ul a:hover {
    color: var(--accent-color);
}

.logo-text-footer {
    color: var(--white);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    font-weight: bold;
}

.social-icon:hover {
    background-color: var(--secondary-color);
}

.footer-bottom {
    background-color: #121d33;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: #8a96ab;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-links a {
    color: #8a96ab;
    margin-left: 20px;
}

.legal-links a:hover {
    color: var(--white);
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* =========================================================
   UNIFORM FULL-WIDTH SUBPAGE BANNER (NORMAL IMAGE)
   ========================================================= */
.subpage-banner-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #f8fbff;
}

.subpage-banner-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.subpage-banner-img {
    width: 100%;
    height: auto;
    max-height: 580px;
    object-fit: cover;
    display: block;
}

.subpage-banner-overlay-box {
    position: absolute;
    bottom: 36px;
    left: 8%;
    max-width: 650px;
    z-index: 5;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    padding: 22px 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.85);
}

.subpage-banner-overlay-box h1 {
    font-size: 32px;
    font-weight: 800;
    color: #1a2a47;
    margin: 0 0 8px 0;
    line-height: 1.25;
}

.subpage-banner-overlay-box p {
    font-size: 15px;
    color: #555555;
    margin: 0;
    line-height: 1.5;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 15px;
    background-color: #fafafa;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: var(--white);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Grids for content */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Blog specific */
.blog-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-img {
    height: 200px;
    background-color: #e9eff7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aabf;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    font-size: 13px;
    color: var(--light-text);
    margin-bottom: 10px;
}

.blog-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.blog-title a {
    color: var(--primary-color);
}

.blog-title a:hover {
    color: var(--secondary-color);
}

/* =========================================================
   RESPONSIVE MEDIA QUERIES (TABLETS & MOBILE)
   ========================================================= */

/* Desktop & Laptop tweaks (1081px - 1280px) */
@media (max-width: 1280px) {
    .header-container {
        gap: 12px;
    }

    .logo-img {
        max-height: 38px;
    }

    .main-navigation ul {
        gap: 16px;
    }

    .main-navigation a {
        font-size: 14px;
    }

    .header-action .btn {
        padding: 8px 14px;
        font-size: 13.5px;
    }
}

/* Mobile & Tablet Navigation Breakpoint (<= 1080px) */
@media (max-width: 1080px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .header-action {
        display: none;
    }

    .mobile-nav-cta {
        display: block;
        width: 100%;
        margin-top: 25px;
        padding-top: 15px;
        border-top: 1px solid var(--border-color);
    }

    .mobile-nav-cta .btn {
        width: 100%;
        text-align: center;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: 0;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 25px rgba(0,0,0,0.15);
        z-index: 999;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 80px 24px 40px;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .main-navigation.active {
        transform: translateX(0);
    }

    .main-navigation ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
    }

    .main-navigation li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
        position: relative;
    }

    .main-navigation a {
        display: block;
        padding: 14px 0;
        font-size: 16px;
        font-weight: 600;
        width: 100%;
        white-space: normal;
    }

    .has-dropdown:hover .dropdown {
        display: none !important;
    }

    .dropdown-toggle {
        display: block;
        position: absolute;
        right: 0;
        top: 10px;
        background: none;
        border: none;
        font-size: 18px;
        color: var(--primary-color);
        padding: 8px 12px;
        cursor: pointer;
        transition: transform 0.2s ease;
    }

    .has-dropdown.dropdown-open .dropdown-toggle {
        transform: rotate(180deg);
    }

    .dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        background: #f4f7fc;
        padding: 5px 0 10px 15px;
        border-top: none;
        border-radius: 4px;
    }

    .has-dropdown.dropdown-open .dropdown {
        display: flex !important;
    }

    .dropdown a {
        padding: 8px 12px;
        font-size: 14px;
        color: #444;
    }

    .footer-widgets {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .page-header {
        padding: 60px 0;
    }

    .page-header h1 {
        font-size: 34px;
    }
}


/* Mobile Devices (<= 767px) */
@media (max-width: 767px) {
    .container {
        padding: 0 16px;
    }

    .header-container {
        padding: 12px 16px;
    }

    .logo-img {
        max-height: 38px;
    }

    .header-top-inner {
        justify-content: center;
    }

    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .legal-links a {
        margin: 0 8px;
    }

    .page-header {
        padding: 45px 0 35px;
    }

    .page-header h1 {
        font-size: 26px;
    }

    .page-header p {
        font-size: 15px;
    }
}

/* =========================================================
   UNIFORM FULL-WIDTH HERO SLIDER & SUBPAGE BANNERS
   ========================================================= */
.hero-slider-wrapper, .subpage-banner-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #f8fbff;
}

.hero-slider-container, .subpage-banner-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slides-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.hero-slide {
    min-width: 100%;
    min-height: 520px;
    position: relative;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* .hero-slide's gradient background (above) now just acts as a fallback color
   in case an image is slow to load or missing — the actual banner image
   below sits on top of it. */
.hero-slide-img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    display: block;
}

/* Scrim: a soft brand-color wash over the banner image. This keeps the actual
   photo/graphic in place (nothing removed) but dims the baked-in text and
   badges enough that they stop competing with the HTML headline card, the
   same way most stock-photo hero banners handle a busy background image. */
.hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 580px; /* matches .hero-slide-img's desktop height so it only tints the image, not the text card below it on mobile */
    background: linear-gradient(120deg, rgba(15, 28, 54, 0.72) 0%, rgba(26, 42, 71, 0.55) 45%, rgba(43, 116, 214, 0.35) 100%);
    z-index: 2;
    pointer-events: none;
}

.subpage-banner-img {
    width: 100%;
    height: auto;
    max-height: 580px;
    object-fit: cover;
    display: block;
}

.hero-slide-overlay-box, .subpage-banner-overlay-box {
    position: absolute;
    bottom: 36px;
    left: 8%;
    max-width: 680px;
    width: calc(100% - 16%);
    z-index: 5;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    padding: 24px 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-sizing: border-box;
}

.hero-slide-overlay-box h1, .subpage-banner-overlay-box h1 {
    font-size: 32px;
    font-weight: 800;
    color: #1a2a47;
    margin: 0 0 8px 0;
    line-height: 1.25;
    overflow-wrap: break-word;
}

.hero-slide-overlay-box p, .subpage-banner-overlay-box p {
    font-size: 15px;
    color: #555555;
    margin: 0 0 16px 0;
    line-height: 1.5;
    overflow-wrap: break-word;
}

.subpage-banner-overlay-box p {
    margin-bottom: 0;
}

.hero-slide-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 16px;
}

.btn-hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    transition: all 0.25s ease;
    white-space: nowrap;
    box-sizing: border-box;
}

.btn-hero-cta-primary span {
    white-space: nowrap;
}

.btn-hero-cta-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    color: #ffffff !important;
}

.btn-hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #1a2a47 !important;
    border: 2px solid #2563eb;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.25s ease;
}

.btn-hero-cta-secondary:hover {
    background: #2563eb;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Slider Controls (Arrows & Dots) */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: var(--secondary-color);
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 24px;
}

.slider-next {
    right: 24px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    right: 8%;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: var(--secondary-color);
    width: 28px;
    border-radius: 6px;
}

/* Spacing fix between why-partner-section and final-cta-section */
.why-partner-section {
    padding-bottom: 100px !important;
}

.final-cta-section {
    margin-top: 20px;
}

/* =========================================================
   TRUST POINTS GRID (5-COLUMN CLEAN BAR)
   ========================================================= */
.trust-points-section {
    background: #ffffff;
    padding: 30px 0;
    border-bottom: 1px solid #e5eaf1;
}

.trust-points-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.trust-point-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #f8fbff;
    border: 1px solid #dde5f0;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.trust-point-card:hover {
    background: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.08);
    transform: translateY(-2px);
}

.trust-point-icon {
    font-size: 22px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #eaf1fd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-point-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1a2a47;
    margin: 0 0 2px 0;
    line-height: 1.2;
}

.trust-point-info p {
    font-size: 12px;
    color: #666666;
    margin: 0;
    line-height: 1.3;
}

/* Responsiveness for Hero Banner, Subpage Banners & Trust Points */
@media (max-width: 1080px) {
    .trust-points-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    /* Homepage Hero Banner Mobile Fix */
    .hero-slide {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        min-width: 100% !important;
        box-sizing: border-box !important;
    }

    .hero-slide-img {
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        object-fit: contain !important;
        display: block !important;
    }

    /* FIX: this rule previously targeted ".hero-slide-cta-floating", a class that
       doesn't exist anywhere in the markup (the real element is
       ".hero-slide-overlay-box"). Because the selector never matched, the mobile
       hero text box silently kept the desktop absolute-positioned styles
       (bottom: 36px, max-width: 680px, big padding) on top of the image, so
       most of the heading/paragraph got clipped off-screen — that's the
       "pathetic" look. Corrected below. */
    .hero-slider-container {
        padding-bottom: 54px; /* reserves space for the arrows/dots so they no longer overlap the stacked text */
    }

    .hero-slide-overlay-box {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        background: #ffffff !important;
        border-radius: 0 !important;
        border: none !important;
        border-bottom: 1px solid #e5eaf1 !important;
        padding: 20px 16px !important;
        text-align: center !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
    }

    .hero-slide-overlay-box h1 {
        font-size: 22px !important;
        margin-bottom: 8px !important;
    }

    .hero-slide-overlay-box p {
        font-size: 14px !important;
        color: #666666 !important;
        margin: 0 0 14px 0 !important;
    }

    .hero-slide-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-top: 0;
    }

    /* FIX: .btn-hero-cta-primary sets "white-space: nowrap" (needed on desktop
       where the button just sizes to fit its text) plus "display: inline-flex"
       on its span/svg children, which by default refuse to shrink below their
       full-line width. Combined with "width: 100%" here, that forced the
       button's text to spill out past the card and get clipped by the
       viewport edge — the cut-off headline/buttons you saw. Overriding
       white-space and giving the inner content room to wrap fixes it. */
    .btn-hero-cta-primary, .btn-hero-cta-secondary {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        white-space: normal !important;
        text-align: center;
        justify-content: center;
    }

    .btn-hero-cta-primary span {
        white-space: normal !important;
    }

    /* Slider Arrows Mobile Placement — now sit inside the reserved strip added
       via .hero-slider-container's padding-bottom above, so they stay clear of
       both the image and the stacked text card. */
    .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 14px;
        top: auto;
        bottom: 8px;
        transform: none;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }

    .slider-arrow:hover {
        transform: scale(1.1);
    }

    .slider-prev { left: 12px; }
    .slider-next { right: 12px; }

    .slider-dots {
        bottom: 14px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    /* Subpage Banner Mobile Fix (Clean image on top, title card below) */
    .subpage-banner-container {
        display: flex;
        flex-direction: column;
    }

    .subpage-banner-img {
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        object-fit: contain !important;
        display: block !important;
    }

    .subpage-banner-overlay-box {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        background: #f8fbff !important;
        border-radius: 0 !important;
        border: none !important;
        border-bottom: 1px solid #e5eaf1 !important;
        padding: 20px 16px !important;
        text-align: center !important;
        box-shadow: none !important;
    }

    .subpage-banner-overlay-box h1 {
        font-size: 22px !important;
        margin-bottom: 6px !important;
    }

    .subpage-banner-overlay-box p {
        font-size: 14px !important;
        color: #666666 !important;
    }

    .trust-points-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .trust-points-grid {
        grid-template-columns: 1fr;
    }
}