/**
 * OES Group Theme - Main Stylesheet
 * Matching the corporate OES Group design
 *
 * @version 2.0.0
 */

/* ==========================================================================
   1. CSS VARIABLES (OES Brand)
   ========================================================================== */

:root {
    /* OES Brand Colors - From Style Guide */
    --oes-navy: #163b6d;
    --oes-navy-dark: #0d2340;
    --oes-navy-light: #1e4a8a;
    --oes-cream: #e4e2dd;
    --oes-cream-light: #f5f4f2;
    --oes-off-white: #f9f8f7;
    --oes-dark: #1f2937;
    --oes-gray: #6b7280;
    --oes-gray-600: #4b5563;
    --oes-gray-700: #374151;
    --oes-gray-light: #f1f5f9;
    --oes-white: #ffffff;
    --oes-border: #e4e2dd;

    /* Bootstrap Overrides */
    --bs-primary: var(--oes-navy);
    --bs-primary-rgb: 22, 59, 109;
    --bs-body-color: var(--oes-dark);
    --bs-body-bg: var(--oes-white);
    --bs-link-color: var(--oes-navy);
    --bs-link-hover-color: var(--oes-navy-dark);

    /* Bootstrap 5 Button Focus/Active Overrides */
    --bs-btn-focus-shadow-rgb: 22, 59, 109;
    --bs-btn-active-bg: var(--oes-navy-dark);
    --bs-btn-active-border-color: var(--oes-navy-dark);
    --bs-btn-active-color: var(--oes-white);

    /* Typography - Manrope (matching Next.js parent site) */
    --oes-font-heading: 'Manrope', system-ui, -apple-system, sans-serif;
    --oes-font-body: 'Manrope', system-ui, -apple-system, sans-serif;

    /* Shadows - From Style Guide */
    --oes-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --oes-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --oes-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --oes-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Transitions */
    --oes-transition-fast: 150ms;
    --oes-transition-base: 200ms;
    --oes-transition-slow: 300ms;
    --oes-transition: 0.2s ease;
    --oes-transition-transform: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius - Matching Next.js parent site */
    --oes-radius-sm: 0.125rem;     /* 2px */
    --oes-radius-default: 0.25rem; /* 4px */
    --oes-radius-md: 0.375rem;     /* 6px */
    --oes-radius-lg: 0.5rem;       /* 8px */
    --oes-radius-xl: 0.75rem;      /* 12px */
}

/* ==========================================================================
   CUSTOM SCROLLBAR - Matching Next.js parent site
   ========================================================================== */

/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--oes-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--oes-navy);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--oes-navy-light);
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--oes-navy) var(--oes-cream);
}

/* ==========================================================================
   2. BASE & TYPOGRAPHY
   ========================================================================== */

body {
    font-family: var(--oes-font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--oes-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--oes-font-heading);
    font-weight: 700;
    color: var(--oes-dark);
    line-height: 1.2;
}

h1, .h1 { font-size: clamp(1.875rem, 4vw, 3rem); }
h2, .h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3, .h3 { font-size: 1.125rem; }

a {
    color: var(--oes-navy);
    text-decoration: none;
    transition: color var(--oes-transition);
}

a:hover {
    color: var(--oes-navy-dark);
}

/* Eyebrow text - small uppercase labels */
.eyebrow,
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--oes-navy);
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   3. BUTTONS
   ========================================================================== */

.btn {
    font-family: var(--oes-font-body);
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
    border-radius: var(--oes-radius-default);
    transition: all var(--oes-transition);
}

/* Override Bootstrap's default blue focus/active states globally */
.btn:focus,
.btn:focus-visible,
.btn:active,
.btn.active,
.btn:not(:disabled):not(.disabled):active,
.btn:not(:disabled):not(.disabled).active,
.btn.show {
    box-shadow: 0 0 0 0.2rem rgba(22, 59, 109, 0.25) !important;
}

/* Remove Bootstrap's default blue color from all button active states */
.btn-check:active + .btn,
.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:active {
    --bs-btn-active-bg: var(--oes-navy-dark);
    --bs-btn-active-border-color: var(--oes-navy-dark);
    --bs-btn-active-color: var(--oes-white);
}

.btn-primary {
    background-color: var(--oes-navy);
    border-color: var(--oes-navy);
    color: var(--oes-white);
}

.btn-primary:hover {
    background-color: var(--oes-navy-dark);
    border-color: var(--oes-navy-dark);
}

.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary:focus-visible,
.btn-primary.show,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active {
    background-color: var(--oes-navy-dark) !important;
    border-color: var(--oes-navy-dark) !important;
    color: var(--oes-white) !important;
    box-shadow: 0 0 0 0.2rem rgba(22, 59, 109, 0.25) !important;
    outline: none;
}

.btn-outline-primary {
    color: var(--oes-navy);
    border-color: var(--oes-navy);
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
}

.btn-outline-primary:hover {
    background-color: var(--oes-navy);
    border-color: var(--oes-navy);
    color: var(--oes-white);
}

.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary.active,
.btn-outline-primary:focus-visible,
.btn-outline-primary.show,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active {
    background-color: var(--oes-navy) !important;
    border-color: var(--oes-navy) !important;
    color: var(--oes-white) !important;
    box-shadow: 0 0 0 0.2rem rgba(22, 59, 109, 0.25) !important;
    outline: none;
}

.btn-white {
    background-color: var(--oes-white);
    border-color: var(--oes-white);
    color: var(--oes-navy);
}

.btn-white:hover {
    background-color: var(--oes-cream);
    border-color: var(--oes-cream);
    color: var(--oes-navy);
}

.btn-outline-white {
    background-color: transparent;
    border-color: var(--oes-white);
    color: var(--oes-white);
}

.btn-outline-white:hover {
    background-color: var(--oes-white);
    color: var(--oes-navy);
}

/* ==========================================================================
   4. HEADER & NAVIGATION - Corporate Style
   ========================================================================== */

.oes-header {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--oes-border);
    padding: 0;
    transition: all var(--oes-transition);
    position: relative;
    z-index: 1050;
}

.oes-header .navbar {
    min-height: 96px;
    padding-top: 0;
    padding-bottom: 0;
}

/* Header container padding - matches Next.js px-4 lg:px-6 */
.oes-header .navbar > .container,
.oes-header .navbar > .container-xl {
    padding-left: 1rem;  /* 16px - matches px-4 */
    padding-right: 1rem;
}

