/* =============================================================================
   CONSOLIDATED STYLESHEET
   Merged from: styles.css, WhoWeAre.css, Training.css, TopNav.css,
   StoreDetails.css, ServiceReliability.css, SearchPage.css, search.css,
   search-results.css, ProductAvailability.css, NewCustomer.css, media.css,
   HomePage.css, Footer.css, Engaged.css, Contact.css, Careers.css,
   Benefits.css, Hero (inline)
   =============================================================================

   CONFLICT INDEX (search "CONFLICT" to jump to each):
   1.  body font-weight        — styles.css(600) vs Benefits/ServiceReliability/ProductAvailability(400)
   2.  body background         — styles.css(#fff) vs WhoWeAre/NewCustomer/Contact.css (gradients)
   3.  .stats-card size        — styles.css(284px) vs HomePage.css(194.25px)
   4.  .stats-number font-size — styles.css(48px) vs HomePage.css(36px)
   5.  .stats-label font-size  — styles.css(22px) vs HomePage.css(24px)
   6.  .section-text font-size — Engaged.css(22px) vs ServiceReliability/ProductAvailability/Benefits(18px)
   7.  .brand-logo-card shape  — styles.css(10px radius, 90px height) vs feature pages(14.72px radius, 110px height)
   8.  .section-text mobile    — Benefits.css sets 42px !important (likely a typo — should probably be 16px)
   9.  .btn-custom-red         — Hero inline adds font-weight:400; prior definition used font-weight:700
   ============================================================================= */


/* =============================================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================================= */

:root {
    /* --- Heading / Type Scale --- */
    --h1-size: 48px;
    --h2-size: 30px;
    --h3-size: 28px;
    --h4-size: 22px;
    --h5-size: 18px;
    --h6-size: 16px;

    --header-title: var(--header-title-desktop);
    --title-sub-heading: 40px;
    --section-headings: 36px;
    --section-heading-sm: 32px;
    --leader-designation: 36px;
    --stats: 36px;

    --faq-questions: 24px;
    --faq-answers: 24px;
    --cta-text: 16px;

    --hero-title-mobile: 24px;
    --hero-title-tablet: 68px;
    --hero-title-desktop: 80px;

    --fallback-fonts: "Mulish", Arial, Helvetica, sans-serif;

    --figma-black: #181A1B;
    --figma-red: #D92D30;
    --figma-grey: #474C4F;
    --figma-light-pink: #FDF2F2;

    /* --- Brand Colors --- */
    --brand-red: #D92D30;
    --brand-blue: #002D72;
    --primary-color: var(--bs-primary);
    --primary-red: var(--bs-primary);
    --primary-hover: #B52426;
    --bright-red: var(--brand-red);
    --red-accent: var(--brand-red);
    --dark-red: var(--bs-primary);

    /* --- Accent / Blue --- */
    --accent-color: #075383;
    --accent-hover: #3288BE;
    --primary-blue: var(--accent-color);
    --blue-light: var(--bg-blue);
    --blue-dark: #165573;
    --blue-bg: var(--dark-bg);

    /* --- Greyscale / Surfaces --- */
    --bs-primary: #8F1A1C;
    --bs-secondary: var(--figma-grey);

    --text-title: #161819;
    --text-heading: var(--figma-black);
    --text-body: var(--bs-secondary);
    --text-gray: var(--bs-secondary);
    --text-disabled: #BBC5CB;
    --white: #FFFFFF;

    --surface-default: #F2F4F5;
    --surface-subtle: #F8F9FA;
    --border-subtle: #D5DBDE;
    --bg-light: #E5E9EB;
    --dark-bg: #191F33;
    --brand-gray: var(--surface-subtle);

    --bg-pink: #FFE6E4;
    --bg-gray: #F2F4F6;
    --bg-blue: #E3F4FF;

    /* --- Contact.css specific --- */
    --border-color: var(--border-subtle);
    --success-bg: #D4EDDA;
    --success-border: #C3E6CB;
    --success-text: #155724;
    --error-bg: #F8D7DA;
    --error-border: #F5C6CB;
    --error-text: #721C24;

    /* --- search-results.css specific --- */
    --google-blue: #4285F4;

    /* --- WhoWeAre.css timeline --- */
    --timeline-active: var(--brand-red);
}

/* =============================================================================
   2. BASE / RESET
   ============================================================================= */
*,
*::before,
*::after {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

/*
 * CONFLICT 1 — font-weight: styles.css(600) vs Benefits/ServiceReliability/ProductAvailability(400)
 *   RESOLUTION: 400 (normal). The global 600 over-bolded everything; per-component weights apply separately.
 *
 * CONFLICT 2 — background: styles.css(#fff) vs page-level gradients.
 *   RESOLUTION: Default #ffffff. Page gradients scoped to body class below.
 */
body {
    font-family: var(--fallback-fonts);
    font-size: var(--h6-size);
    /* previously: font-size: 16px */
    font-weight: 400;
    /* CONFLICT 1 resolved */
    color: var(text-gray);
    background: #ffffff;
    /* CONFLICT 2 resolved; page variants below */
    overflow-x: hidden;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Override Bootstrap's p reset so Mulish inherits correctly site-wide */
p {
    font-family: var(--fallback-fonts);
}

/* Page-level background variants */
body.page-who-we-are {
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 1) 40%,
            rgba(255, 255, 255, 1) 45%,
            rgba(253, 241, 241, 0.5) 65%,
            rgba(255, 255, 255, 1) 80%,
            rgba(240, 246, 255, 1) 100%) no-repeat;
}

body.page-new-customer {
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(240, 246, 255, 1) 20%,
            rgba(255, 255, 255, 1) 45%,
            rgba(253, 241, 241, 0.5) 65%,
            rgba(255, 255, 255, 1) 80%,
            rgba(240, 246, 255, 1) 100%) no-repeat;
}


/* =============================================================================
   3. TYPOGRAPHY
   ============================================================================= */
h1,
.h1 {
    font-size: var(--h1-size);
}

h2,
.h2 {
    font-size: var(--h2-size);
}

h3,
.h3 {
    font-size: var(--h3-size);
}

h4,
.h4 {
    font-size: var(--h4-size);
}

h1,
h2,
h3,
h4 {
    font-family: var(--fallback-fonts);
}

.header-hero-title {
    font-size: var(--header-title);
    line-height: 1.1;
}

.section-title {
    font-size: var(--section-headings) !important;
    color: var(--bs-primary);
}

.stats-display {
    font-size: var(--stats);
    font-weight: 700;
}

/* FAQ */
.faq-item .question {
    font-size: var(--faq-questions);
}

.faq-item .answer {
    font-size: var(--faq-answers);
}

/* Page Header (WhoWeAre) */
.page-header-title {
    font-family: var(--fallback-fonts);
    font-weight: 800;
    font-size: var(--section-headings);
    /* previously: 36px */
    color: var(--text-heading);
}

.page-header-subtitle {
    font-family: var(--fallback-fonts);
    font-weight: 400;
    font-size: var(--faq-questions);
    /* previously: 24px */
    color: var(--text-gray);
    line-height: 30px;
}

.page-header-divider {
    opacity: 1;
    background-color: var(--text-disabled);
    height: 1px;
    border: none;
    margin: 0 auto;
    max-width: 100%;
}

/* Media page titles */
.media-title-dark {
    color: var(--text-title);
    font-size: var(--section-headings);
    font-weight: 900;
    word-wrap: break-word;
}

/* previously: 36px */
.media-title-red {
    color: var(--brand-red);
    font-size: var(--section-headings);
    font-weight: 900;
    word-wrap: break-word;
}

/* previously: 36px */

/* Contact page headings */
.main-heading {
    font-size: var(--section-headings);
    /* previously: 2.25rem ≈ 36px */
    font-weight: 800;
    color: var(--text-title);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.info-text {
    font-size: var(--h4-size);
    /* previously: 1.375rem ≈ 22px */
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

.text-accent {
    color: var(--primary-red);
    position: relative;
    display: inline-block;
}

.text-accent::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-red);
    transform: scaleX(0);
    transform-origin: right;
    animation: underlineExpand 1.2s ease-out 0.5s forwards;
}

@keyframes underlineExpand {
    to {
        transform: scaleX(1);
        transform-origin: left;
    }
}

/* HomePage labels */
.intro-title {
    color: var(--text-heading) !important;
    font-size: var(--section-headings) !important;
    font-family: var(--fallback-fonts) !important;
    font-weight: 900 !important;
    word-wrap: break-word;
}

/* previously: 36px */
.promo-title {
    font-size: var(--section-headings);
    font-family: var(--fallback-fonts);
    font-weight: 900 !important;
    word-wrap: break-word;
    line-height: 1.25;
}

/* previously: 36px */


/* =============================================================================
   4. UTILITY CLASSES
   ============================================================================= */
.text-primary-red {
    color: var(--primary-red);
}

.text-custom-red {
    color: var(--primary-color) !important;
}

.text-custom-red:hover {
    text-decoration: underline;
}

.text-bright-red {
    color: var(--bright-red);
}

.text-primary {
    color: var(--brand-blue) !important;
}

.text-danger {
    color: var(--brand-red) !important;
}

.bg-primary-red {
    background-color: var(--primary-red);
}

.bg-dark-custom {
    background-color: var(--dark-bg);
}

.bg-surface-subtle {
    background-color: var(--surface-subtle) !important;
}

