 :root {
    /* Precise UI Color Palette from Reference Screenshot */
    --nexium-primary: #3F6785;       /* Muted Steel Blue */
    --nexium-secondary: #315A78;     /* Deep Accent Blue for Subtext */
    --nexium-dark: #274761;          /* Dark Charcoal Blue for Primary Headings & Buttons */
    --nexium-white: #FFFFFF;
    --nexium-light: #F4F7FA;         /* The exact light clinical background color */
    --nexium-text: #334E68;          /* High-contrast readable body text */

    /* Typography Stack */
    --font-heading: 'Funnel Display', sans-serif;
    --font-subheading: 'DM Sans', sans-serif;
    --font-content: 'Inter', sans-serif;

    /* Design Accents */
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

 /* Fonts Start */
 
 @font-face {
    font-family: 'Inter';
    src: url('./fonts/inter-400-normal.woff2') format('woff2'),
         url('./fonts/inter-400-normal.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('./fonts/inter-600-normal.woff2') format('woff2'),
         url('./fonts/inter-600-normal.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('./fonts/inter-700-normal.woff2') format('woff2'),
         url('./fonts/inter-700-normal.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Funnel Display';
    src: url('./fonts/funnel-display-latin-400-normal.woff2') format('woff2'),
         url('./fonts/funnel-display-latin-400-normal.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Funnel Display';
    src: url('./fonts/funnel-display-latin-600-normal.woff2') format('woff2'),
         url('./fonts/funnel-display-latin-600-normal.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Funnel Display';
    src: url('./fonts/funnel-display-latin-700-normal.woff2') format('woff2'),
         url('./fonts/funnel-display-latin-700-normal.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Funnel Display';
    src: url('./fonts/funnel-display-latin-800-normal.woff2') format('woff2'),
         url('./fonts/funnel-display-latin-800-normal.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('./fonts/dm-sans-latin-400-normal.woff2') format('woff2'),
         url('./fonts/dm-sans-latin-400-normal.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('./fonts/dm-sans-latin-500-normal.woff2') format('woff2'),
         url('./fonts/dm-sans-latin-500-normal.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('./fonts/dm-sans-latin-600-normal.woff2') format('woff2'),
         url('./fonts/dm-sans-latin-600-normal.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('./fonts/dm-sans-latin-700-normal.woff2') format('woff2'),
         url('./fonts/dm-sans-latin-700-normal.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('./fonts/dm-sans-latin-800-normal.woff2') format('woff2'),
         url('./fonts/dm-sans-latin-800-normal.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
 
 /* Fonts End */
 
/* Common Css */

.page-content, .entry-content, .entry-summary{
    margin: 0px;
}
.post, .page{
    margin: 0px;
}

/* Base resets & utilities */
.nm-section-container { max-width: 1240px; margin: 0 auto; padding: 30px 15px; }
.nm-section-header { text-align: center; max-width: 600px; margin: 0 auto 2rem auto; }
.nm-section-tag { font-family: var(--font-subheading); color: var(--nexium-primary); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 0.5rem; }
.nm-section-title { font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--nexium-dark); font-weight: 600; margin: 0; }

/* Global components button engine */
.nm-btn-primary, .nm-btn-secondary, .nm-btn-cta {
    display: inline-flex; align-items: center; padding: 10px 15px; font-family: var(--font-subheading); font-size: 0.95rem; font-weight: 600; text-decoration: none; border-radius: 50px; transition: var(--transition-smooth);
}
.nm-btn-primary { background-color: var(--nexium-primary); color: var(--nexium-white); }
.nm-btn-primary:hover { background-color: var(--nexium-secondary); transform: translateY(-2px); }
.nm-btn-secondary { background-color: transparent; color: var(--nexium-dark); border: 1px solid rgba(39,71,97,0.2); margin-left: 1rem; }
.nm-btn-secondary:hover { background-color: var(--nexium-light); border-color: var(--nexium-dark); }

/* Page Wrapper Setup matching the reference screenshot */
.nexium-cs-premium-body {
    background-color: var(--nexium-light);
    color: var(--nexium-text);
    font-family: var(--font-content);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    position: relative;
    overflow-x: hidden;
}

.nexium-cs-premium-body *,
.nexium-cs-premium-body *::before,
.nexium-cs-premium-body *::after {
    box-sizing: inherit;
}


/* ==========================================================================
   NEXIUM MEDIA PREMIUM FLOATING HEADER ARCHITECTURE
   ========================================================================== */

/* Header Root Scaffold Frame */
.nm-site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 1rem 1.25rem;
    transition: var(--transition-smooth);
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .nm-site-header {
        padding: 1.5rem 2rem;
    }
}

/* Apple-style Floating Container Box */
.nm-header-container {
    max-width: 1240px;
    margin: 0 auto;
    background-color: var(--nexium-white);
    border: 1px solid rgba(63, 103, 133, 0.08);
    border-radius: 100px; /* Perfect pill architecture matching reference */
    padding: 0.65rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 30px rgba(39, 71, 97, 0.04);
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .nm-header-container {
        padding: 0.75rem 2rem;
    }
}

/* Brand Identity Engine */
.nm-header-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 10001;
}

.nm-header-logo-img {
    height: auto;
    width: 100%;
    max-width: 150px;
    display: block;
    transition: var(--transition-smooth);
}

@media (min-width: 992px) {
    .nm-header-logo-img {
        height: auto;
        max-width: 150px;
    }
}

/* ==========================================================================
   DESKTOP NAVIGATION (MID ROW ALIGNMENT)
   ========================================================================== */
.nm-desktop-nav {
    display: none;
}

@media (min-width: 992px) {
    .nm-desktop-nav {
        display: block;
    }
    
    .nm-desktop-menu {
        display: flex;
        align-items: center;
        gap: 2.5rem;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .nm-nav-item a {
        font-family: var(--font-subheading);
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--nexium-dark);
        text-decoration: none;
        position: relative;
        padding: 0.5rem 0;
        transition: color 0.3s ease;
    }
    
    .nm-nav-item a:hover,
    .nm-nav-item.current-menu-item a {
        color: var(--nexium-primary);
    }
}

/* ==========================================================================
   ACTION CTA BUTTON STRUCTURAL SCHEME
   ========================================================================== */
.nm-header-cta-wrap {
    display: none;
}

@media (min-width: 992px) {
    .nm-header-cta-wrap {
        display: block;
    }
    
    .nm-header-btn {
        font-family: var(--font-subheading);
        font-size: 0.9rem;
        font-weight: 600;
        background-color: var(--nexium-dark);
        color: var(--nexium-white);
        padding: 0.75rem 1.75rem;
        border-radius: 50px;
        text-decoration: none;
        letter-spacing: 0.02em;
        transition: var(--transition-smooth);
        display: inline-block;
    }
    
    .nm-header-btn:hover {
        background-color: var(--nexium-secondary);
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(49, 90, 120, 0.15);
    }
}

/* ==========================================================================
   PURE CSS SECURE SIDEBAR DRAWER ENGINE
   ========================================================================== */
.nm-menu-toggle-input {
    display: none; /* Fully manages menu states natively without heavy JS dependencies */
}

.nm-menu-hamburger-label {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    cursor: pointer;
    z-index: 10001;
    position: relative;
}

@media (min-width: 992px) {
    .nm-menu-hamburger-label {
        display: none;
    }
}

.nm-menu-hamburger-label span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--nexium-dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* CSS-Triggered Sidebar Navigation Component Drawer */
.nm-mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--nexium-white);
    z-index: 100000;
    box-shadow: -10px 0 40px rgba(39, 71, 97, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

/* Pure CSS State Toggling Rules */
.nm-menu-toggle-input:checked ~ .nm-mobile-sidebar {
    right: 0;
}

.nm-menu-toggle-input:checked ~ .nm-menu-hamburger-label span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nm-menu-toggle-input:checked ~ .nm-menu-hamburger-label span:nth-child(2) {
    opacity: 0;
}

.nm-menu-toggle-input:checked ~ .nm-menu-hamburger-label span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Sidebar Navigation Items layout Frame */
.nm-mobile-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.nm-mobile-item a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--nexium-dark);
    text-decoration: none;
    display: block;
    transition: color 0.2s ease;
}

.nm-mobile-item a:hover {
    color: var(--nexium-primary);
}

.nm-mobile-footer-action {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nm-mobile-btn {
    font-family: var(--font-subheading);
    font-size: 1rem;
    font-weight: 600;
    background-color: var(--nexium-dark);
    color: var(--nexium-white);
    text-align: center;
    padding: 1rem;
    border-radius: 50px;
    text-decoration: none;
    display: block;
    box-shadow: 0 4px 15px rgba(39, 71, 97, 0.1);
}

/* ==========================================================================
   DESKTOP DYNAMIC DROP-DOWN STRUCTURE (2 LEVELS SUPPORT)
   ========================================================================== */
@media (min-width: 992px) {
    .nm-desktop-menu {
        display: flex;
        align-items: center;
        gap: 2.25rem;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    /* Core Dynamic Item Wrapper */
    .nm-desktop-menu li {
        position: relative;
    }

    .nm-desktop-menu a {
        font-family: var(--font-subheading);
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--nexium-dark);
        text-decoration: none;
        padding: 1.25rem 0;
        display: inline-flex;
        align-items: center;
        transition: color 0.25s ease;
    }

    .nm-desktop-menu a:hover {
        color: var(--nexium-primary);
    }

    /* Target Items holding sub-items to add indicator markers */
    .nm-desktop-menu .menu-item-has-children > a::after {
        content: '';
        display: inline-block;
        width: 6px;
        height: 6px;
        margin-left: 6px;
        border-right: 1.5px solid currentColor;
        border-bottom: 1.5px solid currentColor;
        transform: translateY(-1px) rotate(45deg);
        transition: transform 0.2s ease;
    }

    .nm-desktop-menu .menu-item-has-children:hover > a::after {
        transform: translateY(2px) rotate(225deg);
    }

    /* ==========================================
       SUBMENU LEVEL 1 LAYER MAPPING
       ========================================== */
    .nm-desktop-menu ul.sub-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(12px);
        background-color: var(--nexium-white);
        min-width: 230px;
        border-radius: 12px;
        padding: 0.75rem 0;
        margin: 0;
        list-style: none;
        border: 1px solid rgba(63, 103, 133, 0.08);
        box-shadow: 0 10px 35px rgba(39, 71, 97, 0.08);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
    }

    .nm-desktop-menu li:hover > ul.sub-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

    .nm-desktop-menu ul.sub-menu a {
        padding: 0.6rem 1.5rem;
        display: flex;
        font-size: 0.9rem;
        color: var(--nexium-text);
        font-weight: 400;
        width: 100%;
    }

    .nm-desktop-menu ul.sub-menu a:hover {
        background-color: var(--nexium-light);
        color: var(--nexium-dark);
    }

    /* ==========================================
       SUBMENU LEVEL 2 NESTED MAPPING
       ========================================== */
    .nm-desktop-menu ul.sub-menu ul.sub-menu {
        top: 0;
        left: 100%;
        transform: translateX(12px) translateY(0);
    }

    .nm-desktop-menu ul.sub-menu li:hover > ul.sub-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0) translateY(0);
    }
    
    .nm-desktop-menu ul.sub-menu .menu-item-has-children > a::after {
        transform: rotate(-45deg);
        margin-left: auto;
    }
    
    .nm-desktop-menu ul.sub-menu .menu-item-has-children:hover > a::after {
        transform: rotate(135deg);
    }
}

/* ==========================================================================
   MODERN MOBILE SIDEBAR SYSTEM (Nexium Design Framework)
   ========================================================================== */
@media (max-width: 991px) {
    .nm-mobile-sidebar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 340px;
        height: 100vh;
        background-color: var(--nexium-white);
        z-index: 100000;
        box-shadow: -15px 0 50px rgba(39, 71, 97, 0.12);
        display: flex;
        flex-direction: column;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-sizing: border-box;
        overflow: hidden;
    }

    /* Top Action Bar Header Context */
    .nm-mobile-sidebar-header {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding: 15px;
        border-bottom: 1px solid rgba(39, 71, 97, 0.05);
    }

    .nm-mobile-sidebar-close {
        background: none;
        border: none;
        outline: none;
        color: var(--nexium-dark);
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border-radius: 50%;
        background-color: var(--nexium-light);
        transition: all 0.2s ease;
    }

    .nm-mobile-sidebar-close:active {
        transform: scale(0.92);
        background-color: rgba(63, 103, 133, 0.1);
    }

    .nm-mobile-sidebar-close svg {
        width: 20px;
        height: 20px;
    }

    /* Core Nav Area Flex Frame Wrapper */
    .nm-mobile-nav-frame {
        flex: 1;
        overflow-y: auto;
        padding: 15px 20px;
        -webkit-overflow-scrolling: touch;
    }

    .nm-mobile-menu {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    /* Primary Level Parent List Node Elements Setup */
    .nm-mobile-menu li {
        position: relative;
        width: 100%;
    }

    .nm-mobile-menu li a {
        font-family: var(--font-heading);
        font-size: 16px;
        font-weight: 400;
        color: var(--nexium-dark);
        text-decoration: none;
        display: block;
        padding: 10px;
        transition: color 0.2s ease;
    }

    /* Dropdown Trigger Box Placement Controls */
    .nm-mobile-menu li.menu-item-has-children > a {
        padding-right: 3.5rem; /* Reserve real estate clear space for indicator click target area */
    }

    .nm-dropdown-trigger {
        position: absolute;
        right: 0;
        top: 0;
        width: 3.5rem;
        height: 3rem;
        background: transparent;
        border: none;
        outline: none;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--nexium-dark);
        cursor: pointer;
        z-index: 5;
    }

    .nm-dropdown-trigger::after {
        content: "";
        width: 8px;
        height: 8px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg);
        transition: transform 0.3s ease;
        display: block;
        margin-top: -4px;
    }

    /* Transform Chevron Rotation State Matrix Indicators */
    .nm-mobile-menu li.is-open > .nm-dropdown-trigger::after {
        transform: rotate(-135deg);
        margin-top: 2px;
        color: var(--nexium-primary);
    }

    .nm-mobile-menu li.is-open > a {
        color: var(--nexium-primary);
    }

    /* Sub-menu Level 1 Animations Setup */
    .nm-mobile-menu ul.sub-menu {
        list-style: none;
        padding: 0 0 0 1rem;
        margin: 0;
        /*max-height: 0;*/
        overflow: hidden;
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
        border-left: 1px solid rgba(63, 103, 133, 0.15);
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    }

    .nm-mobile-menu li.is-open > ul.sub-menu {
        max-height: 1000px; /* High threshold fallback value for clean programmatic expand execution */
        padding: 0.5rem 0 0.75rem 1rem;
    }

    .nm-mobile-menu ul.sub-menu a {
        font-family: var(--font-subheading);
        font-size: 13px;
        color: var(--nexium-secondary);
        font-weight: 500;
        padding: 0.5rem 0;
    }

    /* Sub-menu Level 2 Architecture Layout */
    .nm-mobile-menu ul.sub-menu ul.sub-menu {
        border-left: 1px dashed rgba(63, 103, 133, 0.15);
        padding-left: 0.75rem;
    }

    .nm-mobile-menu ul.sub-menu ul.sub-menu a {
        font-family: var(--font-content);
        font-size: 0.95rem;
        color: var(--nexium-text);
        opacity: 0.85;
        font-weight: 400;
    }

    /* Bottom Footer Sticky Callout Row Layout Settings */
    .nm-mobile-footer-action {
        padding: 1.5rem 2rem 2.5rem 2rem;
        background-color: var(--nexium-white);
        border-top: 1px solid rgba(39, 71, 97, 0.05);
    }

    .nm-mobile-btn {
        font-family: var(--font-subheading);
        font-size: 1rem;
        font-weight: 600;
        background-color: var(--nexium-dark);
        color: var(--nexium-white);
        text-align: center;
        padding: 0.9rem 1.5rem;
        border-radius: 50px;
        text-decoration: none;
        display: block;
        box-shadow: 0 4px 15px rgba(39, 71, 97, 0.1);
        transition: background-color 0.2s ease, transform 0.2s ease;
    }
    
    .nm-mobile-btn:active {
        transform: scale(0.98);
        background-color: var(--nexium-primary);
    }
}

/* Footer */

/* ==========================================================================
   NEXIUM MEDIA CORPORATE SITE FOOTER ARCHITECTURE
   ========================================================================== */

.nm-site-footer {
    background-color: var(--nexium-light);
    border-top: 1px solid rgba(63, 103, 133, 0.08);
    padding: 0 1.25rem; /* Following structural spacing design specs */
    margin-bottom: 0;   /* Terminal anchor layout layer holds zero base margin */
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .nm-site-footer {
        padding: 0 2rem;
    }
}

.nm-footer-container {
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
}

/* Master Grid: 1-Column Mobile, 4-Columns Desktop */
.nm-footer-top-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 4.5rem;
    padding-bottom: 3.5rem;
}

@media (min-width: 576px) {
    .nm-footer-top-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
}

@media (min-width: 992px) {
    .nm-footer-top-grid {
        grid-template-columns: 1.25fr 0.85fr 0.9fr 1fr;
        gap: 2rem;
    }
}

/* Column 1 Identity Frame Specifics */
.nm-footer-brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nm-footer-logo-link {
    display: inline-block;
    margin-bottom: 1.25rem;
}

.nm-footer-logo-img {
    height: 38px;
    width: auto;
    display: block;
}

.nm-footer-brand-desc {
    font-family: var(--font-content);
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--nexium-text);
    opacity: 0.85;
    margin: 0;
}

/* Universal Link Column Mechanics */
.nm-footer-heading {
    font-family: var(--font-subheading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--nexium-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 1.25rem 0;
}

.nm-footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.nm-footer-links-list a {
    font-family: var(--font-content);
    font-size: 0.95rem;
    color: var(--nexium-text);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
}

.nm-footer-links-list a:hover {
    color: var(--nexium-primary);
    transform: translateX(3px);
}

/* Contact Metadata Vector Typography */
.nm-footer-contact-info {
    font-family: var(--font-content);
    font-size: 0.95rem;
    color: var(--nexium-text);
    line-height: 1.6;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nm-footer-contact-info a {
    color: var(--nexium-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.nm-footer-contact-info a:hover {
    color: var(--nexium-primary);
}

/* ==========================================
   BOTTOM COPYRIGHT FLUID FRAME
   ========================================== */
.nm-footer-bottom-bar {
    border-top: 1px solid rgba(63, 103, 133, 0.08);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .nm-footer-bottom-bar {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.nm-footer-copyright {
    font-family: var(--font-content);
    font-size: 0.85rem;
    color: var(--nexium-text);
    opacity: 0.75;
    margin: 0;
}

.nm-footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.nm-footer-legal-links a {
    font-family: var(--font-content);
    font-size: 0.85rem;
    color: var(--nexium-text);
    opacity: 0.75;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.nm-footer-legal-links a:hover {
    opacity: 1;
    color: var(--nexium-primary);
}

/* Footer End */

/* Widget Whatsapp Start*/

.nm-whatsapp-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nm-whatsapp-anchor {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
}

/* Core Visual Shell Animation */
.nm-whatsapp-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Native WhatsApp high contrast brand fill */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 4px 12px rgba(39, 71, 97, 0.1);
    cursor: pointer;
    transform: translate3d(0, 0, 0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.3s ease, 
                background-color 0.3s ease;
    animation: nmWhatsAppFloatLoop 3s ease-in-out infinite;
}

.nm-whatsapp-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Modern Dynamic Tooltip Component */
.nm-whatsapp-tooltip {
    position: absolute;
    right: 76px;
    white-space: nowrap;
    background-color: var(--nexium-dark, #274761);
    color: var(--nexium-white, #FFFFFF);
    font-family: var(--font-subheading, 'DM Sans', sans-serif);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    padding: 10px 18px 10px 14px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(39, 71, 97, 0.12);
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: none;
    opacity: 0.95;
    transform: translate3d(5px, 0, 0) scale(0.95);
    transform-origin: right center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.3s ease, 
                background-color 0.3s ease;
}

/* Tail Arrow pointing at the WhatsApp Button */
.nm-whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: var(--nexium-dark, #274761);
    transition: background-color 0.3s ease;
}

/* Micro-pulse dot anchor inside the tooltip */
.nm-tooltip-pulse {
    width: 8px;
    height: 8px;
    background-color: #25D366;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.nm-tooltip-pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #25D366;
    border-radius: 50%;
    animation: nmTooltipPulseLoop 1.6s ease-out infinite;
}


.nm-whatsapp-anchor:hover .nm-whatsapp-icon-wrapper {
    transform: scale(1.08) translate3d(0, -3px, 0);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45), 0 6px 16px rgba(39, 71, 97, 0.15);
    background-color: #128C7E; /* WhatsApp darker tone contrast change */
    animation-play-state: paused; /* Freeze floating behavior during interaction */
}

.nm-whatsapp-anchor:hover .nm-whatsapp-img {
    transform: scale(1.05) rotate(5deg);
}

.nm-whatsapp-anchor:hover .nm-whatsapp-tooltip {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    background-color: var(--nexium-primary, #3F6785);
}

.nm-whatsapp-anchor:hover .nm-whatsapp-tooltip::after {
    background-color: var(--nexium-primary, #3F6785);
}

/* Fluid natural vertical bobbing animation */
@keyframes nmWhatsAppFloatLoop {
    0% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -6px, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

/* Radar notification expander ring */
@keyframes nmTooltipPulseLoop {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* Responsive Adaptive Adjustments for smaller screen breakpoints */
@media (max-width: 576px) {
    .nm-whatsapp-widget-container {
        bottom: 20px;
        right: 20px;
    }
    .nm-whatsapp-icon-wrapper {
        width: 52px;
        height: 52px;
    }
    .nm-whatsapp-img {
        width: 28px;
        height: 28px;
    }
    /* Hide descriptive text on touch screen widths to ensure zero UI overlaps */
    .nm-whatsapp-tooltip {
        display: none !important;
    }
}

/* Widget Whatsapp END */

/* ==========================================================================
   INLINE SOCIAL PLATFORM MEDIA ROW
   ========================================================================== */

.nm-footer-social-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}

.nm-social-icon-btn {
    width: 36px;
    height: 36px;
    background-color: rgba(39, 71, 97, 0.05); /* Clean architectural tint */
    border: 1px solid rgba(63, 103, 133, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.nm-social-icon-btn img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: grayscale(0.2);
    transition: filter 0.3s ease;
}

/* Transform and Highlight States on Hover */
.nm-social-icon-btn:hover {
    background-color: var(--nexium-dark, #274761);
    border-color: var(--nexium-dark, #274761);
    transform: translateY(-2px);
}

.nm-social-icon-btn:hover img {
    filter: brightness(0) invert(1); /* Smooth inversion to pure clean white logo asset */
}