@media (min-width: 992px) {
    .oes-header .navbar {
        min-height: 96px;
    }

    /* Header container - desktop padding */
    .oes-header .navbar > .container,
    .oes-header .navbar > .container-xl {
        display: flex;
        align-items: center;
        max-width: 1280px; /* Match Next.js max-w-7xl */
        padding-left: 1.5rem;  /* 24px - matches lg:px-6 */
        padding-right: 1.5rem;
        gap: 1.5rem; /* 24px - matches gap-6 */
    }

    .oes-header .offcanvas {
        flex-grow: 1;
        display: flex !important;
        position: static;
        visibility: visible !important;
        background: transparent;
        border: none;
        transform: none;
    }

    .oes-header .offcanvas-body {
        display: flex;
        align-items: center;
        padding: 0;
        flex-grow: 1;
    }

    .oes-header .navbar-nav {
        flex-direction: row;
        margin-left: 0 !important; /* Override Bootstrap ms-auto */
        flex-wrap: nowrap;
    }

    /* Hide offcanvas header on desktop */
    .oes-header .offcanvas-header {
        display: none;
    }

    /* Push header actions (CTA button) to the right */
    .oes-header .header-actions {
        margin-left: auto;
        flex-shrink: 0;
    }
}

/* Larger gap on XL screens - matches lg:gap-8 */
@media (min-width: 1200px) {
    .oes-header .navbar > .container,
    .oes-header .navbar > .container-xl {
        gap: 2rem; /* 32px - matches lg:gap-8 */
    }
}

/* Logo Styling - Match international site */
.oes-brand {
    padding: 0.5rem 0;
    flex-shrink: 0;
}

.oes-brand img,
.navbar-brand img {
    height: 50px;
    width: auto;
    max-height: 50px;
    object-fit: contain;
}

@media (min-width: 992px) {
    .oes-brand img,
    .navbar-brand img {
        height: 70px;
        max-height: 70px;
    }
}

@media (max-width: 575.98px) {
    .oes-brand img,
    .navbar-brand img {
        height: 40px;
        max-height: 40px;
    }
}

/* Hide the dark theme logo duplicate */
.navbar-brand img.d-tl-none {
    display: none !important;
}

/* Navigation Links - Desktop only (lg+) */
@media (min-width: 992px) {
    .navbar-nav {
        gap: 0;
        display: flex;
        align-items: center;
        column-gap: 0.75rem; /* 12px - matches gap-x-3 */
    }

    .navbar-nav .nav-link {
        font-size: 0.875rem; /* 14px - matches text-sm */
        font-weight: 500;
        color: var(--oes-dark);
        padding: 0.625rem 0; /* 10px vertical padding */
        position: relative;
        white-space: nowrap;
        transition: color var(--oes-transition);
        letter-spacing: -0.01em;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        color: var(--oes-navy);
    }

    .navbar-nav .nav-link.active,
    .navbar-nav .current-menu-item > .nav-link {
        color: var(--oes-navy);
    }

    /* Nav link underline on hover */
    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0.25rem;
        left: 0;
        right: 0;
        height: 2px;
        background-color: var(--oes-navy);
        transform: scaleX(0);
        transition: transform var(--oes-transition);
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link:focus::after,
    .navbar-nav .nav-link.active::after,
    .navbar-nav .current-menu-item > .nav-link::after {
        transform: scaleX(1);
    }
}

@media (min-width: 1200px) {
    .navbar-nav {
        column-gap: 1.25rem; /* 20px - matches xl:gap-x-5 */
    }

    .navbar-nav .nav-link {
        font-size: 1rem; /* 16px - matches text-base */
    }
}

/* External Link Indicator - add class 'menu-item-external' to menu item in WP Admin */
/* Icon is injected via PHP filter in inc/filters.php */
.navbar-nav .menu-item-external > .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.oes-external-icon {
    width: 10px;
    height: 10px;
    opacity: 0.6;
    flex-shrink: 0;
    margin-left: 0.25rem;
    transition: opacity 0.2s ease;
}

.nav-link:hover .oes-external-icon,
.nav-link:focus .oes-external-icon {
    opacity: 1;
}

/* Dropdown Menus */
.navbar-nav .dropdown-menu {
    border: 1px solid var(--oes-border);
    border-radius: var(--oes-radius-lg);
    box-shadow: var(--oes-shadow-xl);
    padding: 0;
    min-width: 260px;
    margin-top: 0.5rem;
    background: var(--oes-white);
}

/* Dropdown arrow indicator */
.navbar-nav .dropdown > .nav-link::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.5rem;
    vertical-align: middle;
    border-top: 5px solid currentColor;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    transition: transform var(--oes-transition);
    position: static;
    background: none;
    transform: none;
}

.navbar-nav .dropdown:hover > .nav-link::after,
.navbar-nav .dropdown.show > .nav-link::after {
    transform: rotate(180deg);
}

/* Hover to open dropdown on desktop */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block;
        animation: dropdownFadeIn 0.2s ease;
    }

    .navbar-nav .dropdown-menu {
        margin-top: 0;
        border-top: 3px solid var(--oes-navy);
    }
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown Items - Corporate Style */
.navbar-nav .dropdown-item {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--oes-dark);
    padding: 1rem 1.5rem;
    transition: all var(--oes-transition);
    border-left: 3px solid transparent;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
    background-color: var(--oes-cream-light);
    color: var(--oes-navy);
    border-left-color: var(--oes-navy);
}

/* Dropdown item with icon */
.navbar-nav .dropdown-item .dropdown-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--oes-navy);
    opacity: 0.7;
}

.navbar-nav .dropdown-item:hover .dropdown-icon {
    opacity: 1;
}

/* Dropdown item text wrapper */
.navbar-nav .dropdown-item-text {
    flex: 1;
}

.navbar-nav .dropdown-item-title {
    font-weight: 600;
    color: var(--oes-dark);
    display: block;
    margin-bottom: 0.125rem;
}

.navbar-nav .dropdown-item:hover .dropdown-item-title {
    color: var(--oes-navy);
}

.navbar-nav .dropdown-item-desc {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--oes-gray);
    display: block;
    line-height: 1.4;
}

/* Mega Menu - Corporate OES Style (3-column with images) */
@media (min-width: 992px) {
    .navbar-nav .mega-menu-item > .dropdown-menu {
        width: 700px;
        min-width: 700px;
        padding: 0;
        left: 50%;
        transform: translateX(-50%);
        border-top: 3px solid var(--oes-navy);
    }

    .navbar-nav .mega-menu-item:hover > .dropdown-menu {
        display: block;
    }
}

/* Mega Menu Content Container */
.oes-mega-menu-content {
    padding: 0;
}

/* Mega Menu Header */
.oes-mega-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--oes-cream);
    background: var(--oes-white);
}

.oes-mega-menu-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--oes-dark);
}

.oes-mega-menu-viewall {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--oes-navy);
    text-decoration: none;
    transition: color var(--oes-transition);
}

.oes-mega-menu-viewall:hover {
    color: var(--oes-navy-dark);
}

.oes-mega-menu-viewall svg {
    transition: transform var(--oes-transition);
}

.oes-mega-menu-viewall:hover svg {
    transform: translateX(3px);
}