.border-subtle {
    border-color: var(--border-subtle) !important;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

.bg-dark {
    background-color: var(--text-title) !important;
}

.bg-pink {
    background-color: var(--bg-pink);
}

.bg-gray {
    background-color: var(--bg-gray);
}

.bg-blue {
    background-color: var(--bg-blue);
}

.bg-salmon {
    background-color: #FCE1E1;
}

.bg-lightblue {
    background-color: #E1F4FC;
}

.bg-navy {
    background-color: var(--dark-bg);
}

.bg-coral-light {
    background-color: var(--bg-pink);
    color: var(--text-title);
}

.bg-light-gray {
    background-color: var(--bg-gray);
}

.card p {
    margin-bottom: 0;
}

.card-bg-pink {
    background-color: var(--bg-pink);
}

.card-bg-gray {
    background-color: var(--bg-gray);
}

.card-bg-blue {
    background-color: var(--bg-blue);
}

.cursor-pointer {
    cursor: pointer;
}

.transition-rotate {
    transition: transform 0.3s ease;
}

.rotate-180 {
    transform: rotate(180deg);
}

.wg-default {
    display: none !important;
}

.wg-drop.country-selector .wgcurrent {
    display: none !important;
}


/* =============================================================================
   5. LAYOUT / CONTAINERS
   ============================================================================= */
.container-80 {
    width: 100% !important;
    max-width: 1440px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding-right: 15px;
    padding-left: 15px;
}

@media (max-width: 991px) {
    .container-80 {
        width: 95% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

.content-layer {
    position: relative;
    z-index: 10;
}

.split-background {
    position: relative;
    padding-bottom: 5rem;
    padding-top: 0 !important;
    background-color: var(--white);
    margin-top: -2px;
    z-index: 10;
}

.dark-stripe {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: var(--dark-bg);
    z-index: 0;
}


/* =============================================================================
   6. BUTTONS
   ============================================================================= */
.btn-cta {
    font-size: var(--cta-text);
    background-color: #A22322;
    color: white;
}

/*
 * CONFLICT 9 — .btn-custom-red font-weight:
 *   Shared definition (WhoWeAre, NewCustomer, Careers, Contact) ... font-weight: 700
 *   Hero inline definition ...................................... font-weight: 400
 *   RESOLUTION: 700 kept as global default. The Hero section overrides locally
 *               via .hero .btn-custom-red (see Section 30).
 */
.btn-custom-red {
    background-color: var(--primary-red) !important;
    color: white !important;
    border: none !important;
    font-weight: 700 !important;
    transition: background-color 0.3s ease;
    font-size: var(--h6-size) !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
}

.btn-register-submit {
    background-color: var(--figma-red) !important;
    color: white !important;
    border: none !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    width: 188px;
    padding: 12px 16px;
    transition: background-color 0.3s ease;
}
.btn-register-submit:hover {
    background-color: #B02426 !important;
    color: white !important;
}

/* font-size previously: 16px */
.btn-custom-red:hover {
    background-color: #B02426;
    color: white;
}

.btn-custom-blue {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    font-weight: 700;
}

.btn-custom-blue:hover {
    background-color: #053F63;
    color: white;
}

.btn-dark-red {
    background-color: var(--dark-red);
    color: white;
    border: none;
}

.btn-dark-red:hover {
    background-color: #6D1315;
    color: white;
}

.action-btn {
    background-color: var(--bs-primary);
    color: white;
    width: 256px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: none;
    font-weight: 800;
    font-size: var(--h6-size);
    transition: background-color 0.2s;
    text-decoration: none;
    margin: 0 auto;
}

/* previously: 16px */
.action-btn:hover {
    background-color: #A82022;
    color: white;
}

.cta-btn {
    background-color: var(--bs-primary);
    color: white;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 4px;
    border: none;
    font-size: var(--h6-size);
    height: 44px;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* previously: 16px */
.cta-btn:hover {
    background-color: var(--primary-hover);
}

.custom-buy-now {
    font-family: var(--fallback-fonts) !important;
    height: 48px;
    width: 175px !important;
    border-radius: 8px !important;
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
    padding: 6px 16px !important;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: var(--h6-size) !important;
    justify-content: space-between;
    gap: 8px;
}

/* previously: 16px */
.custom-buy-now:hover {
    background-color: var(--primary-hover);
}

.mobile-search-btn {
    height: 44px;
    width: 46px;
    border-radius: 8px !important;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--text-title);
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}


/* =============================================================================
   7. NAVIGATION
   ============================================================================= */
.navbar-nav .nav-link {
    font-weight: 600;
    font-size: var(--h6-size) !important;
    /* previously: 16px (TopNav overrode styles.css 13px) */
    padding-top: 10px;
    padding-bottom: 10px;
    color: var(--text-title, #161819);
    font-family: var(--fallback-fonts);
    word-wrap: break-word;
}

.navbar-brand svg {
    height: 28px;
    width: 140px;
}

@media (min-width: 992px) {
    .navbar-nav {
        gap: 18px !important;
    }

    .navbar-nav .nav-link {
        color: var(--text-title);
    }

    .navbar-brand svg {
        height: 32px;
        width: 164px;
    }

    .navbar-dark-dropdown {
        background-color: #212529;
        border: 1px solid #373B3E;
    }

    .navbar-dark-dropdown .dropdown-item {
        color: white;
        font-size: 14px;
        font-family: var(--fallback-fonts);
        font-weight: 400;
    }

    .navbar-dark-dropdown .dropdown-item:hover,
    .navbar-dark-dropdown .dropdown-item:focus {
        background-color: #343A40;
        color: var(--white);
    }

    .dropdown-submenu {
        position: relative;
    }

    .dropdown-submenu>.dropdown-menu {
        display: none !important;
        position: absolute !important;
        top: 0 !important;
        left: 100% !important;
        margin-top: -8px !important;
        margin-left: 0 !important;
        border-radius: 0.25rem;
    }

    .dropdown-submenu:hover>.dropdown-menu,
    .dropdown-submenu:focus-within>.dropdown-menu {
        display: block !important;
    }
}

@media (max-width: 991px) {
    .custom-buy-now {
        width: 100% !important;
        height: 44px !important;
        font-size: var(--h6-size);
    }

    /* previously: 16px */
    .offcanvas-body {
        padding: 1rem;
    }

    .offcanvas-body .navbar-nav {
        gap: 8px;
        width: 100%;
    }

    .offcanvas-body .nav-item,
    .offcanvas-body .dropdown-submenu {
        width: 100%;
    }

    .offcanvas-body .nav-link,
    .offcanvas-body .dropdown-item {
        background-color: var(--surface-subtle);
        color: var(--text-title, #161819) !important;
        font-family: var(--fallback-fonts);
        font-size: var(--h6-size) !important;
        font-weight: 600 !important;
        padding: 14px 16px !important;
        border-radius: 4px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        white-space: normal;
    }

    /* previously: 16px */
    .offcanvas-body .dropdown-item {
        font-weight: 500 !important;
    }

    .offcanvas-body .dropdown-menu {
        border: none;
        padding: 8px 0 0 0;
    }

    .offcanvas-body .collapse.show {
        display: flex !important;
        flex-direction: column;
        gap: 8px;
        padding-left: 16px;
    }

    .offcanvas-body .dropdown-toggle::after {
        margin-left: auto;
    }

    .custom-header {
        height: auto !important;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }
}

.custom-header {
    min-height: 80px;
    background: linear-gradient(90.29deg, #000, #000 50%, #000), linear-gradient(#E5E9EB, #E5E9EB);
    display: flex;
    align-items: center;
    box-shadow: 0px 2px 4px rgba(37, 40, 42, 0.04);
}

.custom-search-inner {
    height: 35px;
    width: 466px !important;
    border-radius: 8px !important;
    background-color: var(--surface-default) !important;
    opacity: 0.9;
    font-size: 14px !important;
    border: none;
}

@media (min-width: 992px) {
    .custom-search-inner {
        margin-right: 130px !important;
        width: 500px !important;
    }
}

.custom-buy-now-menu {
    background-color: #212529;
    border: 1px solid #373B3E;
}

.custom-buy-now-menu .dropdown-item {
    color: var(--surface-subtle);
}

.custom-buy-now-menu .dropdown-item:hover,
.custom-buy-now-menu .dropdown-item:focus {
    background-color: #343A40;
    color: var(--white);
}


/* =============================================================================
   8. FOOTER
   ============================================================================= */
.footer-heading {
    font-family: var(--fallback-fonts);
    font-weight: 800;
    font-size: var(--h4-size);
    color: var(--white);
    margin-bottom: 16px;
}

/* previously: 22px */
.footer-link {
    font-family: var(--fallback-fonts);
    font-weight: 400;
    font-size: var(--h5-size);
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.2s ease-in-out;
    display: inline-block;
}

/* previously: 18px */
.footer-link:hover {
    opacity: 0.8;
    color: #E0E0E0;
}

.social-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 4px;
    color: var(--white);
    text-decoration: none;
    transition: transform 0.2s;
    font-size: var(--faq-questions);
}

/* previously: 24px */
.social-icon-wrapper:hover {
    transform: scale(1.05);
    color: var(--white);
}

.social-red {
    background-color: var(--primary-hover);
}

.social-blue {
    background-color: var(--blue-dark);
}

.social-label {
    font-family: var(--fallback-fonts);
    font-weight: 500;
    font-size: 14px;
    color: var(--white);
    margin-top: 8px;
}

@media (max-width: 991.98px) {
    .footer-heading {
        font-size: 20px;
    }

    .footer-link {
        font-size: var(--h6-size);
    }

    /* previously: 16px */
    .social-icon-wrapper {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .mobile-logo-separator {
        margin-top: 2rem;
        padding-top: 2rem;
        width: 100%;
    }
}


/* =============================================================================
   9. STATS CARDS
   CONFLICT 3 — .stats-card width: styles.css=284px | HomePage.css=194.25px → HomePage wins
   CONFLICT 4 — .stats-number font-size: styles.css=48px | HomePage.css=36px → HomePage wins
   CONFLICT 5 — .stats-label font-size: styles.css=22px | HomePage.css=24px → HomePage wins
   ============================================================================= */
.stats-card {
    width: 284px;
    height: 126px;
    border-radius: 16px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 32px;
    box-shadow: 0px 12px 21px 4px rgba(217, 45, 48, 0.15);
    flex: 1 1 0;
}

.stats-card--large {
    width: 284px;
    box-shadow: none;
}

/* styles.css original 284px variant */

.stats-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.stats-number {
    font-family: var(--fallback-fonts);
    font-weight: 800;
    font-size: var(--section-headings);
    /* CONFLICT 4 resolved; previously 36px (HomePage) / 48px (styles.css) */
    line-height: 1.25;
    letter-spacing: 0.36px;
    text-shadow: 0px 2px 4px rgba(37, 40, 42, 0.04);
}

.stats-number--large {
    font-size: var(--h1-size);
}

/* styles.css 48px variant */

.stats-label {
    font-family: var(--fallback-fonts);
    font-weight: 400;
    font-size: var(--faq-questions);
    /* CONFLICT 5 resolved; previously 24px (HomePage) / 22px (styles.css) */
    text-align: center;
    line-height: 1.25;
    letter-spacing: 0.24px;
    text-shadow: 0px 2px 4px rgba(37, 40, 42, 0.04);
}

@media (max-width: 991.98px) {
    .stats-card {
        width: 80px;
        height: 80px;
        padding: 8px;
        border-radius: 8px;
        gap: 4px;
        flex: 0 0 80px;
    }

    .stats-number {
        font-size: var(--h6-size);
    }

    .stats-label {
        font-size: 10px;
        line-height: 1.1;
    }
}


/* =============================================================================
   10. SECTION SHARED COMPONENTS
   ============================================================================= */
.section-heading {
    font-size: var(--section-headings);
    font-weight: 800;
    color: var(--text-heading);
}

/* previously: 32px */
.section-heading .highlight {
    color: var(--red-accent);
}

/*
 * CONFLICT 6 — .section-text: Engaged.css(22px) vs 3 other files(18px) → 18px wins
 *   Use .section-text--lg for the 22px Engaged variant.
 * CONFLICT 8 — Benefits.css mobile override was 42px !important (likely typo) → corrected to 16px
 */
.section-text {
    font-size: var(--h5-size);
    line-height: 1.5;
    color: var(--text-body);
}

/* Global subCaption typography — Figma spec: 22px / 400 / Mulish / lh 26.4px */
.entry-subcaption,
.entry-subcaption p,
.entry-subcaption span {
    font-size: 22px !important;
    font-weight: 400 !important;
    line-height: 26.4px !important;
    word-wrap: break-word;
    color: #474C4F !important;
}

/* previously: 18px */
.section-text--lg {
    font-size: var(--h4-size);
}

/* Engaged.css 22px variant; previously: 22px */
.section-text-bold {
    font-size: var(--h5-size);
    font-weight: 700;
    line-height: 1.5;
    color: var(--text-body);
}

/* previously: 18px */

.feature-image {
    border-radius: 24px;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.bullet-list {
    list-style: none;
    padding: 0;
}

.bullet-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: var(--h4-size);
    line-height: 1.2;
    color: var(--text-body);
}

/* previously: 22px */
.bullet-list-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bullet-icon {
    width: 15.5px;
    height: 31.5px;
    flex-shrink: 0;
}


/* =============================================================================
   11. CTA SECTION
   ============================================================================= */
.cta-section {
    background-color: var(--dark-bg);
    position: relative;
    height: 240px;
    margin-bottom: 0;
    overflow: visible;
    padding: 80px 0 0 0;
}

.cta-card {
    background: #DBE9FF;
    border: 1px solid #82BDFE;
    border-radius: 24px;
    padding: 24px 60px;
    position: relative;
    max-width: 1200px;
    width: 80%;
    margin: 0 auto;
    box-shadow: none;
}

.cta-card::before {
    display: none;
}

.cta-title {
    font-size: var(--h1-size);
    font-weight: 800;
    color: var(--text-heading);
    line-height: 57.6px;
}

/* previously: 48px */
.cta-title .highlight {
    color: var(--brand-red);
}

.cta-card .section-text {
    font-size: var(--h4-size);
    line-height: 26.4px;
    color: var(--bs-secondary);
}

/* previously: 22px */


/* =============================================================================
   12. BRAND LOGOS / CAROUSEL
   ============================================================================= */
.brands-container {
    background-color: var(--blue-bg);
    padding: 48px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.brands-header {
    text-align: center;
    color: white;
    font-size: var(--h3-size);
    font-weight: 700;
    margin-bottom: 32px;
    display: none;
}

/* previously: 28px, approx to --h3-size(28px) */
.brands-header .highlight {
    color: var(--red-accent);
}

.brands-carousel-wrapper {
    overflow: hidden;
    width: 1408px;
    max-width: calc(100vw - 80px);
    margin: 0 auto;
}

.brands-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    /* width: fit-content ensures the duplicated set scrolls exactly one full cycle */
    width: fit-content;
    animation: marquee-brands 30s linear infinite;
}

.brands-grid:hover {
    animation-play-state: paused;
}

/* Seamless infinite marquee: scrolls exactly half the total width (= one set of logos),
   then the duplicate set takes over — no jump back to start */
@keyframes marquee-brands {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/*
 * CONFLICT 7 — .brand-logo-card: styles.css(10px radius, 90px h) vs feature pages(14.72px, 110px h)
 *   Feature-page values used as default; .brand-logo-card--nav preserves nav variant.
 */
.brand-logo-card {
    background: white;
    border: 0.92px solid #E9E9E9;
    border-radius: 14.722px;
    padding: 20px;
    width: 184px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brand-logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-logo-card--nav {
    border-radius: 10px;
    padding: 15px;
    height: 90px;
    width: 100%;
    border: none;
}

.brands-section {
    background-color: var(--dark-bg);
    padding: 30px 0;
    text-align: center;
}

.brands-title {
    font-size: var(--h1-size);
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px white;
}

/* previously: 48px */
.brands-highlight {
    color: var(--primary-hover);
    -webkit-text-stroke: 0;
}

.brand-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


/* =============================================================================
   13. PRODUCT CARDS
   ============================================================================= */
.product-card {
    background: white;
    border: 0.833px solid var(--border-subtle);
    border-radius: 8px;
    padding: 12px;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card-image {
    background: var(--surface-subtle);
    border-radius: 4px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-card-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-body);
    text-align: center;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}


/* =============================================================================
   14. PROVIDE SECTION
   ============================================================================= */
.provide-section {
    background-color: var(--dark-bg);
    color: white;
    position: relative;
    z-index: 1;
}

.provide-section h2 {
    font-family: var(--fallback-fonts);
    font-size: var(--section-headings);
    font-weight: 900;
    line-height: 1.2;
}

.provide-card-wrapper {
    position: relative;
    padding-bottom: 70px;
}

.provide-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 16px;
}

.provide-overlay {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    padding: 16px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: var(--text-heading);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.provide-overlay h5 {
    font-weight: 800;
    font-size: 1.35rem;
    margin-bottom: 5px;
    margin-top: 15px;
}

.provide-overlay p {
    color: #79839A;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.provide-icon {
    height: 50px;
    width: auto;
    display: block;
    margin: 0 auto 10px;
}


/* =============================================================================
   15. SERVE SECTION
   ============================================================================= */
.serve-section {
    background-color: white !important;
}

.serve-menu-btn {
    display: block !important;
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 15px;
    border: 1px solid #8f1a1c !important;
    border-radius: 8px !important;
    background: white !important;
    color: var(--text-title);
    text-align: center;
    font-weight: 700 !important;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none !important;
}

.serve-menu-btn.active,
.serve-menu-btn:hover,
#serve-tabs .serve-menu-btn:hover,
#serve-tabs .serve-menu-btn.active {
    background-color: var(--bs-primary) !important;
    color: white;
    border-color: var(--bs-primary) !important;
    text-decoration: none !important;
}

.serve-content-wrapper {
    position: relative !important;
}

.serve-img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    height: 400px;
}

.serve-text-overlay {
    position: absolute !important;
    padding: 40px;
    border-radius: 30px;
    width: 80%;
    bottom: -70px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    z-index: 10;
}

.serve-text-overlay h3 {
    font-weight: 700;
    font-size: var(--h2-size);
    line-height: 1.2;
    color: var(--text-title);
    margin-bottom: 20px;
}

.serve-text-overlay p {
    color: var(--bs-secondary);
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 0;
}


/* =============================================================================
   16. CARRY / ACTION CARDS SECTION
   ============================================================================= */
.carry-section {
    background-color: var(--dark-bg);
    padding: 80px 0 570px;
    color: white;
    position: relative;
}

.action-cards-overlap {
    margin-top: -590px;
    position: relative;
    z-index: 10;
    padding-bottom: 100px;
}

.action-card-container {
    border-radius: 40px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
}

.action-card-img {
    /* width: 100%; */
    border-radius: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    /* height: 400px; */
    object-fit: cover;
}


/* =============================================================================
   17. PROMO CARDS (HomePage)
   ============================================================================= */
.promo-container {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 33px;
    max-width: 1476px;
    margin: 27px auto 0;
    padding-bottom: 32px;
}

.promo-card {
    background: #F8F9FA;
    border: 1px solid #D5DBDE;
    padding: 10px;
    border-radius: 0;
    flex: 1 1 0;
    max-width: 480px;
    min-width: 280px;
    height: 263px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.promo-banner-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

@media (max-width: 1200px) {
    .promo-container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .promo-card {
        width: calc(50% - 10px);
        max-width: none;
    }
}

/* Tablet: 3 promo cards side by side */
@media (min-width: 768px) and (max-width: 991px) {
    .promo-container {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 12px !important;
        margin-top: 16px !important;
        padding-bottom: 16px !important;
    }

    .promo-card {
        flex: 1 1 0 !important;
        width: auto !important;
        max-width: none !important;
        min-width: 0 !important;
        height: auto !important;
        min-height: auto !important;
    }

    .promo-banner-img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
}

/* Mobile: stack promo cards vertically */
@media (max-width: 767px) {
    .promo-container {
        flex-direction: column !important;
        gap: 16px !important;
        margin-top: 16px !important;
        padding-bottom: 16px !important;
    }

    .promo-card {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: auto !important;
    }

    .promo-banner-img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
}


.action-card-headline p {
    font-family: var(--fallback-fonts) !important;
    font-size: 36px !important;
    font-weight: 900 !important;
    line-height: 1.25 !important;
    word-wrap: break-word;
    margin-bottom: 0;
}

.action-card-container .text-dark p {
    font-family: var(--fallback-fonts) !important;
    font-size: 22px !important;
    font-weight: 400 !important;
    line-height: 26.4px !important;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    .promo-card {
        width: 100%;
    }
}


/* =============================================================================
   18. STORE DETAILS PAGE
   ============================================================================= */
.store-details-section {
    background-color: var(--white);
    font-family: var(--fallback-fonts);
}

.store-card-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 40px 0;
}

@media (min-width: 992px) {
    .store-card-container {
        flex-direction: row;
        align-items: flex-start;
        gap: 40px;
    }
}

.store-left-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
    max-width: 506px;
}

.store-details-header {
    font-weight: 800;
    font-size: var(--section-headings);
    color: var(--dark-text, #181A1B);
    text-transform: capitalize;
    white-space: nowrap;
    margin-bottom: 16px;
    line-height: 1.25;
}

/* previously: 36px */
.store-details-header span {
    color: var(--brand-red);
}

.store-content-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.store-title {
    font-weight: 800;
    font-size: var(--h3-size);
    color: var(--dark-text, #181A1B);
    margin-bottom: 0;
    line-height: 1.2;
}

/* previously: 28px */
.store-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: var(--h6-size);
    color: var(--gray-text, #474C4F);
    line-height: 1.5;
}

/* previously: 16px */
.store-info-item i {
    color: var(--text-heading);
    font-size: 20px;
    width: 26px;
    display: inline-flex;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.hours-highlight {
    color: var(--brand-red);
    font-weight: 700;
}

.store-directions-link {
    color: var(--link-blue, #0E71B8);
    text-decoration: underline;
    font-weight: 600;
    font-size: 14px;
    margin-top: 8px;
    display: inline-block;
}

.store-directions-link:hover {
    text-decoration: underline;
}

.store-image-col {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.store-image-slider {
    width: 100%;
    max-width: 841px;
    aspect-ratio: 841 / 400;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slider-slide {
    min-width: 100%;
    height: 100%;
    object-fit: contain;
}

.slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: background 0.2s;
}

.slider-dot.active {
    background: #D92D30;
    width: 20px;
    border-radius: 4px;
}

.store-back-link {
    color: var(--gray-text, #474C4F);
    font-weight: 700;
    font-size: var(--h6-size);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    transition: color 0.2s ease;
}

/* previously: 16px */
.store-back-link:hover {
    color: var(--link-blue, #0E71B8);
}


/* =============================================================================
   19. WHO WE ARE — ROADMAP / TIMELINE
   ============================================================================= */
.timeline {
    position: relative;
}

.timeline .border-start {
    border-color: #E9ECEF !important;
}

.roadmap-container {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.roadmap-container::-webkit-scrollbar {
    display: none;
    height: 0;
}

.roadmap-scroll {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    min-width: min-content;
    margin: 0 auto;
    padding: 0 40px;
    justify-content: center;
}

.milestone-card {
    position: relative;
    width: 300px;
    min-width: 300px;
    height: 140px;
    text-align: left;
}

.milestone-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.grid-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #E0E0E0;
}

.chart-graphic {
    display: block;
    pointer-events: none;
}

.separator-line {
    position: absolute;
    width: 337px;
    height: 2px;
    background-color: var(--text-disabled);
    border-radius: 12px;
}

.milestone-info {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}

.milestone-year {
    font-size: var(--h1-size);
    /* previously: 48px */
    font-family: var(--fallback-fonts);
    font-weight: 800;
    color: var(--timeline-active);
    line-height: normal;
    margin-bottom: 0;
}

.milestone-marker {
    width: 24px;
    height: 24px;
    border-radius: 12px;
    border: 1px solid #BBC5CB;
    background-color: var(--white);
}

.milestone-marker.active {
    background-color: var(--brand-red);
    border-color: var(--brand-red);
}

.milestone-description {
    font-size: var(--faq-questions);
    /* previously: 24px */
    font-family: var(--fallback-fonts);
    font-weight: 400;
    color: var(--text-gray);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: normal;
    margin-bottom: 0;
}

.milestone-card .grid-lines {
    top: 20px;
    left: 0;
}

.milestone-card .grid-line:nth-child(1) {
    left: 0;
}

.milestone-card .grid-line:nth-child(2) {
    left: 41px;
}

.milestone-card .grid-line:nth-child(3) {
    left: 82px;
}

.milestone-card .grid-line:nth-child(4) {
    left: 123px;
}

.milestone-card .grid-line:nth-child(5) {
    left: 164px;
}

.milestone-card .grid-line:nth-child(6) {
    left: 205px;
}

.milestone-card .grid-line:nth-child(7) {
    left: 246px;
}

.milestone-card .grid-line:nth-child(8) {
    left: 287px;
}

.milestone-card .grid-line:nth-child(9) {
    left: 328px;
}

.milestone-card .grid-line:nth-child(10) {
    left: 369px;
}

.milestone-card .chart-graphic {
    width: 300px;
    height: 140px;
    aspect-ratio: 15 / 7;
    object-fit: contain;
    flex-shrink: 0;
}

.milestone-card .separator-line {
    top: 139px;
    left: 33px;
}

.milestone-card .milestone-info {
    top: 57px;
    left: 33px;
    width: 336px;
}

.roadmap-slider-container {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 80%;
    margin: 16px auto 0;
    max-width: 600px;
}

.roadmap-nav-btn {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--timeline-active, #c00);
    background: none;
    color: var(--timeline-active, #c00);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.roadmap-nav-btn:hover:not(:disabled) {
    background: var(--timeline-active, #c00);
    color: #fff;
}

.roadmap-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.roadmap-slider {
    width: 100%;
    -webkit-appearance: none;
    height: 6px;
    background: #E0E0E0;
    border-radius: 3px;
    outline: none;
    transition: background 0.2s;
}

.roadmap-slider:hover {
    background: #D0D0D0;
}

.roadmap-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--timeline-active);
    cursor: pointer;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.roadmap-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.roadmap-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--timeline-active);
    cursor: pointer;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1200px) {
    .roadmap-scroll {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .roadmap-scroll {
        gap: 24px;
        justify-content: flex-start;
        padding: 0 16px;
    }

    .milestone-card {
        width: 260px;
        min-width: 260px;
        height: 120px;
        overflow: hidden;
    }

    .milestone-card .chart-graphic {
        width: 260px;
        height: 120px;
        aspect-ratio: 15 / 7;
    }

    .roadmap-slider-container {
        width: 92%;
        gap: 10px;
    }

    .roadmap-nav-btn {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .roadmap-scroll {
        gap: 16px;
    }

    .milestone-card {
        width: 220px;
        min-width: 220px;
        height: 103px;
    }

    .milestone-card .chart-graphic {
        width: 220px;
        height: 103px;
        aspect-ratio: 15 / 7;
    }

    .roadmap-slider-container {
        width: 96%;
    }

    .roadmap-nav-btn {
        width: 40px;
        height: 40px;
    }
}


/* =============================================================================
   20. WHO WE ARE — VALUES SECTION
   ============================================================================= */
.values-section-padding {
    padding-top: 80px;
    padding-bottom: 160px;
}

.values-wrapper {
    background-color: var(--white);
}

.values-header-text {
    font-family: var(--fallback-fonts);
    font-weight: 800;
    font-size: var(--section-headings);
    color: var(--white);
}

/* previously: 36px */
.values-cards-container-base {
    margin-top: -150px;
    position: relative;
    z-index: 10;
}

.values-card-rounded {
    border-radius: 24px;
}

.values-icon-box {
    width: 80px;
    height: 80px;
}

.values-icon-color {
    color: var(--primary-red) !important;
}

.icon-square {
    background-color: var(--brand-red) !important;
    color: var(--white);
}

.values-card-title-base {
    font-family: var(--fallback-fonts);
    font-weight: 700;
    font-size: var(--h5-size);
    line-height: 25px;
    color: var(--text-heading);
}

/* previously: 18px */
.values-card-text-base {
    font-family: var(--fallback-fonts);
    font-weight: 500;
    font-size: var(--h5-size);
    color: var(--text-gray);
}

/* previously: 18px */

@media (max-width: 991.98px) {
    .values-section h2 {
        font-size: var(--section-heading-sm) !important;
    }

    /* previously: 32px */
    .values-card-title {
        font-size: 14px !important;
        line-height: normal !important;
    }

    .values-card-text {
        font-size: 12px !important;
    }

    .values-section-padding {
        padding-top: 40px;
        padding-bottom: 80px;
    }

    .values-header-text {
        font-size: var(--faq-questions);
    }

    /* previously: 24px */
    .values-icon-box {
        width: 60px;
        height: 60px;
    }

    .values-icon-box i {
        font-size: 2rem;
    }

    .values-card-body {
        padding: 24px 12px !important;
    }

    .values-row {
        --bs-gutter-x: 12px;
        --bs-gutter-y: 12px;
    }

    .icon-box {
        width: 48px !important;
        height: 48px !important;
    }

    .icon-box i {
        font-size: 1.5rem !important;
    }

    .values-wrapper {
        background-color: var(--dark-bg);
        padding-bottom: 40px;
    }

    .values-header {
        padding-bottom: 40px !important;
    }

    .values-cards-container-base {
        margin-top: 0 !important;
    }
}

@media (min-width: 768px) {
    .values-col {
        min-width: 0;
    }

    .values-row {
        --bs-gutter-x: 24px;
        --bs-gutter-y: 24px;
    }
}


/* =============================================================================
   21. WHO WE ARE — LEADERS SECTION
   ============================================================================= */
.leaders-section {
    background-color: var(--white);
    padding: 40px 0 80px;
}

.leaders-header {
    font-family: var(--fallback-fonts);
    font-weight: 700;
    font-size: var(--section-heading-sm);
    color: var(--black);
}

/* previously: 32px */
.leaders-divider {
    width: 100%;
    height: 1px;
    background-color: #E6E8EB;
    margin: 20px 0;
}

.leader-card {
    border: none;
    background: transparent;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.leader-card-img-container {
    width: 100%;
    aspect-ratio: 300/320;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    background-color: var(--brand-gray);
    transition: box-shadow 0.3s ease-in-out;
}

.leader-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.leader-name {
    font-family: var(--fallback-fonts);
    font-weight: 700;
    font-size: var(--h4-size);
    color: var(--black);
    margin-bottom: 8px;
}

/* previously: 22px */
.leader-title {
    font-family: var(--fallback-fonts);
    font-weight: 600;
    font-size: var(--h6-size);
    color: var(--text-gray);
    line-height: 1.25;
}

/* previously: 16px */
.leader-card:hover .leader-card-img-container {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.leader-card:hover .leader-card-img {
    transform: scale(1.05);
}

.leader-details-wrapper {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
}

.leader-details-panel {
    display: block;
    width: 100%;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    border: 1px solid #E6E8EB;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease-in-out, opacity 0.4s ease-in-out, margin 0.3s ease;
    margin-top: 0;
    margin-bottom: 0;
    border-width: 0;
}

.leader-details-panel.show {
    max-height: 2000px;
    opacity: 1;
    margin-top: 24px;
    margin-bottom: 24px;
    border-width: 1px;
}

.leader-details-content {
    padding: 48px;
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
}

.leader-details-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    font-size: var(--faq-questions);
    color: #8C9499;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
    padding: 0;
    line-height: 1;
}

/* previously: 24px */
.leader-details-close:hover {
    color: var(--black);
}

.leader-details-img-container {
    flex: 0 0 300px;
    width: 300px;
    height: auto;
    min-height: 300px;
    border-radius: 12px;
    overflow: hidden;
    background-color: transparent;
    position: relative;
}

.leader-details-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.leader-details-info {
    flex: 1;
}

.leader-details-name {
    font-family: var(--fallback-fonts);
    font-weight: 600;
    font-size: var(--h1-size);
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* previously: 36px (= --leader-designation) */
.leader-details-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.leader-details-linkedin {
    font-size: var(--faq-questions);
    color: #000;
    text-decoration: none;
    transition: opacity 0.2s;
    margin-left: auto;
}

/* previously: 24px */
.leader-details-linkedin:hover {
    opacity: 0.7;
}

.leader-details-title {
    font-family: var(--fallback-fonts);
    font-weight: 600;
    font-size: var(--h2-size);
    line-height: 1.2;
    color: var(--text-gray);
    margin-bottom: 32px;
}

/* previously: 24px */
.leader-details-bio {
    font-family: var(--fallback-fonts);
    font-weight: 400;
    font-size: var(--h5-size);
    line-height: 1.6;
    color: var(--text-gray);
    white-space: pre-line;
}

/* previously: 16px */

@media (max-width: 768px) {
    .leaders-section {
        padding: 40px 0;
    }

    .leader-card {
        margin-bottom: 24px;
    }
}

@media (max-width: 991.98px) {
    .leader-details-content {
        flex-direction: column;
        padding: 24px;
        gap: 24px;
        text-align: center;
    }

    .leader-details-img-container {
        width: 100%;
        height: auto;
        max-height: 400px;
        flex: none;
        border-radius: 1%;
    }

    .leader-details-name {
        justify-content: center;
        font-size: var(--h3-size);
        flex-wrap: wrap;
    }

    /* previously: 28px */
    .leader-details-title {
        font-size: var(--h5-size);
        margin-bottom: 24px;
    }

    /* previously: 18px */
    .leader-name {
        font-size: 14px;
        margin-top: 12px;
        margin-bottom: 4px;
    }

    .leader-title {
        font-size: 10px;
        line-height: 1.2;
    }

    .leader-card {
        padding: 12px;
    }
}


/* =============================================================================
   22. TRAINING / COURSE LISTINGS
   ============================================================================= */

/* Card flex column — spacer pushes footer to bottom on all screen sizes */
body .hf-course-card {
    display: flex;
    flex-direction: column;
}

body .hf-course-card .hf-card-spacer {
    flex-grow: 1;
    min-height: 0.5rem;
}

/* =============================================================================
   23. TRAINING REGISTRATION PAGE
   ============================================================================= */
.training-register-body {
    background: #f8f9fa;
    min-height: 80vh;
}

/* Detail table */
.tr-detail-table td {
    padding: 0.75rem 1.25rem;
    vertical-align: top;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}
.tr-detail-table tr:last-child td {
    border-bottom: none;
}
.tr-detail-label {
    width: 160px;
    font-weight: 700;
    color: #474C4F;
    white-space: nowrap;
}
.tr-detail-value {
    color: #474C4F;
}

/* Calendar buttons */
.tr-cal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid #dee2e6;
    background: #fff;
    border-radius: 10px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    font-family: "Mulish", Arial, sans-serif;
    color: #474C4F;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.tr-cal-btn:hover {
    border-color: var(--figma-red);
    box-shadow: 0 0 0 3px rgba(217, 45, 48, 0.08);
}

/* Form inputs */
.tr-form-input {
    height: 52px;
    border-radius: 10px !important;
    border-color: #dee2e6;
    font-size: 14px;
    font-family: "Mulish", Arial, sans-serif;
}
.tr-form-input:focus {
    border-color: var(--figma-red);
    box-shadow: 0 0 0 3px rgba(217, 45, 48, 0.1);
}
.tr-phone-group .input-group-text.tr-phone-prefix {
    background: #f8f9fa;
    border-color: #dee2e6;
    border-radius: 10px 0 0 10px !important;
    font-size: 13px;
    font-weight: 600;
    gap: 6px;
}

@media (max-width: 575.98px) {
    .tr-detail-label {
        width: 120px;
        font-size: 12px;
    }
    .tr-detail-table td {
        padding: 0.6rem 1rem;
        font-size: 13px;
    }
}

/* Reset Filters Button */
.hf-clear-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: "Mulish", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #6c757d;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    transition: color 0.2s;
    width: 100%;
    justify-content: center;
}
.hf-clear-btn:hover {
    color: var(--figma-red);
}
.hf-clear-btn:hover .hf-clear-icon {
    transform: rotate(-45deg);
}
.hf-clear-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #f1f3f5;
    font-size: 14px;
    transition: transform 0.3s ease, background-color 0.2s;
    flex-shrink: 0;
}
.hf-clear-btn:hover .hf-clear-icon {
    background-color: #fdecea;
    color: var(--figma-red);
    transform: rotate(-180deg);
}

/* Pagination */
#hfPaginationNav button {
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    box-shadow: none;
    font-family: "Mulish", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
}
#hfPaginationNav button.hf-page-btn {
    min-width: 38px;
    height: 38px;
    border: 1.5px solid #dee2e6 !important;
    background: #fff !important;
    border-radius: 8px !important;
    color: #161819 !important;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 0 10px;
    line-height: 1;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
#hfPaginationNav button.hf-page-btn:hover:not(.active):not(.hf-page-disabled) {
    background: #f8f9fa !important;
    border-color: #adb5bd !important;
}
#hfPaginationNav button.hf-page-btn.active {
    background: var(--figma-red) !important;
    color: #fff !important;
    border-color: var(--figma-red) !important;
    font-weight: 600;
}
#hfPaginationNav button.hf-page-btn.hf-page-prev,
#hfPaginationNav button.hf-page-btn.hf-page-next {
    border: none !important;
    background: transparent !important;
    color: var(--figma-red) !important;
    font-weight: 700;
    min-width: auto;
    padding: 0 6px;
}
#hfPaginationNav button.hf-page-btn.hf-page-disabled {
    color: #adb5bd !important;
    cursor: default;
    pointer-events: none;
}

@media (min-width: 992px) {
    .hf-sidebar-column {
        position: static !important;
        width: 100% !important;
        z-index: auto;
    }
    .hf-sidebar-card {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-end !important;
        gap: 1rem !important;
        padding: 1rem 1.25rem !important;
        overflow: visible !important;
    }
    .hf-sidebar-card #filterToggle {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        border-bottom: 0 !important;
        flex-shrink: 0;
        width: auto;
    }
    .hf-sidebar-card #filterBody {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-end !important;
        gap: 0.75rem !important;
        flex-grow: 1 !important;
        flex-wrap: wrap;
        overflow: visible !important;
    }
    .hf-sidebar-card #filterBody .mb-3,
    .hf-sidebar-card #filterBody .mb-4 {
        margin-bottom: 0 !important;
        flex: 1 1 150px;
        min-width: 130px;
    }
    .hf-sidebar-card #filterBody > .d-flex {
        margin-bottom: 0 !important;
        flex-shrink: 0;
        padding-top: 0 !important;
    }
}

@media (min-width: 992px) {
    body .hf-listing-area {
        max-height: calc(100vh - 220px);
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: var(--bg-light) transparent;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
        align-items: stretch;
    }

    body .hf-listing-area::-webkit-scrollbar {
        width: 6px;
    }

    body .hf-listing-area::-webkit-scrollbar-track {
        background: transparent;
    }

    body .hf-listing-area::-webkit-scrollbar-thumb {
        background-color: var(--bg-light);
        border-radius: 10px;
    }

    body .hf-listing-area::-webkit-scrollbar-thumb:hover {
        background-color: #CED4DA;
    }

    body .hf-main-row {
        border: 1px solid #E5E5E5;
        border-radius: 16px 16px 0 0;
        overflow: visible;
        padding: 40px 24px;
        box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
        margin-bottom: 20px;
        background-color: var(--surface-subtle);
    }

    body .hf-metadata-grid {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 8px !important;
    }

    body .hf-meta-left {
        display: flex !important;
        flex-direction: column !important;
        gap: 3px !important;
        flex: 1 !important;
        min-width: 0 !important;
    }

    body .hf-meta-right {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        align-self: center !important;
    }

    body .hf-course-card h4 {
        text-align: left !important;
        font-size: var(--h6-size) !important;
        font-weight: 600 !important;
    }

    /* 3-column grid card layout */
    body .hf-course-card {
        display: flex;
        flex-direction: column;
        margin-bottom: 0 !important;
        height: 100%;
    }

    body .hf-course-card > div:first-child {
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 0.75rem !important;
    }

    body .hf-course-card > div:first-child > .flex-grow-1 {
        width: auto !important;
        min-width: 0 !important;
    }

    body .hf-course-card > div:first-child .flex-shrink-0 {
        width: 140px !important;
        height: 76px !important;
    }

    /* Empty state spans all 3 columns */
    body .hf-listing-area > .text-center {
        grid-column: 1 / -1;
    }

    .hf-address-link {
        flex-wrap: nowrap !important;
        white-space: nowrap;
        justify-content: flex-start !important;
        gap: 12px !important;
    }
}

body #filterBody {
    transition: max-height 0.35s ease-in-out;
    overflow: hidden;
}

body .hf-datepicker-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    width: 580px;
    background: white !important;
    border: 1px solid #CED4DA !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;
    z-index: 1050;
    padding: 16px;
    display: none;
}

body .hf-dp-calendars {
    display: flex;
    gap: 16px;
}

body .hf-dp-cal {
    flex: 1;
}

body .hf-dp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

body .hf-dp-nav {
    width: 32px;
    height: 32px;
    border: 1.5px solid #DDD;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--figma-grey);
    background: white;
    font-size: 14px;
    transition: background 0.15s;
}

body .hf-dp-nav:hover {
    background: #F5F5F5;
}

body .hf-dp-month {
    font-weight: 700;
    font-size: 15px;
    color: var(--figma-grey);
}

body .hf-dp-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 12px;
    color: var(--figma-grey);
}

body .hf-dp-dow-cell {
    font-weight: 600;
    color: #999;
    padding-bottom: 4px;
}

body .hf-dp-day-cell {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.1s;
}

body .hf-dp-day-cell.has-clinic {
    background-color: var(--figma-light-pink) !important;
    border: 1.5px solid var(--figma-red) !important;
    color: var(--figma-red) !important;
    padding: 4px;
    font-weight: 800 !important;
}

body .hf-dp-day-cell.selected {
    background-color: var(--figma-red) !important;
    color: white !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    opacity: 1 !important;
    z-index: 5 !important;
}

body .hf-dp-day-cell.in-range {
    background: var(--figma-light-pink) !important;
    color: var(--figma-black) !important;
}

body .hf-dp-day-cell.is-today:not(.selected) {
    border-bottom: 2px solid var(--figma-red) !important;
    background-color: var(--surface-subtle) !important;
    font-weight: 700 !important;
}

body .hf-dp-day-cell.inactive {
    opacity: 0.25;
    cursor: pointer;
}

body .hf-dp-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #EEE;
    margin-top: 16px;
}

body .hf-dp-btn-cancel {
    border: 1.5px solid var(--figma-red) !important;
    color: var(--figma-red) !important;
    border-radius: 8px !important;
    padding: 8px 20px !important;
    font-weight: 700 !important;
    background: white !important;
    font-size: 14px !important;
    cursor: pointer !important;
    transition: all 0.2s;
}