/* Mega Menu 3-Column Grid */
.oes-mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1rem;
    background: var(--oes-white);
}

/* Mega Menu Card (with image) */
.oes-mega-menu-card {
    display: block;
    text-decoration: none;
    transition: all var(--oes-transition);
}

.oes-mega-menu-card:hover {
    transform: translateY(-2px);
}

.oes-mega-menu-card-image {
    width: 100%;
    height: 6rem;
    background-size: cover;
    background-position: center;
    background-color: var(--oes-cream);
    margin-bottom: 0.75rem;
}

.oes-mega-menu-card-content {
    display: block;
}

.oes-mega-menu-card-title {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--oes-dark);
    margin-bottom: 0.25rem;
    line-height: 1.3;
    transition: color var(--oes-transition);
}

.oes-mega-menu-card:hover .oes-mega-menu-card-title {
    color: var(--oes-navy);
}

.oes-mega-menu-card-desc {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--oes-gray);
    line-height: 1.4;
}

/* Mega Menu Footer */
.oes-mega-menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: var(--oes-cream-light);
    border-top: 1px solid var(--oes-cream);
}

.oes-mega-menu-footer-text {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--oes-gray-600);
}

.oes-mega-menu-footer .btn {
    font-size: 0.75rem;
    padding: 0.375rem 0.875rem;
}

/* Mega Dropdown - Applied via JS */
@media (min-width: 992px) {
    .navbar-nav .mega-menu-item > .dropdown-menu.oes-mega-dropdown {
        width: 700px;
        min-width: 700px;
        padding: 0;
        left: 0;
        transform: none;
        border-top: 3px solid var(--oes-navy);
    }

    .navbar-nav .mega-menu-item:hover > .dropdown-menu.oes-mega-dropdown {
        display: block;
    }
}

/* Mega Menu Mobile Styles */
@media (max-width: 991.98px) {
    .oes-mega-menu-content {
        display: block;
        padding: 0;
    }

    .oes-mega-menu-header {
        padding: 0.75rem 1rem;
        background: var(--oes-cream-light);
    }

    .oes-mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }

    .oes-mega-menu-card {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--oes-cream);
    }

    .oes-mega-menu-card-image {
        width: 4rem;
        height: 3rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .oes-mega-menu-card-content {
        flex: 1;
        min-width: 0;
    }

    .oes-mega-menu-footer {
        padding: 0.75rem 1rem;
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}

/* Header Actions */
.header-actions {
    gap: 0.5rem;
}

@media (min-width: 992px) {
    .header-actions {
        gap: 0.75rem;
    }
}

/* Header Login Button - Corporate OES Style */
.oes-header-login {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem;
    border-radius: var(--oes-radius-default);
    text-transform: none;
    letter-spacing: 0;
    border-width: 2px;
    border-color: var(--oes-navy);
    color: var(--oes-navy);
    background: transparent;
    line-height: 1;
    justify-content: center;
    white-space: nowrap;
}

@media (min-width: 992px) {
    .oes-header-login {
        padding: 0.5rem 0.875rem;
    }
}

@media (min-width: 1200px) {
    .oes-header-login {
        padding: 0.5rem 1rem;
    }
}

.oes-header-login:hover,
.oes-header-login:focus,
.oes-header-login:active,
.oes-header-login:focus-visible,
.oes-header-login:not(:disabled):not(.disabled):active {
    background-color: var(--oes-navy) !important;
    border-color: var(--oes-navy) !important;
    color: var(--oes-white) !important;
    box-shadow: none !important;
    outline: none;
}

.oes-header-login svg {
    flex-shrink: 0;
    transition: opacity var(--oes-transition);
}

.oes-header-login:hover svg,
.oes-header-login:focus svg {
    opacity: 1;
}

/* Header CTA Button */
.oes-header-cta {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0.875rem;
    border-radius: var(--oes-radius-default);
    text-transform: none;
    letter-spacing: 0;
    justify-content: center;
    white-space: nowrap;
}

.oes-header-cta:focus,
.oes-header-cta:active,
.oes-header-cta:focus-visible {
    box-shadow: 0 0 0 0.2rem rgba(22, 59, 109, 0.25);
    outline: none;
}

@media (min-width: 1200px) {
    .oes-header-cta {
        padding: 0.5rem 1rem;
    }
}

.oes-header-cta svg {
    transition: transform var(--oes-transition);
}

.oes-header-cta:hover svg {
    transform: translateX(4px);
}

/* Nav Toggler - Matching Next.js mobile menu button style */
.nav-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: var(--oes-radius-default);
    color: var(--oes-gray-700);
    padding: 0.625rem;
    cursor: pointer;
    transition: color var(--oes-transition);
}

.nav-toggler:hover,
.nav-toggler:focus {
    background: transparent;
    color: var(--oes-navy);
    outline: none;
}

.nav-toggler svg {
    width: 24px;
    height: 24px;
    display: block;
}

/* Offcanvas Menu - Mobile only */
@media (max-width: 991.98px) {
    /* Offcanvas full size and solid background */
    .offcanvas {
        width: 100%;
        max-width: 100%;
        height: 100vh;
        background-color: #fff;
    }

    .offcanvas-header {
        background-color: #fff;
    }

    .offcanvas-body {
        background-color: #fff;
    }

    /* Navbar-nav vertical layout */
    .offcanvas-body .navbar-nav {
        flex-direction: column;
        width: 100%;
    }

    /* Dropdown menu as static block */
    .offcanvas-body .dropdown-menu {
        position: static;
        width: 100%;
        border: none;
        box-shadow: none;
        background-color: var(--oes-cream-light);
    }

    /* Simplify mega menu for mobile */
    .oes-mega-menu-header,
    .oes-mega-menu-footer,
    .oes-mega-menu-card-image,
    .oes-mega-menu-card-desc {
        display: none;
    }

    .oes-mega-menu-grid {
        display: flex;
        flex-direction: column;
    }

    .oes-mega-menu-card {
        padding: 0.75rem 1rem;
        color: var(--oes-dark);
    }

    .oes-mega-menu-card-content {
        padding: 0;
    }
}

/* Mobile CTA Buttons in Offcanvas */
.oes-mobile-ctas {
    padding: 1rem 1.5rem;
    border-top-color: var(--oes-cream) !important;
}

.oes-mobile-ctas .btn {
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--oes-radius-default);
}

.oes-mobile-ctas .btn-outline-primary {
    border-width: 2px;
    border-color: var(--oes-navy);
    color: var(--oes-navy);
}

.oes-mobile-ctas .btn-outline-primary:hover {
    background-color: var(--oes-navy);
    border-color: var(--oes-navy);
    color: var(--oes-white);
}

.oes-mobile-ctas .btn-primary {
    background-color: var(--oes-navy);
    border-color: var(--oes-navy);
}