body .hf-dp-btn-cancel:hover {
    background: #FDF2F2 !important;
}

body .hf-dp-btn-done {
    background: var(--figma-red) !important;
    color: white !important;
    border: 1.5px solid var(--figma-red) !important;
    border-radius: 8px !important;
    padding: 8px 20px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    cursor: pointer !important;
    transition: all 0.2s;
}

body .hf-dp-btn-done:hover {
    background: #B22426 !important;
    border-color: #B22426 !important;
}

body .hf-date-wrapper {
    border-radius: 8px;
    position: relative;
}

body .hf-date-field {
    background-color: var(--white) !important;
    border: 1px solid #CED4DA !important;
    height: 38px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px !important;
    border-radius: 8px !important;
    color: var(--bs-secondary) !important;
    font-size: 14px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    cursor: pointer !important;
}

body .hf-date-field.placeholder {
    color: #6C757D !important;
}

body .hf-sidebar-card .form-select:has(option[value=""]:checked) {
    color: #6C757D !important;
}

body .hf-date-field span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 8px;
}

body .hf-date-field:focus {
    border-color: #86B7FE !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25) !important;
    outline: 0;
}

body .hf-read-more-hf {
    color: #0D6EFD !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 8px;
    transition: all 0.2s ease;
    background: transparent;
}

body .hf-read-more-hf:hover {
    background: rgba(13, 110, 253, 0.08) !important;
    transform: translateY(-1px);
}

body .hf-sidebar-card {
    background-color: var(--white) !important;
    border: 1px solid #E5E9EB !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    height: auto;
}

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

@media (max-width: 991.98px) {
    body .hf-sidebar-column {
        width: 100% !important;
        margin-bottom: 30px;
    }

    body .hf-course-card {
        flex-direction: column !important;
        align-items: stretch !important;
        text-align: left !important;
    }

    body .hf-course-card>div:first-child {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
    }

    body .hf-course-card .flex-shrink-0 {
        width: 100% !important;
        margin-bottom: 24px;
        display: flex !important;
        justify-content: center !important;
    }

    body .hf-course-card .register-btn {
        width: 100% !important;
        margin-top: 15px;
    }

    .hf-metadata-grid {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 8px !important;
        width: 100% !important;
        align-self: stretch !important;
    }

    .hf-meta-left {
        display: flex !important;
        flex-direction: column !important;
        gap: 5px !important;
        flex: 1 !important;
    }

    .hf-meta-right {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        align-self: center !important;
    }

    body .hf-course-card h4 {
        font-size: 1.25rem !important;
        margin-bottom: 12px !important;
        align-self: flex-start !important;
        text-align: left !important;
        width: 100%;
    }

    .hf-footer-stack {
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        gap: 16px;
        width: 100%;
    }

    .hf-footer-stack>* {
        width: 100% !important;
        text-align: left !important;
    }

    .hf-footer-stack .register-btn {
        order: 4;
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 100% !important;
    }

    .hf-address-link {
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
        row-gap: 4px !important;
        width: 100% !important;
    }

    .hf-calendar-row {
        display: none !important;
    }

    .hf-calendar-icons {
        justify-content: flex-start !important;
        flex-grow: 0 !important;
        width: auto !important;
        display: flex !important;
        margin-left: 0 !important;
        margin-right: auto !important;
    }
}