.oes-mobile-ctas .btn-primary:hover {
    background-color: var(--oes-navy-dark);
    border-color: var(--oes-navy-dark);
}

/* ==========================================================================
   5. HERO SECTION - Glassmorphism Style
   ========================================================================== */

.oes-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: flex-start;
    padding-top: 7rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.oes-hero-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.oes-hero > .container {
    position: relative;
    z-index: 1;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Glassmorphism Content Box */
.oes-hero-content {
    max-width: 540px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: var(--oes-radius-lg);
}

.oes-hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--oes-navy);
    margin-bottom: 0.5rem;
}

.oes-hero-title {
    font-size: clamp(1.875rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--oes-dark);
    line-height: 1.1;
    margin-bottom: 0;
}

.oes-hero-title span {
    display: block;
    color: var(--oes-navy);
}

.oes-hero-subtitle {
    font-size: 0.875rem;
    color: #374151;
    margin-top: 1rem;
    max-width: 28rem;
}

.oes-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.oes-hero-buttons .btn {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
    .oes-hero {
        padding-top: 8rem;
    }

    .oes-hero > .container {
        padding-top: 4rem;
    }

    .oes-hero-content {
        padding: 1.5rem;
    }
}

/* Smaller hero for internal pages */
.oes-hero-small {
    min-height: auto;
    padding-top: 6rem;
    padding-bottom: 2rem;
}

.oes-hero-small .oes-hero-content {
    max-width: 640px;
}

@media (min-width: 992px) {
    .oes-hero-small {
        padding-top: 7rem;
        padding-bottom: 2.5rem;
    }
}

/* ==========================================================================
   PAGE HERO - Corporate Cream Style (for internal pages)
   ========================================================================== */

.oes-page-hero {
    background-color: var(--oes-cream);
    padding: 2rem 0;
}

@media (min-width: 992px) {
    .oes-page-hero {
        padding: 2.5rem 0;
    }
}

.oes-page-hero-content {
    max-width: 48rem;
}

.oes-page-hero .oes-hero-eyebrow {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--oes-navy);
    margin-bottom: 0.75rem;
}

.oes-page-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--oes-dark);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.oes-page-hero-subtitle {
    font-size: 1.125rem;
    color: var(--oes-gray-600);
    line-height: 1.7;
    max-width: 36rem;
}

/* Hero Light - For login/portal pages */
.oes-hero-light {
    background-color: var(--oes-cream-light);
    border-bottom: 1px solid var(--oes-border);
}

.oes-hero-light .oes-hero-title {
    color: var(--oes-dark);
    margin-bottom: 0.5rem;
}

.oes-hero-light .oes-hero-subtitle {
    color: var(--oes-gray);
    margin-top: 0;
}

/* Training Option Cards (front page) */
.oes-option-card {
    background-color: var(--oes-cream) !important;
}

/* Hero Section - Home (front-page glassmorphism style) */
.oes-hero--home {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
    overflow: hidden;
    background-color: var(--oes-navy);
}

.oes-hero--home .oes-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.oes-hero--home .oes-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.oes-hero--home .oes-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--oes-cream) 0%, var(--oes-cream-light) 100%);
    z-index: -1;
}

.oes-hero--home .container {
    z-index: 2;
}

.oes-hero--home .oes-hero-content {
    max-width: 540px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    padding: 1.5rem;
    border-radius: 0.25rem;
    animation: fadeInUp 0.6s ease-out both;
}

.oes-hero--home .oes-hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--oes-navy);
    margin-bottom: 0.5rem;
}

.oes-hero--home .oes-hero-title {
    font-size: clamp(1.875rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--oes-dark);
    letter-spacing: -0.025em;
    margin-bottom: 0;
}

.oes-hero--home .oes-hero-title span {
    display: block;
    color: var(--oes-navy);
}

.oes-hero--home .oes-hero-subtitle {
    font-size: 0.875rem;
    color: var(--oes-gray-700);
    margin-top: 1rem;
    max-width: 32rem;
    line-height: 1.6;
}

.oes-hero--home .oes-hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

@media (min-width: 640px) {
    .oes-hero--home .oes-hero-buttons {
        flex-direction: row;
    }
}

.oes-hero--home .oes-hero-buttons .btn {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.625rem 1.25rem;
    box-shadow: var(--oes-shadow-lg);
}

.oes-hero--home .oes-hero-buttons .btn-primary {
    background: var(--oes-navy);
    border-color: var(--oes-navy);
}

.oes-hero--home .oes-hero-buttons .btn-primary:hover {
    background: var(--oes-navy-dark);
    border-color: var(--oes-navy-dark);
}

.oes-hero--home .oes-hero-buttons .btn-outline-primary {
    color: var(--oes-navy);
    border-color: var(--oes-navy);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
}

.oes-hero--home .oes-hero-buttons .btn-outline-primary:hover {
    background: var(--oes-navy);
    color: var(--oes-white);
}

.oes-hero--home .oes-hero-image-wrapper {
    text-align: center;
}

.oes-hero--home .oes-hero-image {
    max-width: 100%;
    height: auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 992px) {
    .oes-hero--home {
        padding-top: 2rem;
    }

    .oes-hero--home .oes-hero-content {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .oes-hero--home {
        min-height: 60vh;
        padding-top: 2rem;
    }

    .oes-hero--home .oes-hero-content {
        margin: 0 1rem;
    }
}

/* ==========================================================================
   6. STATISTICS BAR
   ========================================================================== */

.oes-stats-bar {
    background-color: var(--oes-navy);
    padding: 2rem 0;
}

.oes-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

.oes-stat-item {
    color: var(--oes-white);
}

.oes-stat-value {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    display: block;
}

.oes-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.8;
    letter-spacing: 0.05em;
}

@media (max-width: 575.98px) {
    .oes-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* ==========================================================================
   7. SECTIONS
   ========================================================================== */

.section {
    padding: 2.5rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 3rem 0;
    }
}

@media (min-width: 992px) {
    .section {
        padding: 4rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header .eyebrow {
    color: var(--oes-navy);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--oes-dark);
    margin-bottom: 0;
}

.section-subtitle {
    font-size: 0.875rem;
    color: var(--oes-gray);
    margin-top: 0.5rem;
}

/* Background Colors */
.bg-oes-navy {
    background-color: var(--oes-navy) !important;
    color: var(--oes-white);
}

.bg-oes-navy .section-title,
.bg-oes-navy h1, .bg-oes-navy h2, .bg-oes-navy h3 {
    color: var(--oes-white);
}

.bg-oes-cream {
    background-color: var(--oes-cream) !important;
}

.bg-oes-cream-light {
    background-color: var(--oes-cream-light) !important;
}

/* ==========================================================================
   8. SERVICE CARDS - Icon + Text Layout
   ========================================================================== */

.oes-services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.75rem;
}