@media (max-width: 480px) {
    .hf-calendar-row {
        display: none !important;
    }

    .hf-calendar-icons {
        width: 100% !important;
    }
}

@media (max-width: 991.98px) {
    .training-hf-body {
        overflow-x: hidden;
    }

    body .hf-main-row {
        overflow-x: hidden;
    }
}

@media (max-width: 767.98px) {
    body .hf-datepicker-dropdown {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100vw !important;
        border-radius: 16px 16px 0 0;
        max-height: 80vh;
        overflow-y: auto;
        z-index: 9999;
    }

    body .hf-dp-cal {
        width: 100%;
    }
}


/* =============================================================================
   23. SEARCH PAGES
   ============================================================================= */
.search-icon-pos {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
}

.search-input-custom {
    padding-left: 48px !important;
    border-radius: 8px;
}

.search-input-custom:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(143, 26, 28, 0.25);
}

.result-url {
    font-size: 14px;
    color: var(--accent-hover);
    word-break: break-all;
}

.result-url:hover {
    text-decoration: underline;
}

.page-link-custom {
    color: #000;
    font-weight: 600;
    border-color: var(--border-subtle);
}

.page-link-custom:hover {
    background-color: var(--surface-default);
    color: var(--text-title);
}

.page-item.active .page-link-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.ais-SearchBox-form {
    position: relative;
    background: transparent !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.ais-SearchBox-input {
    padding-left: 48px !important;
    border-radius: 8px;
    height: 48px;
    font-size: var(--h6-size);
    border: 1px solid var(--border-subtle);
}

/* previously: 16px */
.ais-SearchBox-submit,
.ais-SearchBox-reset,
.ais-SearchBox-loadingIndicator,
.ais-SearchBox-form>button {
    display: none !important;
}

.result-description mark {
    background-color: #FFF3CD;
    font-weight: 600;
    padding: 1px 2px;
}

.ais-Pagination-item--selected .ais-Pagination-link {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

#hits,
.ais-Hits,
.ais-Hits-list,
.ais-Hits-item {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.ais-Hits-item {
    margin-bottom: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.search-input-wrapper {
    position: relative !important;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 760px;
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02), 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}

.search-input-wrapper.active {
    border: 2.5px solid transparent !important;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #6366f1, #a855f7, #ec4899, #6366f1) border-box !important;
    background-size: 200% 100% !important;
    animation: active-border-flow 3s linear infinite !important;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.15) !important;
}

@keyframes active-border-flow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.search-input-wrapper:focus-within {
    border-color: #CBD5E1;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 8px 24px rgba(139, 92, 246, 0.08);
    transform: translateY(-1px);
}

.ais-SearchBox-form {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    width: 100%;
    display: flex;
    align-items: center;
}

.ais-SearchBox-input {
    width: 100% !important;
    height: auto !important;
    min-height: 64px !important;
    border: none !important;
    background-color: transparent !important;
    background-position: left 20px center !important;
    background-size: 20px !important;
    background-repeat: no-repeat !important;
    padding: 20px 145px 20px 56px !important;
    /* font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important; */
    font-size: var(--h6-size) !important;
    line-height: normal !important;
    color: #1E293B !important;
    box-shadow: none !important;
    border-radius: 32px !important;
    outline: none !important;
    -webkit-appearance: none !important;
}

/* previously: 16px */
.ais-SearchBox-input::placeholder {
    color: #64748B !important;
}

.ais-SearchBox-input::-webkit-search-decoration,
.ais-SearchBox-input::-webkit-search-cancel-button,
.ais-SearchBox-input::-webkit-search-results-button,
.ais-SearchBox-input::-webkit-search-results-decoration {
    display: none !important;
}

.ai-toggle-pos {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
}

.ai-mode-wrapper {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #6366f1, #a855f7, #ec4899, #6366f1) border-box !important;
    border: 2px solid transparent !important;
    border-radius: 9999px;
    padding: 2px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    background-size: 200% 100% !important;
    animation: ai-button-idle-flow 3s linear infinite !important;
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.2);
}

@keyframes ai-button-idle-flow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.ai-mode-wrapper:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

.ai-mode-wrapper.active {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%) padding-box, linear-gradient(90deg, #6366f1, #a855f7, #ec4899, #6366f1) border-box !important;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.ai-mode-btn {
    background: transparent;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
    font-weight: 700;
    font-size: 13.5px;
    color: #475569;
    padding: 3px 12px;
    border-radius: 9999px;
    transition: all 0.2s ease;
    border: none;
    box-shadow: none;
}

.ai-mode-wrapper.active .ai-mode-btn {
    color: var(--white);
}

.search-sparkle {
    color: #9506f4eb;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 3px rgba(139, 92, 246, 0.3));
    animation: star-twinkle 2s ease-in-out infinite !important;
    transform-origin: center;
}

@keyframes star-twinkle {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
        filter: brightness(1);
    }

    50% {
        transform: scale(1.35);
        opacity: 1;
        filter: brightness(1.6) drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
    }
}

.ai-mode-wrapper.active .search-sparkle {
    color: var(--white);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 1)) brightness(1.5);
    animation: active-star-pulse 1.2s ease-in-out infinite !important;
}

@keyframes active-star-pulse {

    0%,
    100% {
        transform: scale(1.2);
        filter: brightness(1.2);
    }

    50% {
        transform: scale(1.45);
        filter: brightness(1.8) drop-shadow(0 0 15px rgba(255, 255, 255, 1));
    }
}

.ai-typing {
    border-right: .15em solid var(--primary-color);
    white-space: pre-wrap;
    animation: blink-caret .75s step-end infinite;
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: var(--primary-color);
    }
}