@media (min-width: 576px) {
    .oes-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .oes-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.oes-service-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--oes-white);
    border: 1px solid var(--oes-border);
    border-radius: var(--oes-radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
}

.oes-service-card:hover {
    border-color: var(--oes-navy);
    box-shadow: var(--oes-shadow-lg);
    transform: translateY(-4px);
}

.oes-service-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    color: var(--oes-navy);
    margin-top: 0.125rem;
    transition: transform var(--oes-transition);
}

.oes-service-card:hover .oes-service-icon {
    transform: scale(1.1);
}

.oes-service-content {
    min-width: 0;
}

.oes-service-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--oes-dark);
    margin-bottom: 0.25rem;
    transition: color var(--oes-transition);
}

.oes-service-card:hover .oes-service-title {
    color: var(--oes-navy);
}

.oes-service-desc {
    font-size: 0.75rem;
    color: var(--oes-gray);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================================================
   9. ABOUT SECTION WITH STAT BOXES
   ========================================================================== */

.oes-about-section {
    background-color: var(--oes-cream);
}

.oes-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .oes-about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.oes-about-content .eyebrow {
    margin-bottom: 0.5rem;
}

.oes-about-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.oes-about-content p {
    font-size: 0.875rem;
    color: var(--oes-gray);
    margin-bottom: 1rem;
}

.oes-blockquote {
    border-left: 2px solid var(--oes-navy);
    padding-left: 1rem;
    margin: 1rem 0;
}

.oes-blockquote p {
    font-size: 0.875rem;
    font-style: italic;
    color: #374151;
}

.oes-blockquote cite {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    font-style: normal;
    color: var(--oes-dark);
    margin-top: 0.5rem;
}

/* Stats Grid 2x2 */
.oes-stat-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.oes-stat-box {
    background: var(--oes-white);
    padding: 1rem;
    text-align: center;
    border-radius: var(--oes-radius-md);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow var(--oes-transition);
}

.oes-stat-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.oes-stat-box-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--oes-navy);
}

.oes-stat-box-label {
    font-size: 0.75rem;
    color: var(--oes-gray);
    margin-top: 0.25rem;
}

/* ==========================================================================
   10. TESTIMONIALS
   ========================================================================== */

.oes-testimonials {
    background: var(--oes-white);
}

.oes-testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.oes-quote-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--oes-cream);
    margin: 0 auto 1.5rem;
}

.oes-testimonial-quote {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    font-weight: 500;
    color: var(--oes-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.oes-testimonial-author {
    font-size: 0.875rem;
}

.oes-testimonial-author strong {
    color: var(--oes-dark);
}

.oes-testimonial-author span {
    color: var(--oes-gray);
}

/* Testimonial dots */
.oes-testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.oes-testimonial-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: var(--oes-cream);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all var(--oes-transition);
}

.oes-testimonial-dot.active {
    width: 1.5rem;
    background: var(--oes-navy);
}

/* Card-style testimonials (grid) */
.oes-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .oes-testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.oes-testimonial-card {
    background: var(--oes-white);
    padding: 1.5rem;
    border-radius: var(--oes-radius-lg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.oes-testimonial-card .oes-testimonial-quote {
    font-size: 1rem;
    text-align: left;
    padding-left: 1rem;
    border-left: 2px solid var(--oes-navy);
    margin-bottom: 1rem;
}

.oes-testimonial-card .oes-testimonial-author {
    text-align: left;
}

/* ==========================================================================
   11. ACCREDITATIONS BAR
   ========================================================================== */

.oes-accreditations {
    background: var(--oes-cream-light);
    border-top: 1px solid var(--oes-border);
    border-bottom: 1px solid var(--oes-border);
    padding: 2rem 0;
}

.oes-accreditations-label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--oes-gray);
    text-align: center;
    margin-bottom: 1rem;
}

.oes-accreditations-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.oes-accreditation-item {
    font-size: 0.875rem;
    font-weight: 500;
    color: #9ca3af;
    transition: color var(--oes-transition);
    cursor: default;
}

.oes-accreditation-item:hover {
    color: var(--oes-navy);
}

/* Accreditation badges - Navy outlined with hover fill */
.oes-accreditation-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: var(--oes-white);
    border: 2px solid var(--oes-navy);
    color: var(--oes-navy);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.oes-accreditation-badge:hover {
    background: var(--oes-navy);
    color: var(--oes-white);
}

/* ==========================================================================
   12. TRAINING CARDS
   ========================================================================== */

.oes-training-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .oes-training-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.oes-training-card {
    display: block;
    padding: 1.5rem;
    background: var(--oes-cream);
    border-radius: var(--oes-radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
}

.oes-training-card:hover {
    background: var(--oes-navy);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.oes-training-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.oes-training-card-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--oes-navy);
    transition: color var(--oes-transition);
}

.oes-training-card:hover .oes-training-card-icon {
    color: var(--oes-white);
}

.oes-training-card:hover .oes-training-card-title {
    color: var(--oes-white);
}

.oes-training-card:hover .oes-training-card-desc {
    color: rgba(255, 255, 255, 0.85);
}

.oes-facility-card:hover .oes-training-card-icon {
    color: var(--oes-white);
}

.oes-training-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--oes-dark);
    transition: color var(--oes-transition);
}

.oes-facility-card:hover .oes-training-card-title {
    color: var(--oes-white);
}

.oes-training-card-desc {
    font-size: 0.875rem;
    color: var(--oes-gray);
    margin-bottom: 1rem;
    transition: color var(--oes-transition);
}

.oes-facility-card:hover .oes-training-card-desc {
    color: var(--oes-white);
}

.oes-course-facility-card:hover .oes-training-card-title {
    color: var(--oes-white);
}

.oes-course-facility-card:hover .oes-training-card-desc {
    color: var(--oes-white);
}

.oes-course-facility-card:hover .oes-training-card-icon {
    color: var(--oes-white);
}

.oes-course-facility-card:hover .oes-training-card-link {
    color: var(--oes-white);
}

.oes-training-card-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--oes-navy);
    transition: color var(--oes-transition);
}

.oes-training-card:hover .oes-training-card-link {
    color: var(--oes-white);
}

.oes-facility-card:hover .oes-training-card-link {
    color: var(--oes-white);
}

.oes-training-card-link svg {
    width: 1rem;
    height: 1rem;
    margin-left: 0.25rem;
    transition: transform var(--oes-transition);
}

.oes-training-card:hover .oes-training-card-link svg {
    transform: translateX(4px);
}

/* ==========================================================================
   COURSE CATEGORY CARDS
   ========================================================================== */

.oes-course-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .oes-course-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .oes-course-categories {
        grid-template-columns: repeat(3, 1fr);
    }
}