.ai-shimmer {
    animation: ai-text-shimmer 2.5s infinite linear;
    background: linear-gradient(90deg, #4b5563 0%, #8b5cf6 25%, #ec4899 50%, #4b5563 75%);
    background-size: 200% 100%;
    color: transparent;
    -webkit-background-clip: text;
    font-weight: 700;
    letter-spacing: -0.01em;
}

@keyframes ai-text-shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.result-card-wrapper {
    margin-bottom: 0 !important;
    max-width: 800px;
    padding: 0 !important;
}

.result-source-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.result-favicon {
    width: 28px;
    height: 28px;
    background: #F1F3F4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5F6368;
}

.result-source-info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.result-domain-name {
    font-family: var(--fallback-fonts);
    font-size: 14px;
    color: #202124;
    font-weight: 400;
}

.result-url-small {
    font-family: var(--fallback-fonts);
    font-size: 12px;
    color: #4D5156;
    word-break: break-all;
}

.result-card-title-meta {
    font-family: var(--fallback-fonts);
    font-weight: 700;
    font-size: var(--h6-size);
    color: #64748B;
    margin-bottom: 0.75rem !important;
    display: block;
    padding: 0 !important;
}

/* previously: 16px */
.result-card {
    padding: 8px 12px !important;
    border-radius: 12px;
    background: #ffffff;
    transition: none !important;
    position: relative;
    margin-bottom: 0.3rem !important;
}

.result-card:hover {
    border-color: #CBD5E1 !important;
}

.result-title-link {
    font-family: var(--fallback-fonts);
    font-size: var(--h5-size);
    font-weight: 500;
    color: #2563EB !important;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
}

/* previously: 18px */
.result-title-link:hover {
    text-decoration: underline;
}

.result-snippet {
    font-family: var(--fallback-fonts);
    font-size: 14.5px;
    line-height: 1.6;
    color: #475569;
}

.ai-answer-card {
    background: #ffffff;
    position: relative;
    border: 1px solid #E1E7F0 !important;
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 10px 40px -10px rgba(139, 92, 246, 0.08), 0 4px 6px -1px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: none !important;
}

.ai-answer-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899, #6366f1);
    background-size: 200% 100%;
    animation: active-border-flow 4s linear infinite;
    z-index: 20;
}

.ai-card-header {
    background: linear-gradient(to bottom, #fcfdff, #f8faff) !important;
    padding: 1.5rem 1.75rem 1.25rem 1.75rem !important;
    border-bottom: 1px solid rgba(139, 92, 246, 0.05) !important;
}

.ai-card-header h2 {
    color: #1A1E2E !important;
    font-family: var(--fallback-fonts);
    font-weight: 700;
    font-size: var(--h5-size);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.01em;
}

/* previously: 18px */
#ai-answer-content {
    padding: 1.5rem;
    font-size: 14.5px;
    font-family: var(--fallback-fonts);
    color: #334155;
    line-height: 1.65;
}

.section-badge {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 6px;
    background: #F8F9FA;
    color: #5F6368;
    display: inline-block;
    margin-bottom: 0.75rem;
    border-left: 3px solid var(--google-blue);
}


/* =============================================================================
   24. MEDIA / NEWS PAGE
   ============================================================================= */
.social-product-img {
    width: 170px;
    height: 170px;
    object-fit: contain;
    border-radius: 16px;
}

@media (max-width: 767px) {
    .social-product-img {
        width: 60px;
        height: 60px;
        border-radius: 10px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .social-product-img {
        width: 100px;
        height: 100px;
    }
}

.media-section {
    font-family: var(--fallback-fonts);
}

.media-card {
    background: white;
    border-radius: 16px;
    outline: 0.56px solid #D5DBDE;
    outline-offset: -0.56px;
    padding: 24px 32px;
}

.social-card {
    background: white;
    border-radius: 16px;
    outline: 0.56px solid #D5DBDE;
    outline-offset: -0.56px;
    padding: 32px;
}

.media-card-title {
    color: var(--text-heading);
    font-size: var(--h4-size);
    font-weight: 800;
    line-height: 26.40px;
    word-wrap: break-word;
}

/* previously: 22px */
.media-card-text {
    color: var(--bs-secondary);
    font-size: var(--h6-size);
    font-weight: 400;
    word-wrap: break-word;
}

/* previously: 16px */
.media-read-more {
    color: var(--accent-color);
    font-size: var(--h6-size);
    font-weight: 500;
    text-decoration: none;
}

/* previously: 16px */
.media-read-more:hover {
    text-decoration: underline;
    color: #053B5E;
}

.news-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    width: 240px;
    height: 127px;
}

.news-image-wrapper img {
    position: absolute;
    left: 0;
    top: -26.5px;
    width: 240px;
    height: 180px;
    object-fit: contain;
}

.social-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 222px;
    margin-bottom: 24px;
}

.social-image-wrapper img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -29px;
    width: 646px;
    max-width: none;
    height: 280px;
    object-fit: cover;
}

.news-image-wrapper::after,
.social-image-wrapper::after {
    content: none;
}

@media (max-width: 768px) {
    .news-image-wrapper {
        width: 100%;
        height: 200px;
    }

    .news-image-wrapper img {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    .social-image-wrapper img {
        width: 100%;
        height: 100%;
        top: 0;
    }
}

.pagination .page-link {
    color: var(--accent-color);
    border-color: var(--border-subtle);
    font-weight: 600;
}

.pagination .page-link:hover {
    color: #053B5E;
    background-color: var(--surface-subtle);
    border-color: var(--border-subtle);
}

.pagination .page-item.active .page-link {
    background-color: var(--brand-red);
    border-color: var(--brand-red);
    color: white;
}

.pagination .page-item.disabled .page-link {
    color: #6C757D;
    background-color: var(--white);
    border-color: var(--border-subtle);
}


/* =============================================================================
   25. ACCORDION / FAQ
   ============================================================================= */
.accordion-item {
    border: none;
    background-color: transparent;
    margin-bottom: 20px !important;
}

.accordion-button {
    background-color: var(--white);
    border-radius: 8px !important;
    box-shadow: none !important;
    padding: 20px;
    font-weight: 600;
    color: var(--bs-secondary);
    display: flex !important;
    align-items: center !important;
}

.accordion-button img,
.accordion-button i {
    flex-shrink: 0;
}

.accordion-button span {
    display: flex;
    align-items: center !important;
}

.accordion-button p {
    margin-bottom: 0px !important;
}

.accordion-button::after {
    background-image: none !important;
    content: "+";
    font-size: var(--faq-questions);
    color: #79839A;
    font-family: sans-serif;
    font-weight: 300;
    transform: none !important;
}

/* previously: 24px */
.accordion-button:not(.collapsed) {
    background-color: var(--white);
    color: var(--text-title);
    box-shadow: none;
}

.accordion-body {
    background-color: var(--white);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 20px;
    color: #79839A;
}


/* =============================================================================
   26. FEATURES / FORM SECTIONS
   ============================================================================= */
.features-section {
    padding: 40px 0;
    background-color: var(--dark-bg);
}

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-pink);
    color: var(--brand-red);
    border-radius: 50%;
}

.features-card-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 8px solid #F8F9FA;
    background-color: #000;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.form-section {
    padding: 40px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg) 40%, white 40%, white 100%);
}

.form-container {
    border: none;
    border-radius: 24px;
    padding: 40px;
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 1px solid #D5DBDE;
    padding: 12px;
    border-radius: 8px;
    background-color: var(--white);
}


/* =============================================================================
   27. CONTACT PAGE — CUSTOM FORM CONTROLS
   ============================================================================= */
.contact-page {
    padding-bottom: 3rem;
}

.main-card {
    border: none;
    border-radius: 24px;
    overflow: hidden;
}

.main-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12) !important;
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 629px;
}

.custom-input,
.custom-select,
.custom-textarea {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: var(--text-gray);
    transition: all 0.3s ease;
    min-height: 48px;
}

.custom-input::placeholder,
.custom-select::placeholder,
.custom-textarea::placeholder {
    color: var(--text-gray);
    opacity: 0.6;
}

.custom-input:hover,
.custom-select:hover,
.custom-textarea:hover {
    border-color: var(--dark-red);
    background-color: var(--white);
}

.custom-input:focus,
.custom-select:focus,
.custom-textarea:focus {
    border-color: var(--primary-red);
    background-color: var(--white);
    box-shadow: 0 0 0 0.2rem rgba(217, 45, 48, 0.1);
    outline: none;
}

.custom-input:focus::placeholder,
.custom-textarea:focus::placeholder {
    opacity: 0.4;
}

.custom-input.is-valid,
.custom-select.is-valid,
.custom-textarea.is-valid {
    border-color: #28A745;
    background-color: #F0FFF4;
}

.custom-input.is-invalid,
.custom-select.is-invalid,
.custom-textarea.is-invalid {
    border-color: var(--primary-red);
    background-color: #FFF5F5;
}

.custom-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23474c4f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    padding-right: 3rem;
    cursor: pointer;
}

.custom-select:hover {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%238f1a1c' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.custom-textarea {
    resize: vertical;
    min-height: 105px;
}

.custom-input-group .input-group-text {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: 8px 0 0 8px;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-input-group .custom-input {
    border-left: none;
    border-radius: 0 8px 8px 0;
}

.custom-input-group:hover .input-group-text {
    border-color: var(--dark-red);
    background-color: var(--white);
}

.custom-input-group:focus-within .input-group-text {
    border-color: var(--primary-red);
    background-color: var(--white);
}

.country-code {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-title);
    font-size: 1rem;
}

.flag-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid #D4D7E3;
    object-fit: cover;
}

.dropdown-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.country-code:hover .dropdown-icon {
    transform: rotate(180deg);
}

.alert {
    border-radius: 8px;
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background-color: var(--success-bg);
    border-color: var(--success-border);
    color: var(--success-text);
}

.alert-danger {
    background-color: var(--error-bg);
    border-color: var(--error-border);
    color: var(--error-text);
}


/* =============================================================================
   28. CAREERS PAGE
   ============================================================================= */
.join-card {
    max-width: 1100px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
    border-radius: 1.5rem;
}

.join-card h2 {
    font-family: var(--fallback-fonts);
    font-size: var(--section-headings);
    font-weight: 900;
    line-height: 1.2;
}

.join-section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
    margin-left: 60px;
    margin-right: 60px;
}

.img-corner-switch {
    border-radius: 2.1rem !important;
    width: 100%;
    max-height: 380px;
    position: relative;
    max-width: 100%;
    overflow: hidden;
    flex-shrink: 0;
    object-fit: cover;
}

.community-img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
}

.list-unstyled li {
    display: flex;
    align-items: center;
    font-size: var(--h6-size);
    color: var(--bs-secondary);
}