.oes-course-category-card {
    display: block;
    background: var(--oes-white);
    border: 1px solid var(--oes-border);
    border-radius: var(--oes-radius-md);
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.oes-course-category-card:hover {
    border-color: var(--oes-navy);
    box-shadow: var(--oes-shadow-lg);
    transform: translateY(-4px);
}

.oes-course-category-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--oes-cream);
    margin-bottom: 1rem;
    transition: background var(--oes-transition);
}

.oes-course-category-card:hover .oes-course-category-icon {
    background: var(--oes-navy);
}

.oes-course-category-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--oes-navy);
    transition: color var(--oes-transition);
}

.oes-course-category-card:hover .oes-course-category-icon svg {
    color: var(--oes-white);
}

.oes-course-category-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--oes-dark);
    margin-bottom: 0.5rem;
    transition: color var(--oes-transition);
}

.oes-course-category-card:hover .oes-course-category-title {
    color: var(--oes-navy);
}

.oes-course-category-desc {
    font-size: 0.875rem;
    color: var(--oes-gray);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.oes-course-category-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.oes-course-category-list li {
    font-size: 0.75rem;
    color: var(--oes-gray-600);
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
}

.oes-course-category-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--oes-navy);
    border-radius: 50%;
}

.oes-course-category-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--oes-navy);
    transition: color var(--oes-transition);
}

.oes-course-category-link svg {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
    transition: transform var(--oes-transition);
}

.oes-course-category-card:hover .oes-course-category-link svg {
    transform: translateX(4px);
}

/* ==========================================================================
   COURSE LIST ITEMS (for individual category pages)
   ========================================================================== */

/* Course Accordion */
.oes-course-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.oes-course-accordion .accordion-item {
    background: var(--oes-white);
    border: 1px solid var(--oes-border);
    border-radius: var(--oes-radius-default);
    margin-bottom: 0.5rem;
}

.oes-course-accordion .accordion-item:first-child {
    border-top-left-radius: var(--oes-radius-default);
    border-top-right-radius: var(--oes-radius-default);
}

.oes-course-accordion .accordion-item:last-child {
    border-bottom-left-radius: var(--oes-radius-default);
    border-bottom-right-radius: var(--oes-radius-default);
    margin-bottom: 0;
}

.oes-course-accordion .accordion-button {
    background: var(--oes-white);
    border-radius: var(--oes-radius-default);
    padding: 1.25rem 1.5rem;
    font-weight: 500;
    color: var(--oes-dark);
    box-shadow: none;
}

.oes-course-accordion .accordion-button:not(.collapsed) {
    background: var(--oes-cream-light);
    color: var(--oes-navy);
    box-shadow: none;
}

.oes-course-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: var(--oes-navy);
}

.oes-course-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23163b6d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 1rem;
    height: 1rem;
}

.oes-course-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23163b6d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.oes-course-accordion .accordion-body {
    padding: 1.5rem;
    background: var(--oes-cream-light);
    border-top: 1px solid var(--oes-border);
}

.oes-course-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.oes-course-item-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--oes-dark);
    margin: 0;
}

@media (min-width: 768px) {
    .oes-course-item-title {
        font-size: 1.125rem;
    }
}

.oes-course-item-duration {
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--oes-navy);
    background: var(--oes-cream);
    padding: 0.25rem 0.75rem;
}

.oes-course-item-desc {
    font-size: 0.9375rem;
    color: var(--oes-dark);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

/* Course Details (Prerequisites & Locations) */
.oes-course-details {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .oes-course-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

.oes-course-detail {
    background: var(--oes-white);
    padding: 1rem;
    border-left: 3px solid var(--oes-navy);
}

.oes-course-detail-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--oes-navy);
    margin-bottom: 0.5rem;
}

.oes-course-detail-label svg {
    flex-shrink: 0;
}

.oes-course-detail p,
.oes-course-detail ul {
    font-size: 0.875rem;
    color: var(--oes-gray-700);
    margin: 0;
    line-height: 1.5;
}

.oes-course-locations {
    list-style: none;
    padding: 0;
    margin: 0;
}

.oes-course-locations li {
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.oes-course-locations li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--oes-navy);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ==========================================================================
   13. LOCATIONS / TAGS
   ========================================================================== */

.oes-locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

@media (min-width: 576px) {
    .oes-locations-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) {
    .oes-locations-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.oes-location-tag {
    background: var(--oes-cream);
    padding: 0.5rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all var(--oes-transition);
}

.oes-location-tag:hover {
    background: var(--oes-navy);
    color: var(--oes-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* ==========================================================================
   14. CTA SECTION
   ========================================================================== */

.oes-cta {
    background-color: var(--oes-cream);
    padding: 3rem 0;
    text-align: center;
}

.oes-cta h2 {
    color: var(--oes-navy);
}

.oes-cta p {
    color: var(--oes-gray-700);
}

.oes-cta h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.oes-cta p {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.oes-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

/* ==========================================================================
   15. FOOTER - Corporate OES Group Style
   ========================================================================== */

.site-footer,
footer#footer {
    background-color: var(--oes-navy) !important;
    color: var(--oes-white);
}

.oes-footer-top {
    background-color: var(--oes-navy) !important;
    padding: 4rem 0;
}

@media (min-width: 992px) {
    .oes-footer-top {
        padding: 5rem 0;
    }
}

/* Footer Brand */
.oes-footer-brand {
    max-width: 24rem;
}

.oes-footer-logo {
    display: inline-block;
}

.oes-footer-logo img {
    height: 4rem;
    width: auto;
    filter: brightness(0) invert(1);
}

@media (min-width: 992px) {
    .oes-footer-logo img {
        height: 6rem;
    }
}

.oes-footer-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* Footer Links */
.oes-footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--oes-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.oes-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.oes-footer-links li {
    margin-bottom: 0.75rem;
}

.oes-footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--oes-transition);
    display: inline-flex;
    align-items: center;
    min-height: 2.75rem;
}

.oes-footer-links a:hover {
    color: var(--oes-white);
}

/* Social Icons */
.oes-social-links {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.oes-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--oes-transition);
}

.oes-social-link:hover {
    color: var(--oes-white);
}

.oes-social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Footer Bottom */
.site-info {
    background-color: var(--oes-navy-dark) !important;
    padding: 1.25rem 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.site-info a {
    color: rgba(255, 255, 255, 0.8);
}

.site-info a:hover {
    color: var(--oes-white);
}

/* Footer Facilities List */
.oes-footer-facilities li {
    margin-bottom: 1rem;
}

.oes-footer-facilities li:last-child {
    margin-bottom: 0;
}

.oes-facility-name {
    display: block;
    color: var(--oes-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.oes-facility-name:hover {
    color: var(--oes-cream);
}

.oes-facility-address {
    display: block;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.oes-facility-phone {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
}

.oes-facility-phone:hover {
    color: var(--oes-white);
}

/* Footer Legal Links */
.oes-footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.oes-footer-legal a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--oes-transition);
}

.oes-footer-legal a:hover {
    color: var(--oes-white);
}

/* Footer Legal Menu (wp_nav_menu) */
.oes-footer-legal-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.oes-footer-legal-menu li {
    margin: 0;
    padding: 0;
}

.oes-footer-legal-menu a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--oes-transition);
}

.oes-footer-legal-menu a:hover {
    color: var(--oes-white);
}

/* ==========================================================================
   16. CONTACT PAGE
   ========================================================================== */

.oes-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 992px) {
    .oes-contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.oes-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.oes-contact-info-icon {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    color: var(--oes-navy);
    margin-top: 0.125rem;
}

.oes-contact-info-label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--oes-gray);
    margin-bottom: 0.25rem;
}

.oes-contact-info-value {
    font-size: 0.875rem;
    color: var(--oes-dark);
}

.oes-contact-info-value a {
    color: var(--oes-navy);
}

/* ==========================================================================
   17. FORMS (Contact Form 7)
   ========================================================================== */

.wpcf7 {
    font-family: var(--oes-font-body);
}

.wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 1rem;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--oes-border);
    border-radius: var(--oes-radius-default);
    font-size: 0.875rem;
    transition: border-color var(--oes-transition), box-shadow var(--oes-transition);
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.form-control:focus {
    border-color: var(--oes-navy);
    box-shadow: 0 0 0 2px rgba(22, 59, 109, 0.1);
    outline: none;
}

.wpcf7 input[type="submit"],
.form-submit .btn {
    background: var(--oes-navy);
    color: var(--oes-white);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background var(--oes-transition);
}

.wpcf7 input[type="submit"]:hover,
.form-submit .btn:hover {
    background: var(--oes-navy-dark);
}

/* ==========================================================================
   18. AMELIA OVERRIDES
   ========================================================================== */

/* Booking Page Styles */
.oes-booking-section {
    background-color: var(--oes-white);
    padding: 1rem 0 2rem;
}

.oes-booking-content {
    padding: 0;
}

.oes-booking-wrapper {
    padding: 1rem 0;
}

.amelia-app-booking {
    font-family: var(--oes-font-body) !important;
}

/* Amelia form inputs - inherit theme styling */
.amelia-app-booking input[type="text"],
.amelia-app-booking input[type="email"],
.amelia-app-booking input[type="tel"],
.amelia-app-booking input[type="password"],
.amelia-app-booking input[type="number"],
.amelia-app-booking select,
.amelia-app-booking textarea {
    border-radius: var(--oes-radius-default) !important;
    font-family: var(--oes-font-body) !important;
}

/* Amelia buttons - inherit theme styling */
.amelia-app-booking .am-button,
.amelia-app-booking button[class*="am-"],
.amelia-app-booking [class*="am-button"] {
    border-radius: var(--oes-radius-default) !important;
    font-family: var(--oes-font-body) !important;
}

/* Amelia cards/containers */
.amelia-app-booking [class*="am-card"],
.amelia-app-booking [class*="am-service-card"],
.amelia-app-booking [class*="am-category-card"] {
    border-radius: var(--oes-radius-md) !important;
}

.oes-customer-panel,
.oes-staff-panel {
    background: var(--oes-white);
    padding: 2rem;
    border-radius: var(--oes-radius-md);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Amelia Customer Panel - Reduce top spacing on login form */
.oes-customer-panel .amelia-v2-booking,
.oes-customer-panel [class*="amelia-v2"],
.oes-customer-panel .am-cp__wrapper {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.oes-customer-panel .am-cp__main {
    padding-top: 1rem !important;
}

/* Amelia login wrapper - reduce internal padding */
.oes-customer-panel .am-cp__login,
.oes-customer-panel [class*="am-cp__login"] {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Target Amelia's auth/login container */
.oes-customer-panel .am-auth,
.oes-customer-panel [class*="am-auth"] {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* General Amelia wrapper spacing fix */
.oes-customer-panel > div:first-child {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Category Events Section */
.oes-events-wrapper {
    background-color: var(--oes-white);
    border: 1px solid var(--oes-border);
    border-radius: var(--oes-radius-lg);
    padding: 1.5rem;
}

.oes-category-events-header {
    text-align: center;
}

.oes-category-events-header h3 {
    margin-bottom: 0.5rem;
}

.oes-category-events-list {
    margin-top: 1rem;
}

/* Amelia Events List within category pages */
.oes-events-wrapper .amelia-v2-booking,
.oes-events-wrapper [class*="amelia-v2"] {
    padding: 0 !important;
    margin: 0 !important;
}

/* Style Amelia event cards on category pages */
.oes-events-wrapper [class*="am-event"],
.oes-events-wrapper [class*="am-card"] {
    border-radius: var(--oes-radius-md) !important;
    transition: all 0.3s ease !important;
}

.oes-events-wrapper [class*="am-event"]:hover,
.oes-events-wrapper [class*="am-card"]:hover {
    box-shadow: var(--oes-shadow-md) !important;
    transform: translateY(-2px) !important;
}

/* Login Page Info Boxes - Consistent Style */
.oes-info-box {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: var(--oes-radius-md);
}

.oes-info-box-title {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.oes-info-box-text {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.oes-info-box .btn {
    align-self: flex-start;
    font-size: 0.8125rem;
    padding: 0.5rem 1rem;
}

/* Cream variant */
.oes-info-box.oes-info-box-cream {
    background-color: var(--oes-cream);
}

.oes-info-box.oes-info-box-cream .oes-info-box-title {
    color: var(--oes-navy);
}

.oes-info-box.oes-info-box-cream .oes-info-box-text {
    color: var(--oes-gray);
}

/* Navy variant */
.oes-info-box.oes-info-box-navy {
    background-color: var(--oes-navy);
    color: var(--oes-white);
}

.oes-info-box.oes-info-box-navy .oes-info-box-title {
    color: var(--oes-white);
}

.oes-info-box.oes-info-box-navy .oes-info-box-text {
    color: rgba(255, 255, 255, 0.8);
}

.oes-info-box.oes-info-box-navy .btn-white {
    background-color: var(--oes-white);
    border-color: var(--oes-white);
    color: var(--oes-navy);
}

.oes-info-box.oes-info-box-navy .btn-white:hover {
    background-color: var(--oes-cream);
    border-color: var(--oes-cream);
}

/* ==========================================================================
   19. CARDS (Bootstrap Override)
   ========================================================================== */

.card {
    border: 1px solid var(--oes-border);
    border-radius: var(--oes-radius-md);
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--oes-navy);
    box-shadow: var(--oes-shadow-lg);
    transform: translateY(-4px);
}

.card-title {
    font-weight: 600;
    color: var(--oes-dark);
}

/* ==========================================================================
   20. UTILITIES
   ========================================================================== */

.text-oes-navy { color: var(--oes-navy) !important; }
.text-oes-white { color: var(--oes-white) !important; }
.text-oes-gray { color: var(--oes-gray) !important; }

.bg-oes-white { background-color: var(--oes-white) !important; }

.font-heading { font-family: var(--oes-font-heading) !important; }

/* ==========================================================================
   21. PAGE TEMPLATES
   ========================================================================== */

/* Landing page - full width hero */
.oes-landing-page .oes-hero {
    margin-top: -80px;
    padding-top: calc(80px + 4rem);
}

@media (min-width: 992px) {
    .oes-landing-page .oes-hero {
        margin-top: -88px;
        padding-top: calc(88px + 5rem);
    }
}

/* Remove default content padding on landing */
.oes-landing-page #content {
    padding: 0 !important;
}

/* ==========================================================================
   21.5 FACILITY PAGE TEMPLATE
   ========================================================================== */

/* Facility Hero */
.oes-facility-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.oes-facility-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.oes-facility-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.oes-facility-hero-placeholder {
    background: linear-gradient(135deg, var(--oes-navy) 0%, var(--oes-navy-dark) 100%);
}

.oes-facility-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.oes-facility-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 3rem 0;
}

.oes-facility-hero-content .eyebrow {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.oes-facility-hero-title {
    font-family: var(--oes-font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--oes-white);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.oes-facility-hero-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--oes-white);
    font-size: 1.125rem;
    opacity: 0.9;
}

.oes-facility-hero-location svg {
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .oes-facility-hero {
        min-height: 45vh;
    }

    .oes-facility-hero-title {
        font-size: 3rem;
    }
}

/* Facility Info Bar */
.oes-facility-info-bar a {
    text-decoration: none;
}

.oes-facility-info-bar a:hover {
    text-decoration: underline;
}

/* Facility Content */
.oes-facility-content {
    font-size: 1.0625rem;
    line-height: 1.7;
}

.oes-facility-content p {
    margin-bottom: 1.25rem;
}

.oes-facility-content ul,
.oes-facility-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.oes-facility-content li {
    margin-bottom: 0.5rem;
}

/* Facility Stats Box */
.oes-facility-stats {
    border-radius: var(--oes-radius-md);
}

.oes-facility-stat {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--oes-cream);
}

.oes-facility-stat:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

/* Facility Gallery */
.oes-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--oes-radius-md);
}

.oes-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform var(--oes-transition);
}