/* previously: 16px */

@media (min-width: 992px) {
    .provide-section {
        padding-bottom: 120px !important;
    }

    .overlap-cards {
        margin-top: -140px;
        position: relative;
        z-index: 2;
    }
}

@media (max-width: 991px) {
    .join-section-padding {
        margin-left: 15px !important;
        margin-right: 15px !important;
    }

    .img-corner-switch {
        border-radius: 1.5rem !important;
        height: 500px !important;
        object-fit: cover !important;
    }

    .join-card {
        margin-top: -130px;
        width: 90%;
        padding: 2rem !important;
        border-radius: 1.5rem !important;
    }

    .mobile-limit-btn {
        width: auto !important;
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .provide-section {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .provide-section .intro-title {
        font-size: 18px;
        font-weight: 700;
    }

    /* Figma: image fills full card, panel floats on right as absolute — fully responsive */
    .provide-section .container-80 {
        padding-top: 0 !important;
        padding-bottom: 16px !important;
    }

    .provide-section .text-center.mb-5 {
        margin-bottom: 16px !important;
    }

    .provide-card-wrapper {
        position: relative !important;
        display: block !important;
        padding-bottom: 0 !important;
        margin-bottom: 8px !important;
        overflow: hidden !important;
        height: 130px !important;
        border-radius: 4px !important;
    }

    .provide-img {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        max-height: none !important;
        object-fit: cover !important;
        border-radius: 4px !important;
        z-index: 1 !important;
    }

    .provide-overlay {
        position: absolute !important;
        top: 50% !important;
        right: 0 !important;
        left: auto !important;
        bottom: auto !important;
        transform: translateY(-50%) !important;
        width: 62% !important;
        max-width: 210px !important;
        height: 114px !important;
        min-height: auto !important;
        padding: 8px 12px !important;
        border-radius: 6px !important;
        box-shadow: -2px 0 12px rgba(0, 0, 0, 0.15) !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        overflow: hidden !important;
        z-index: 2 !important;
    }

    .provide-overlay h5 {
        font-size: 12px !important;
        margin-top: 0 !important;
        margin-bottom: 4px !important;
        text-align: center !important;
    }

    .provide-overlay p,
    .provide-overlay .card-text {
        font-size: 11px !important;
        margin-bottom: 0 !important;
        text-align: center !important;
        overflow: hidden !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 3 !important;
        line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
    }

    .provide-icon {
        height: 20px !important;
        width: 20px !important;
        margin: 0 auto 4px !important;
        display: block !important;
    }

    /* hide Learn More link — not in Figma design */
    .provide-overlay a {
        display: none !important;
    }

    /* "Our Current Promotions" — Figma: 18px/700, gap 16px (not 164px margin) */
    div[style*="margin-top: 164px"] {
        margin-top: 16px !important;
    }

    .promo-title {
        font-size: 18px !important;
        font-weight: 700 !important;
    }

    .overlap-cards {
        margin-top: 0;
    }

    .mobile-bg-navy {
        background-color: var(--dark-bg);
        padding-bottom: 120px !important;
        margin-bottom: 120px !important;
    }

    .card-header-mobile {
        flex-direction: column-reverse !important;
        align-items: center !important;
        text-align: center;
        gap: 1rem;
    }

    .card {
        margin: 20px;
    }
}


/* =============================================================================
   29. SHARED MOBILE RESPONSIVE — SECTION PAGES
   ============================================================================= */
@media (max-width: 767px) {
    .container-fluid {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .section-heading {
        font-size: var(--faq-questions);
    }

    /* previously: 24px */

    /* CONFLICT 8 resolved: Benefits.css 42px !important was a typo → 16px */
    .section-text,
    .section-text-bold {
        font-size: var(--h6-size);
    }

    /* previously: 16px */

    .brands-container {
        padding: 40px 16px !important;
    }

    .brands-header {
        display: block !important;
        font-size: var(--h3-size) !important;
        margin-bottom: 32px !important;
        padding: 0 !important;
    }

    /* previously: 28px */
    .brands-carousel-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        overflow: visible !important;
    }

    .brands-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 4px !important;
        animation: none !important;
        width: 100% !important;
        justify-content: center !important;
    }

    .brand-logo-card {
        width: 83.25px !important;
        height: 45px !important;
        padding: 4px !important;
        border-radius: 4px !important;
        border-width: 1px !important;
        flex: none !important;
    }

    .brand-logo-card:nth-child(n+8) {
        display: none !important;
    }

    .brand-logo-card img {
        max-width: 100% !important;
        max-height: 100% !important;
    }

    .product-card {
        width: calc(33.333% - 8px) !important;
        height: 90px !important;
    }

    .product-card-image {
        height: 55px;
    }

    .product-card-title {
        font-size: 10px;
    }

    .row .col-md-7.order-md-1 {
        order: 2 !important;
    }

    .row .col-md-5.order-md-2 {
        order: 1 !important;
    }

    .feature-image {
        height: 250px;
        border-radius: 16px;
    }

    .row>div[style*="height: 400px"] {
        height: 250px !important;
    }

    .row>div[style*="height: 400px"] img[style*="border-radius: 24px"] {
        border-radius: 16px !important;
    }

    .cta-section {
        padding: 50px 16px 0 16px !important;
        height: 200px !important;
    }

    .cta-title {
        font-size: var(--h3-size) !important;
        line-height: 33.6px !important;
    }

    /* previously: 28px; approx to --h3-size(28px) */
    .cta-btn {
        width: auto;
        padding: 12px 16px;
        font-size: var(--h6-size);
        height: 44px;
    }

    /* previously: 16px */
    .cta-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 24px 20px !important;
        border-radius: 20px !important;
    }

    .cta-card .section-text {
        font-size: var(--h5-size) !important;
        line-height: 21.6px !important;
    }

    /* previously: 18px */
    .cta-spacer {
        height: 200px !important;
    }

    .bullet-list li {
        font-size: var(--h6-size);
        margin-bottom: 12px;
    }

    /* previously: 16px */
    .bullet-icon {
        width: 12px;
        height: 24px;
    }

    div[style*="height: 180px"] {
        height: 0 !important;
    }

    .provide-section {
        padding-top: 24px !important;
        padding-bottom: 24px !important;
    }

    .serve-text-overlay {
        position: absolute !important;
        width: 90% !important;
        bottom: -100px !important;
        right: auto !important;
        margin-top: 0 !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .header-section {
        padding: 2rem 1rem 0;
    }

    .main-heading {
        font-size: 1.75rem;
    }

    .info-text {
        font-size: 1.125rem;
    }

    .content-wrapper {
        padding: 0 0.75rem;
    }

    .main-card {
        border-radius: 16px;
    }
}

@media (max-width: 991.98px) {
    .contact-image {
        min-height: 300px;
        max-height: 400px;
    }
}

@media (max-width: 575.98px) {
    .main-heading {
        font-size: 1.5rem;
    }

    .info-text {
        font-size: 1rem;
    }
}


/* =============================================================================
   30. HERO SECTION
   Source: Hero (inline)
   Notes:
   - .hero has two rule blocks in the source; merged here with background-image
     rule taking precedence (it is the more specific/final declaration).
   - CONFLICT 9: .btn-custom-red font-weight — Hero uses 400 vs global 700.
     Scoped override applied here so the global button style is not broken.
   ============================================================================= */
.hero {
    margin: 0 !important;
    background-color: var(--white);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-bottom: 2px solid #ffffff;
    box-sizing: border-box;
    position: relative;
    overflow: hidden !important;
    padding: 2rem 30px !important;
    /* 30px side padding from Figma */
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    width: 100%;
}

.hero::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    z-index: 5;
}

.hero::after {
    inset: 0;
    content: "";
    position: absolute;
    z-index: 2;
}

/* Hero content wrapper */
.hero-content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    gap: 8px;
}

.hero-content>* {
    max-width: 100%;
    box-sizing: border-box;
}

/* Hero title — responsive via var() scale */
.hero-title {
    font-family: var(--fallback-fonts);
    font-weight: 800;
    font-size: var(--hero-title-mobile);
    /* previously: 24px */
    line-height: 1.25;
    filter: drop-shadow(0px 3.42px 3.42px rgba(255, 255, 255, 0.1));
    color: white;
}

.hero-title p,
.hero-title h1,
.hero-title h2,
.hero-title h3 {
    margin: 0;
    padding: 0;
}

.hero-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    gap: 8px;
}

.hero-title .professional {
    color: var(--brand-red);
}

.hero-separator {
    border: none;
    height: 3px !important;
    background-color: var(--brand-red);
    border-radius: 13.8px;
    opacity: 1;
    width: 100%;
    margin: 0;
}

/* Hero subtitle */
.hero-subtitle {
    font-family: var(--fallback-fonts);
    font-weight: 600;
    font-size: var(--h6-size);
    /* previously: 16px (mobile) */
    line-height: 1.25;
    color: white;
    text-align: center;
    margin-top: 0;
}

.hero-subtitle p {
    margin: 0;
    padding: 0;
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .hero {
        padding: 3rem !important;
        margin: 0 !important;
        height: 450px !important;
        max-height: 600px !important;
    }

    .hero-title {
        font-size: var(--hero-title-tablet);
        /* previously: 68px */
        font-family: var(--fallback-fonts);
        font-weight: 800;
        word-wrap: break-word;
        text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.50);
    }

    .hero-subtitle {
        font-size: var(--faq-questions) !important;
    }

    /* previously: 24px */
    .hero-content {
        gap: 16px;
    }

    .hero-title-wrapper {
        gap: 12px;
    }
}

/* Desktop (992px+) */
@media (min-width: 992px) {
    .hero-title {
        font-size: var(--hero-title-desktop);
    }

    /* previously: 77px (≈ --header-title 80px) */
    .hero-subtitle {
        font-size: var(--title-sub-heading);
    }

    /* previously: 40px */
    .hero-content {
        gap: 24px;
    }
}

/*
 * CONFLICT 9 resolved: Hero scopes font-weight:400 locally.
 * Global .btn-custom-red retains font-weight:700.
 */
.hero .btn-custom-red {
    font-weight: 400;
}

/* Serve menu hover — maximum specificity override */
html body #serve-tabs a.serve-menu-btn:focus {
    background: var(--bs-primary) !important;
    background-color: var(--bs-primary) !important;
    color: white;
    border-color: var(--bs-primary) !important;
    text-decoration: none !important;
}