.oes-gallery-item:hover img {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .oes-gallery-item img {
        height: 250px;
    }

    .col-md-6 .oes-gallery-item img {
        height: 300px;
    }
}

/* Facility Map Section */
.oes-facility-map {
    position: relative;
}

.oes-facility-map-container {
    width: 100%;
    height: 400px;
}

.oes-facility-map-container iframe {
    display: block;
}

.oes-facility-map-overlay {
    position: relative;
    margin-top: -80px;
    margin-bottom: 2rem;
    max-width: 400px;
}

@media (min-width: 768px) {
    .oes-facility-map {
        position: relative;
    }

    .oes-facility-map-overlay {
        position: absolute;
        bottom: 2rem;
        left: 2rem;
        margin-top: 0;
        margin-bottom: 0;
        z-index: 10;
    }
}

/* Facility Course Cards - Hover Effect */
.oes-course-facility-card {
    transition: all var(--oes-transition);
}

.oes-course-facility-card:hover {
    background-color: var(--oes-navy) !important;
    border-color: var(--oes-navy) !important;
    transform: translateY(-4px);
    text-decoration: none;
}

/* ==========================================================================
   22. RESPONSIVE
   ========================================================================== */

@media (max-width: 991.98px) {
    .oes-hero-content {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .oes-hero {
        min-height: 70vh;
        padding-top: 6rem;
    }

    .oes-hero-content {
        padding: 1.25rem;
    }

    .oes-hero-buttons {
        flex-direction: column;
    }

    .oes-hero-buttons .btn {
        width: 100%;
    }
}

/* ==========================================================================
   23. SCROLL ANIMATIONS
   ========================================================================== */

/* Initial states */
.scroll-fade-up {
    opacity: 0;
    transform: translateY(2rem);
}

.scroll-fade-down {
    opacity: 0;
    transform: translateY(-2rem);
}

.scroll-fade-left {
    opacity: 0;
    transform: translateX(2rem);
}

.scroll-fade-right {
    opacity: 0;
    transform: translateX(-2rem);
}

.scroll-zoom-in {
    opacity: 0;
    transform: scale(0.95);
}

/* Animated state (add via JS when in viewport) */
.is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Staggered delays for children */
.stagger-children > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children > *:nth-child(2) { transition-delay: 50ms; }
.stagger-children > *:nth-child(3) { transition-delay: 100ms; }
.stagger-children > *:nth-child(4) { transition-delay: 150ms; }
.stagger-children > *:nth-child(5) { transition-delay: 200ms; }
.stagger-children > *:nth-child(6) { transition-delay: 250ms; }

/* Hover lift effect */
.hover-lift {
    transition: transform var(--oes-transition);
}

.hover-lift:hover {
    transform: translateY(-4px);
}

/* Hover scale effect (for images) */
.hover-scale {
    transition: transform var(--oes-transition-slow);
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* ==========================================================================
   24. PRINT STYLES
   ========================================================================== */

@media print {
    .oes-header,
    .site-footer,
    .oes-cta {
        display: none;
    }

    body {
        font-size: 12pt;
        color: #000;
    }
}

/* ==========================================================================
   25. COMING SOON MENU ITEMS
   Add class "coming-soon" to menu items in WP Admin > Appearance > Menus
   ========================================================================== */

/* Coming Soon - Mega Menu Cards */
.oes-mega-menu-card.coming-soon {
    pointer-events: none;
    position: relative;
}

.oes-mega-menu-card.coming-soon .oes-mega-menu-card-image {
    filter: grayscale(100%);
    opacity: 0.6;
}

.oes-mega-menu-card.coming-soon .oes-mega-menu-card-title {
    color: var(--oes-gray);
}

.oes-mega-menu-card.coming-soon .oes-mega-menu-card-content::after {
    content: 'Coming Soon';
    display: inline-block;
    margin-top: 0.375rem;
    padding: 0.125rem 0.5rem;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--oes-white);
    background: var(--oes-navy);
    border-radius: 2px;
}

/* Coming Soon - Regular Nav Items */
.nav-item.coming-soon > .nav-link,
.menu-item.coming-soon > a {
    pointer-events: none;
    color: var(--oes-gray) !important;
    position: relative;
}

.nav-item.coming-soon > .nav-link::after,
.menu-item.coming-soon > a::after {
    content: 'Soon';
    display: inline-block;
    margin-left: 0.375rem;
    padding: 0.0625rem 0.3125rem;
    font-size: 0.5625rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--oes-white);
    background: var(--oes-gray);
    border-radius: 2px;
    vertical-align: middle;
}
