/* ==========================================================================
   SMH TEXTILE — PREMIUM B2B DESIGN SYSTEM
   Brand Colors: SMH Blue (#0A2540), Black (#0B0F19), White (#FFFFFF), Cool Grey (#F8FAFC)
   Typography: Manrope (Headings/Display) + Inter (Body/UI)
   ========================================================================== */

:root {
    /* Color Palette Tokens */
    --smh-blue: #0A2540;
    --smh-blue-hover: #07192C;
    --smh-blue-light: #F0F4F8;
    --smh-blue-accent: #1E3A8A;
    --smh-dark: #0B0F19;
    --smh-dark-hover: #161F33;
    --smh-white: #FFFFFF;
    --smh-cool-grey: #F8FAFC;
    --smh-cool-grey-alt: #F1F5F9;
    --smh-border-grey: #E2E8F0;
    --smh-border-dark: #1E293B;
    --smh-text-muted: #64748B;
    --smh-text-secondary: #475569;

    /* Luxury Bronze & Ivory Theme Tokens */
    --smh-bronze: #6B5338;
    --smh-bronze-dark: #523E28;
    --smh-bronze-light: #F7F4EE;
    --smh-bronze-hover: #59442C;
    --smh-ivory-bg: #FAF8F5;

    /* Typography Tokens */
    --font-heading: 'Plus Jakarta Sans', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-script: 'Caveat', 'Alex Brush', cursive;

    /* Animation Timing */
    --ease-out-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-medium: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset & Global Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--smh-dark);
    background-color: var(--smh-white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Hierarchy */
h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--smh-dark);
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.smh-heading-display {
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.smh-heading-1 {
    font-size: clamp(2rem, 3.5vw + 0.5rem, 3.25rem);
    font-weight: 800;
    color: var(--smh-blue);
}

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

.smh-heading-2 {
    font-size: clamp(1.6rem, 2.5vw + 0.5rem, 2.5rem);
    font-weight: 700;
}

.smh-heading-3 {
    font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.75rem);
    font-weight: 700;
}

.lead-smh {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 1vw + 0.5rem, 1.25rem);
    color: var(--smh-text-secondary);
    font-weight: 400;
    line-height: 1.7;
}

/* Eyebrow Label */
.smh-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--smh-blue);
    margin-bottom: 0.75rem;
}

.smh-eyebrow-line::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1.5px;
    background-color: var(--smh-blue);
}

.smh-eyebrow-dark {
    color: #94A3B8;
}

.smh-eyebrow-dark.smh-eyebrow-line::before {
    background-color: #64748B;
}

/* Hairline Dividers & Animated Borders */
.border-hairline {
    border-color: var(--smh-border-grey) !important;
}

.border-hairline-dark {
    border-color: rgba(255, 255, 255, 0.12) !important;
}

.animated-border {
    position: relative;
}

.animated-border::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--smh-blue);
    transition: width var(--transition-medium);
}

.animated-border:hover::after {
    width: 100%;
}

.font-serif-display {
    font-family: var(--font-serif-display) !important;
}

.font-script {
    font-family: var(--font-script) !important;
}

.text-bronze {
    color: var(--smh-bronze) !important;
}

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

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

/* Button System */
.btn-smh-bronze {
    background-color: var(--smh-bronze);
    color: #FFFFFF;
    border: 1px solid var(--smh-bronze);
    padding: 0.85rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-smh-bronze:hover {
    background-color: var(--smh-bronze-dark);
    border-color: var(--smh-bronze-dark);
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(107, 83, 56, 0.35);
}

.btn-smh-bronze:hover .btn-arrow-icon {
    transform: translateX(4px);
}

.btn-smh-outline-bronze {
    background-color: transparent;
    color: var(--smh-bronze);
    border: 1px solid var(--smh-bronze);
    padding: 0.85rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-smh-outline-bronze:hover {
    background-color: var(--smh-bronze);
    color: #FFFFFF;
    border-color: var(--smh-bronze);
}

.btn-smh-outline-bronze:hover .btn-arrow-icon {
    transform: translateX(4px);
}

.btn-circle-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(107, 83, 56, 0.25);
    background-color: #FFFFFF;
    color: var(--smh-bronze);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-circle-arrow:hover {
    background-color: var(--smh-bronze);
    color: #FFFFFF;
    border-color: var(--smh-bronze);
    transform: scale(1.08);
}

.glass-box-hero {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.glass-box-dark {
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.btn-smh-primary {
    background-color: var(--smh-blue);
    color: var(--smh-white);
    border: 1px solid var(--smh-blue);
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-smh-primary:hover {
    background-color: var(--smh-blue-hover);
    border-color: var(--smh-blue-hover);
    color: var(--smh-white);
    box-shadow: 0 4px 14px rgba(10, 37, 64, 0.25);
}

.btn-smh-primary:hover .btn-arrow-icon {
    transform: translateX(4px);
}

.btn-smh-dark {
    background-color: var(--smh-dark);
    color: var(--smh-white);
    border: 1px solid var(--smh-dark);
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-smh-dark:hover {
    background-color: var(--smh-dark-hover);
    border-color: var(--smh-dark-hover);
    color: var(--smh-white);
}

.btn-smh-dark:hover .btn-arrow-icon {
    transform: translateX(4px);
}

.btn-smh-outline {
    background-color: transparent;
    color: var(--smh-dark);
    border: 1px solid var(--smh-dark);
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all var(--transition-fast);
    text-decoration: none;
}

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

.btn-smh-outline:hover .btn-arrow-icon {
    transform: translateX(4px);
}

.btn-smh-outline-light {
    background-color: transparent;
    color: var(--smh-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-smh-outline-light:hover {
    background-color: var(--smh-white);
    color: var(--smh-dark);
    border-color: var(--smh-white);
}

.btn-arrow-icon {
    display: inline-block;
    transition: transform var(--transition-fast);
}

.btn-smh-link {
    color: var(--smh-blue);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    padding-bottom: 2px;
}

.btn-smh-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1.5px;
    background-color: var(--smh-blue);
    transition: width var(--transition-fast);
}

.btn-smh-link:hover {
    color: var(--smh-blue-hover);
}

.btn-smh-link:hover::after {
    width: 100%;
}

.btn-smh-link:hover .btn-arrow-icon {
    transform: translateX(3px);
}

/* Badges */
.badge-smh {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 2px;
    background-color: var(--smh-cool-grey-alt);
    color: var(--smh-dark);
    border: 1px solid var(--smh-border-grey);
}

.badge-smh-blue {
    background-color: var(--smh-blue-light);
    color: var(--smh-blue);
    border: 1px solid rgba(10, 37, 64, 0.15);
}

.badge-smh-dark {
    background-color: var(--smh-dark);
    color: var(--smh-white);
    border: 1px solid var(--smh-dark);
}

/* Breadcrumbs */
.breadcrumb-smh {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 0.8rem;
    color: var(--smh-text-muted);
}

.breadcrumb-smh a {
    color: var(--smh-text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb-smh a:hover {
    color: var(--smh-blue);
}

.breadcrumb-smh .separator {
    color: #CBD5E1;
}

/* Image Frames & Fixed Aspect Ratios */
.smh-image-frame {
    position: relative;
    overflow: hidden;
    background-color: var(--smh-cool-grey-alt);
    border-radius: 2px;
}

.smh-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow), filter var(--transition-medium);
}

/* Aspect Ratio Containers */
.ratio-1x1 {
    aspect-ratio: 1 / 1;
}

.ratio-4x3 {
    aspect-ratio: 4 / 3;
}

.ratio-16x9 {
    aspect-ratio: 16 / 9;
}

.ratio-3x4 {
    aspect-ratio: 3 / 4;
}

.ratio-2x1 {
    aspect-ratio: 2 / 1;
}

/* Image Hover Zoom & Overlays */
.smh-image-frame.hover-zoom:hover img {
    transform: scale(1.06);
}

.smh-overlay-dark,
.smh-overlay-blue {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--transition-medium);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    pointer-events: none;
}

.smh-overlay-dark {
    background: linear-gradient(180deg, rgba(11, 15, 25, 0.1) 0%, rgba(11, 15, 25, 0.85) 100%);
}

.smh-overlay-blue {
    background: linear-gradient(180deg, rgba(10, 37, 64, 0.2) 0%, rgba(10, 37, 64, 0.9) 100%);
}

.smh-image-frame:hover .smh-overlay-dark,
.smh-image-frame:hover .smh-overlay-blue {
    opacity: 1;
}

/* Content Reveal on Hover */
.smh-reveal-content {
    transform: translateY(12px);
    opacity: 0;
    transition: transform var(--transition-medium), opacity var(--transition-medium);
}

.smh-image-frame:hover .smh-reveal-content {
    transform: translateY(0);
    opacity: 1;
}

/* Premium B2B Cards */
.smh-card {
    background-color: var(--smh-white);
    border: 1px solid var(--smh-border-grey);
    border-radius: 2px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-medium), transform var(--transition-medium);
}

.smh-card-interactive:hover {
    border-color: var(--smh-blue);
    box-shadow: 0 12px 28px rgba(10, 37, 64, 0.08);
    transform: translateY(-4px);
}

/* CTA Block Component */
.cta-block-smh {
    background-color: var(--smh-blue);
    color: var(--smh-white);
    padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.cta-block-smh::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.cta-block-dark {
    background-color: var(--smh-dark);
}

/* Generous Whitespace Helper Classes */
.section-padding {
    padding-top: clamp(4rem, 7vw, 7.5rem);
    padding-bottom: clamp(4rem, 7vw, 7.5rem);
}

.section-padding-sm {
    padding-top: clamp(2.5rem, 4vw, 4.5rem);
    padding-bottom: clamp(2.5rem, 4vw, 4.5rem);
}

.bg-smh-cool {
    background-color: var(--smh-cool-grey);
}

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

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

/* Mega Menu Utility Classes */
.mega-menu-wrapper {
    box-shadow: 0 20px 40px rgba(11, 15, 25, 0.12);
}

.mega-segment-pills .nav-link {
    transition: all var(--transition-fast);
}

.mega-segment-pills .nav-link:hover {
    background-color: var(--smh-cool-grey-alt);
    color: var(--smh-blue) !important;
}

.mega-col-item:hover {
    background-color: var(--smh-cool-grey);
    transform: translateX(3px);
}

/* Scroll Reveal Utilities */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

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

.hover-bg-light:hover {
    background-color: var(--smh-cool-grey-alt) !important;
}

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

.hover-text-white:hover {
    color: var(--smh-white) !important;
}

.hover-lift {
    transition: transform var(--transition-medium), box-shadow var(--transition-medium), border-color var(--transition-medium);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(10, 37, 64, 0.1);
    border-color: rgba(37, 99, 235, 0.35) !important;
}

/* Homepage Hero & Specialized Overlay Components */
.hero-smh {
    position: relative;
    background-color: var(--smh-dark);
    color: var(--smh-white);
    padding-top: clamp(5rem, 9vw, 8.5rem);
    padding-bottom: clamp(5rem, 9vw, 8.5rem);
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-smh-bg-image {
    position: absolute;
    inset: -5%;
    width: 110%;
    height: 110%;
    background-image: url('../images/hero/hotel_bedsheet_hero_bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
    animation: kenburnsHero 30s ease-in-out infinite alternate;
}

.hero-about-bg-image {
    background-image: url('../images/hero/textile_weaving_hero_bg.jpg') !important;
}

@keyframes kenburnsHero {
    0% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.08) translate(-1.5%, -1%);
    }

    100% {
        transform: scale(1.03) translate(1%, 0.5%);
    }
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(10, 37, 64, 0.7) 0%, rgba(11, 15, 25, 0.92) 80%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.35;
    z-index: 1;
    pointer-events: none;
}

.stat-card-luxury {
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 1.25rem 1.25rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.stat-card-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3B82F6, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card-luxury:hover {
    transform: translateY(-3px);
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.stat-card-luxury:hover::before {
    opacity: 1;
}

.stat-number-gradient {
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 2.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.stat-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #60A5FA;
    margin-bottom: 0.85rem;
    transition: transform 0.3s ease;
}

.stat-card-luxury:hover .stat-icon-wrapper {
    transform: scale(1.08);
    background: rgba(37, 99, 235, 0.25);
}

.process-step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--smh-blue);
    color: var(--smh-white);
    font-weight: 800;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
}

/* Connected Horizontal Process Flow */
.process-flow-container {
    position: relative;
}

@media (min-width: 992px) {
    .process-flow-line {
        position: absolute;
        top: 42px;
        left: 10%;
        right: 10%;
        height: 3px;
        background: linear-gradient(90deg, #E2E8F0 0%, #2563EB 50%, #E2E8F0 100%);
        z-index: 1;
        opacity: 0.5;
    }
}

.process-card-glowing {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 1.75rem 1rem;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    height: 100%;
}

.process-card-glowing:hover {
    transform: translateY(-8px);
    border-color: #2563EB;
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.2), 0 0 25px rgba(37, 99, 235, 0.15);
}

.process-step-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0A2540 0%, #1E3A8A 100%);
    color: #FFFFFF;
    font-weight: 800;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 6px 16px rgba(10, 37, 64, 0.25);
    transition: all 0.35s ease;
    border: 3px solid #FFFFFF;
    position: relative;
    z-index: 3;
}

.process-card-glowing:hover .process-step-badge {
    transform: scale(1.12) rotate(6deg);
    background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
}

.process-card-icon {
    font-size: 1.5rem;
    color: #2563EB;
    margin-bottom: 0.75rem;
    display: block;
    transition: transform 0.3s ease;
}

.process-card-glowing:hover .process-card-icon {
    transform: scale(1.18);
}

.process-col-5 {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 576px) {
    .process-col-5 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .process-col-5 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* Interactive World Map & Hotspot Sonar Animations */
@keyframes mapSonar {
    0% {
        transform: scale(0.6);
        opacity: 1;
    }

    100% {
        transform: scale(2.6);
        opacity: 0;
    }
}

@keyframes mapFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.map-container-luxury {
    background: linear-gradient(135deg, #0B0F19 0%, #0A2540 70%, #061526 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    min-height: 420px;
}

.map-hotspot {
    position: absolute;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease;
    animation: mapFloat 4s ease-in-out infinite;
}

.map-hotspot:hover {
    transform: scale(1.25);
    z-index: 25;
}

.map-beacon-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #60A5FA;
    border: 2px solid #FFFFFF;
    box-shadow: 0 0 12px #3B82F6;
    position: relative;
    z-index: 2;
}

.map-beacon-dot.origin-dot {
    background: #F59E0B;
    border-color: #FFFFFF;
    box-shadow: 0 0 18px #F59E0B;
    width: 18px;
    height: 18px;
}

.map-sonar-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid #60A5FA;
    animation: mapSonar 2.2s infinite ease-out;
    pointer-events: none;
    z-index: 1;
}

.map-sonar-ring.origin-ring {
    border-color: #F59E0B;
    inset: -12px;
    animation: mapSonar 1.8s infinite ease-out;
}

.map-popover-card {
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.65rem 0.95rem;
    border-radius: 8px;
    width: max-content;
    max-width: 220px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 30;
}

.map-hotspot:hover .map-popover-card {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.showcase-tab-btn {
    border: 1px solid #E2E8F0;
    background: #FFFFFF;
    color: var(--smh-dark);
    padding: 0.65rem 1.25rem;
    font-weight: 700;
    font-size: 0.8125rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.showcase-tab-btn:hover {
    transform: translateY(-2px);
    border-color: #2563EB;
    color: #2563EB;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.12);
}

.showcase-tab-btn.active {
    background: linear-gradient(135deg, #0A2540 0%, #1E3A8A 100%);
    color: #FFFFFF;
    border-color: #0A2540;
    box-shadow: 0 8px 20px rgba(10, 37, 64, 0.22);
}

.showcase-tab-btn .badge-tab {
    font-size: 0.7rem;
    font-family: monospace;
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
    background: #F1F5F9;
    color: #64748B;
    transition: all 0.25s ease;
}

.showcase-tab-btn.active .badge-tab {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

.showcase-tab-btn:hover:not(.active) .badge-tab {
    background: rgba(37, 99, 235, 0.1);
    color: #2563EB;
}

.spec-list-compact dt {
    font-weight: 600;
    color: var(--smh-text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.spec-list-compact dd {
    font-weight: 700;
    color: var(--smh-dark);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   PHASE 21 — PREMIUM MOTION POLISH & ACCESSIBILITY
   ========================================================================== */

/* Staggered Scroll Reveal Delays */
.reveal-on-scroll.reveal-stagger-1 {
    transition-delay: 0.1s;
}

.reveal-on-scroll.reveal-stagger-2 {
    transition-delay: 0.2s;
}

.reveal-on-scroll.reveal-stagger-3 {
    transition-delay: 0.3s;
}

.reveal-on-scroll.reveal-stagger-4 {
    transition-delay: 0.4s;
}

/* Image Hover Zoom & Scale Utilities */
.group-hover-scale {
    transition: transform var(--transition-slow);
}

.group:hover .group-hover-scale {
    transform: scale(1.06);
}

.hover-zoom-lg {
    overflow: hidden;
}

.hover-zoom-lg img {
    transition: transform var(--transition-slow);
}

.hover-zoom-lg:hover img {
    transform: scale(1.08);
}

/* Counter Animation Metric Styling */
.count-anim {
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

/* Accessibility: Prefers Reduced Motion Overrides */
@media (prefers-reduced-motion: reduce) {

    *,
    ::before,
    ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .group-hover-scale,
    .hover-zoom-lg img {
        transform: none !important;
    }

    .btn-arrow-icon {
        transform: none !important;
    }
}

/* ==========================================================================
   PHASE 22 — RESPONSIVE & WCAG ACCESSIBILITY ENHANCEMENTS
   ========================================================================== */

/* High-Contrast Focus Visible Indicators */
:focus-visible {
    outline: 2px solid var(--smh-blue) !important;
    outline-offset: 2px !important;
}

.bg-smh-dark :focus-visible,
.bg-smh-blue :focus-visible {
    outline-color: var(--smh-white) !important;
}

/* Screen Reader Only Utility */
.sr-only,
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Responsive Containment & Touch Targets */
body {
    overflow-x: hidden;
}

.table-responsive-smh {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 767.98px) {

    .btn,
    .form-control,
    .form-select {
        min-height: 44px;
    }

    .hero-smh {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
}

/* ==========================================================================
   ULTRA-PREMIUM INTERACTIVE WORLD MAP & GLOBAL EXPORT VISUALIZATION
   ========================================================================== */
.map-container-luxury {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    min-height: 420px;
    position: relative;
    overflow: visible;
}

.map-grid-overlay {
    display: none !important;
}

/* Waving Arc Connections */
.map-arc-line {
    stroke-dasharray: 6, 6;
    animation: mapDashFlow 25s linear infinite;
}

@keyframes mapDashFlow {
    from {
        stroke-dashoffset: 300;
    }

    to {
        stroke-dashoffset: 0;
    }
}

/* Hotspot Beacon & Sonar Waving Effect */
.map-hotspot {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.map-hotspot:hover,
.map-hotspot.is-active {
    transform: translate(-50%, -50%) scale(1.3);
    z-index: 30;
}

.map-beacon-dot {
    width: 15px;
    height: 15px;
    background: #2563EB;
    border: 2.5px solid #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.6), 0 0 30px rgba(37, 99, 235, 0.4);
    position: relative;
}

.map-beacon-dot.origin-dot {
    width: 18px;
    height: 18px;
    background: #F59E0B;
    border-color: #FFFFFF;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.8), 0 0 35px rgba(245, 158, 11, 0.5);
}

/* Multi-Ring Wave Animation */
.map-sonar-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1.5px solid #2563EB;
    animation: mapWavePulse 2.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    pointer-events: none;
}

.map-sonar-ring::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid #3B82F6;
    animation: mapWavePulse 2.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.8s infinite;
}

.map-sonar-ring.origin-ring {
    border-color: #F59E0B;
}

.map-sonar-ring.origin-ring::after {
    border-color: #FBBF24;
}

@keyframes mapWavePulse {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.95;
    }

    100% {
        width: 380%;
        height: 380%;
        opacity: 0;
    }
}

/* Glassmorphism Floating Popover Card */
.map-popover-card {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #0B132B !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 8px;
    padding: 8px 12px !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45), 0 0 15px rgba(37, 99, 235, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
    z-index: 100;
    width: max-content;
    max-width: 250px;
    white-space: normal !important;
    text-align: left;
}

.map-popover-card::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #0B132B transparent transparent transparent;
}


.map-hotspot:hover .map-popover-card,
.map-hotspot.is-active .map-popover-card {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Compact Icon-Wise Region Grid Cards */
.region-card-compact {
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 10px 14px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    height: 100%;
}

.region-card-compact:hover,
.region-card-compact.is-active {
    border-color: #60A5FA;
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 10px 25px -4px rgba(37, 99, 235, 0.35), 0 0 15px rgba(96, 165, 250, 0.15);
    transform: translateY(-3px);
}

.region-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(96, 165, 250, 0.3);
    color: #60A5FA;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.region-card-compact:hover .region-icon-circle,
.region-card-compact.is-active .region-icon-circle {
    background: #2563EB;
    border-color: #60A5FA;
    color: #FFFFFF;
    transform: scale(1.1);
    box-shadow: 0 0 16px rgba(37, 99, 235, 0.5);
}


/* ==========================================================================
   PHASE 25 — QUALITY STANDARDS & TESTING ENHANCEMENTS
   ========================================================================== */
.quality-metric-card {
    background: #FFFFFF;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 14px;
    padding: 16px 18px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.quality-metric-card:hover {
    border-color: #2563EB;
    box-shadow: 0 12px 28px -6px rgba(37, 99, 235, 0.14);
    transform: translateY(-4px);
}

.quality-metric-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.quality-metric-card:hover .quality-metric-icon-wrap {
    background: #2563EB;
    color: #FFFFFF;
    transform: scale(1.08);
}

.quality-floating-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: rgba(10, 37, 64, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 14px 18px;
    color: #FFFFFF;
    box-shadow: 0 20px 40px rgba(10, 37, 64, 0.35);
    z-index: 10;
}

/* OEM & Private Label Luxury Styling */
.oem-card-luxury {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 22px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.oem-card-luxury:hover {
    border-color: rgba(96, 165, 250, 0.5);
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 16px 36px -6px rgba(37, 99, 235, 0.25), 0 0 20px rgba(59, 130, 246, 0.15);
    transform: translateY(-5px);
}

.oem-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(96, 165, 250, 0.25);
    color: #60A5FA;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.oem-card-luxury:hover .oem-icon-badge {
    background: #2563EB;
    border-color: #3B82F6;
    color: #FFFFFF;
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
}

/* Heritage Section Experience Badge */
.heritage-experience-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 16px;
    padding: 14px 20px;
    box-shadow: 0 20px 45px rgba(10, 37, 64, 0.16);
    z-index: 10;
    text-align: center;
    white-space: nowrap;
}

/* Abstract Global Motion Background Texture */
.global-abstract-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.global-ambient-glow {
    position: absolute;
    width: 650px;
    height: 650px;
    top: 15%;
    right: 5%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.09) 0%, rgba(96, 165, 250, 0.04) 50%, transparent 75%);
    animation: ambientGlowPulse 8s ease-in-out infinite alternate;
    pointer-events: none;
}

.global-compass-grid {
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    width: 680px;
    height: 680px;
    opacity: 0.15;
    animation: rotateGridSlow 120s linear infinite;
    pointer-events: none;
}

@keyframes ambientGlowPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.15);
        opacity: 0.95;
    }
}

@keyframes rotateGridSlow {
    from {
        transform: translateY(-50%) rotate(0deg);
    }

    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

.continent-shape-vector {
    transition: fill 0.3s ease, opacity 0.3s ease;
}

.continent-shape-vector:hover {
    fill: #2563EB;
    opacity: 0.35;
}

/* ==========================================================================
   SECTION 5 — INTERACTIVE COLLECTION SHOWCASE & CATALOGUE LUXURY STYLES
   ========================================================================== */

/* Glass Tab Switcher Buttons */
.showcase-tab-btn {
    background: #FFFFFF;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 50px;
    padding: 9px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(10, 37, 64, 0.04);
    cursor: pointer;
    user-select: none;
}

.showcase-tab-btn i {
    font-size: 1rem;
    color: #2563EB;
    transition: transform 0.3s ease, color 0.3s ease;
}

.showcase-tab-btn .badge-tab {
    background: #F1F5F9;
    color: #64748B;
    font-family: monospace;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 30px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.showcase-tab-btn:hover {
    border-color: #2563EB;
    color: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
}

.showcase-tab-btn:hover i {
    transform: scale(1.15);
}

.showcase-tab-btn.active {
    background: linear-gradient(135deg, #0A2540 0%, #1E3A8A 100%);
    border-color: #1E3A8A;
    color: #FFFFFF;
    box-shadow: 0 10px 25px -5px rgba(10, 37, 64, 0.28), 0 0 15px rgba(37, 99, 235, 0.25);
    transform: translateY(-2px);
}

.showcase-tab-btn.active i {
    color: #60A5FA;
}

.showcase-tab-btn.active .badge-tab {
    background: rgba(37, 99, 235, 0.3);
    color: #93C5FD;
    border-color: rgba(147, 197, 253, 0.3);
}

/* Collection Showcase Card */
.collection-showcase-luxury {
    background: #FFFFFF;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-top: 3px solid #2563EB;
    border-radius: 1.25rem;
    padding: 2.25rem;
    box-shadow: 0 20px 50px -15px rgba(10, 37, 64, 0.08), 0 0 1px rgba(10, 37, 64, 0.1);
    transition: all 0.35s ease;
}

/* Floating Badges on Image Frame */
.collection-img-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(10, 37, 64, 0.12);
}

.collection-floating-badge {
    position: absolute;
    background: rgba(10, 37, 64, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    z-index: 5;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.collection-floating-badge.top-left {
    top: 14px;
    left: 14px;
}

.collection-floating-badge.bottom-right {
    bottom: 14px;
    right: 14px;
}

/* Spec Metric Cards inside Collection */
.spec-metric-box {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
    height: 100%;
}

.spec-metric-box:hover {
    border-color: #2563EB;
    background: #FFFFFF;
    box-shadow: 0 8px 20px -4px rgba(37, 99, 235, 0.12);
    transform: translateY(-2px);
}

.spec-metric-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.spec-metric-box:hover .spec-metric-icon {
    background: #2563EB;
    color: #FFFFFF;
    transform: scale(1.08);
}

/* Product Mini Card */
.product-mini-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-mini-card:hover {
    background: #FFFFFF;
    border-color: #2563EB;
    box-shadow: 0 8px 22px -4px rgba(37, 99, 235, 0.14);
    transform: translateY(-3px);
}

/* ==========================================================================
   SECTION 10 — SERVED B2B SECTORS LUXURY CARD STYLES
   ========================================================================== */

.b2b-sector-card {
    background: #FFFFFF;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-top: 3px solid transparent;
    border-radius: 1.25rem;
    padding: 24px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.b2b-sector-card:hover {
    border-color: rgba(37, 99, 235, 0.4);
    border-top-color: #2563EB;
    box-shadow: 0 20px 45px -10px rgba(37, 99, 235, 0.16);
    transform: translateY(-6px);
}

.b2b-sector-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.b2b-sector-card:hover .b2b-sector-icon-wrap {
    background: #2563EB;
    color: #FFFFFF;
    transform: scale(1.1) rotate(-4deg);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.b2b-sector-badge {
    background: rgba(37, 99, 235, 0.08);
    color: #2563EB;
    border: 1px solid rgba(37, 99, 235, 0.2);
    font-size: 0.76rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.b2b-sector-card:hover .b2b-sector-badge {
    background: #2563EB;
    color: #FFFFFF;
    border-color: #2563EB;
}

/* ==========================================================================
   SECTION 4 — PRODUCT UNIVERSE SEGMENT LUXURY CARD STYLES
   ========================================================================== */

.segment-card-luxury {
    background: #FFFFFF;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-top: 3px solid transparent;
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.segment-card-luxury:hover {
    border-color: rgba(37, 99, 235, 0.4);
    border-top-color: #2563EB;
    box-shadow: 0 22px 50px -10px rgba(37, 99, 235, 0.18);
    transform: translateY(-6px);
}

.segment-img-wrapper {
    position: relative;
    overflow: hidden;
}

.segment-floating-code {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(10, 37, 64, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    font-family: monospace;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.segment-floating-badge {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    color: #0A2540;
    font-size: 0.73rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(10, 37, 64, 0.15);
}

.segment-collection-pill {
    background: rgba(37, 99, 235, 0.06);
    color: #2563EB;
    border: 1px solid rgba(37, 99, 235, 0.15);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    transition: all 0.25s ease;
}

.segment-card-luxury:hover .segment-collection-pill {
    background: rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.3);
}

/* Browse Segment Button (Section 4) */
.btn-segment-browse {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1.25rem;
    margin-top: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #2563EB !important;
    background-color: #F0F6FF;
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: 50rem;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none !important;
}

.btn-segment-browse:hover {
    color: #FFFFFF !important;
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    border-color: #1D4ED8;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

.btn-segment-browse:hover i {
    transform: translateX(4px);
    color: #FFFFFF !important;
}

.btn-segment-browse i {
    transition: transform 0.2s ease, color 0.2s ease;
    color: #2563EB;
}

/* ==========================================================================
   SECTION 12 — INDUSTRY INSIGHTS & KNOWLEDGE BASE LUXURY STYLES
   ========================================================================== */

.insight-card-luxury {
    background: #FFFFFF;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-top: 3px solid transparent;
    border-radius: 1.25rem;
    padding: 24px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.insight-card-luxury:hover {
    border-color: rgba(37, 99, 235, 0.4);
    border-top-color: #2563EB;
    box-shadow: 0 20px 45px -10px rgba(37, 99, 235, 0.16);
    transform: translateY(-6px);
}

.insight-category-badge {
    background: rgba(37, 99, 235, 0.08);
    color: #2563EB;
    border: 1px solid rgba(37, 99, 235, 0.2);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
}

.insight-card-luxury:hover .insight-category-badge {
    background: #2563EB;
    color: #FFFFFF;
    border-color: #2563EB;
}

.insight-read-link {
    color: #2563EB;
    font-size: 0.82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    width: 100%;
    transition: all 0.3s ease;
}

.insight-card-luxury:hover .insight-read-link {
    color: #1E3A8A;
}

.insight-card-luxury:hover .insight-read-link i.bi-arrow-right {
    transform: translateX(4px);
}

/* ==========================================================================
   SECTION 11 — MANUFACTURING & FACILITY GALLERY LUXURY STYLES
   ========================================================================== */

.gallery-card-luxury {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(10, 37, 64, 0.08);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.gallery-card-luxury:hover {
    box-shadow: 0 22px 50px -10px rgba(37, 99, 235, 0.22);
    transform: translateY(-5px);
}

.gallery-floating-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(10, 37, 64, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    font-size: 0.73rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 30px;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.gallery-overlay-caption {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 37, 64, 0.9) 0%, rgba(10, 37, 64, 0.35) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    z-index: 4;
    transition: background 0.3s ease;
}

.gallery-card-luxury:hover .gallery-overlay-caption {
    background: linear-gradient(to top, rgba(10, 37, 64, 0.95) 0%, rgba(10, 37, 64, 0.5) 60%, transparent 100%);
}

.gallery-hover-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.gallery-card-luxury:hover .gallery-hover-btn {
    background: #2563EB;
    border-color: #3B82F6;
    transform: scale(1.1) rotate(45deg);
}

/* ==========================================================================
   SECTION 13 — FINAL RFQ CTA BANNER LUXURY STYLES
   ========================================================================== */

.cta-block-smh-luxury {
    background: linear-gradient(135deg, #0A2540 0%, #0F172A 50%, #1E3A8A 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.5rem;
    padding: 3.25rem 2.5rem;
    box-shadow: 0 25px 60px -15px rgba(10, 37, 64, 0.4), 0 0 30px rgba(37, 99, 235, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-block-smh-luxury::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, rgba(96, 165, 250, 0.05) 60%, transparent 80%);
    pointer-events: none;
}

/* ==========================================================================
   HEADER TOPBAR — GLOWING PREFIX DOTS & SOCIAL HANDLES LUXURY STYLES
   ========================================================================== */

.topbar-glow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #60A5FA;
    display: inline-block;
    box-shadow: 0 0 6px #60A5FA;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.topbar-item-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.25s ease;
}

.topbar-item-link:hover {
    color: #FFFFFF;
}

.topbar-item-link:hover .topbar-glow-dot {
    background: #38BDF8;
    transform: scale(1.6);
    box-shadow: 0 0 10px #38BDF8, 0 0 18px #60A5FA;
}

.topbar-social-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.75);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    text-decoration: none;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.topbar-social-btn .topbar-glow-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 5px;
    height: 5px;
    opacity: 0;
}

.topbar-social-btn:hover {
    transform: translateY(-2px);
    color: #FFFFFF;
}

.topbar-social-btn:hover .topbar-glow-dot {
    opacity: 1;
}

.topbar-social-btn.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    box-shadow: 0 0 12px rgba(24, 119, 242, 0.6);
}

.topbar-social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #e6683c;
    box-shadow: 0 0 12px rgba(228, 64, 95, 0.6);
}

.topbar-social-btn.twitter:hover {
    background: #000000;
    border-color: #38BDF8;
    color: #38BDF8;
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.6);
}

.topbar-social-btn.linkedin:hover {
    background: #0A66C2;
    border-color: #0A66C2;
    box-shadow: 0 0 12px rgba(10, 102, 194, 0.6);
}

.topbar-social-btn.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.6);
}

/* Luxury Footer Navigation Links */
.footer-nav-link {
    color: #94A3B8;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
}

.footer-nav-link:hover {
    color: #FFFFFF !important;
    transform: translateX(4px);
}

/* ==========================================================================
   ABOUT PAGE LUXURY DESIGN SYSTEM STYLES
   ========================================================================== */

.purpose-card-luxury {
    background: #FFFFFF;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-top: 3px solid transparent;
    border-radius: 1.25rem;
    padding: 2rem 1.75rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.04);
    height: 100%;
}

.purpose-card-luxury:hover {
    border-color: rgba(37, 99, 235, 0.4);
    border-top-color: #2563EB;
    box-shadow: 0 20px 45px -10px rgba(37, 99, 235, 0.18);
    transform: translateY(-6px);
}

.timeline-card-luxury {
    background: #FFFFFF;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-left: 4px solid #2563EB;
    border-radius: 1.25rem;
    padding: 1.75rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.04);
    height: 100%;
}

.timeline-card-luxury:hover {
    border-color: rgba(37, 99, 235, 0.5);
    border-left-color: #1D4ED8;
    box-shadow: 0 20px 45px -10px rgba(37, 99, 235, 0.18);
    transform: translateY(-4px);
}

.advantage-card-luxury {
    background: #FFFFFF;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-top: 3px solid transparent;
    border-radius: 1.25rem;
    padding: 1.75rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.04);
    height: 100%;
}

.advantage-card-luxury:hover {
    border-color: rgba(37, 99, 235, 0.4);
    border-top-color: #2563EB;
    box-shadow: 0 20px 45px -10px rgba(37, 99, 235, 0.18);
    transform: translateY(-6px);
}

/* ==========================================================================
   VERTICAL TIMELINE WITH GLOWING ANIMATIONS (ABOUT PAGE)
   ========================================================================== */

.vertical-timeline-container {
    max-width: 960px;
    margin: 0 auto;
}

/* Center Glowing Stem Line */
.vertical-timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: linear-gradient(180deg, #2563EB 0%, #60A5FA 50%, #1D4ED8 100%);
    transform: translateX(-50%);
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.4);
    z-index: 1;
}

@media (max-width: 767.98px) {
    .vertical-timeline-line {
        left: 20px;
    }
}

/* Timeline Item Row */
.vertical-timeline-item {
    z-index: 2;
}

/* Card Styling with Luxury Hover Glow */
.vertical-timeline-card {
    background: #FFFFFF;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-top: 3px solid #2563EB;
    border-radius: 1.25rem;
    padding: 1.75rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.05);
    position: relative;
}

.vertical-timeline-card:hover {
    border-color: rgba(37, 99, 235, 0.5);
    border-top-color: #1D4ED8;
    box-shadow: 0 20px 45px -10px rgba(37, 99, 235, 0.22), 0 0 20px rgba(37, 99, 235, 0.12);
    transform: translateY(-5px);
}

/* Center Glowing Node Icon Container */
.vertical-timeline-node {
    width: 60px;
    height: 60px;
    z-index: 5;
    margin: 0 auto;
}

.timeline-glowing-beacon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    border: 3px solid #FFFFFF;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: relative;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.6);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vertical-timeline-item:hover .timeline-glowing-beacon {
    transform: scale(1.25);
    background: linear-gradient(135deg, #3B82F6 0%, #1E3A8A 100%);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.85), 0 0 50px rgba(96, 165, 250, 0.5);
}

/* Sonar Pulse animation around the beacon */
.beacon-sonar-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid #60A5FA;
    animation: beaconPulse 2.5s infinite ease-out;
    pointer-events: none;
}

@keyframes beaconPulse {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* ==========================================
   PERFECTLY ALIGNED HORIZONTAL PROCESS FLOW
   ========================================== */
.horizontal-wave-process-wrapper {
    position: relative;
    padding: 1.5rem 0;
}

@media (min-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 auto;
        width: 20%;
    }
}

.horizontal-process-line {
    position: absolute;
    top: 60px;
    left: 8%;
    right: 8%;
    height: 4px;
    background: linear-gradient(90deg, #0A2540 0%, #2563EB 50%, #3B82F6 100%);
    border-radius: 4px;
    z-index: 1;
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.4);
    overflow: hidden;
}

.horizontal-process-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #FFFFFF, transparent);
    opacity: 0.6;
    animation: linePulse 3s linear infinite;
}

@keyframes linePulse {
    0% {
        transform: translateX(-100%);
    }

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

.horizontal-wave-card {
    border: 1px solid #E2E8F0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 2;
    background: #FFFFFF;
}

.horizontal-wave-card:hover {
    transform: translateY(-8px);
    border-color: #2563EB;
    box-shadow: 0 16px 36px rgba(37, 99, 235, 0.15), 0 0 25px rgba(37, 99, 235, 0.1) !important;
}

.wave-card-node-beacon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0A2540 0%, #2563EB 100%);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: relative;
    border: 3px solid #FFFFFF;
    box-shadow: 0 0 16px rgba(37, 99, 235, 0.45);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.horizontal-wave-card:hover .wave-card-node-beacon {
    transform: scale(1.18);
    background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
    box-shadow: 0 0 25px rgba(37, 99, 235, 0.75);
}

/* ==========================================================================
   PRODUCT SPECIFICATIONS PAGE ENHANCEMENTS
   ========================================================================== */
.sticky-product-gallery {
    position: sticky;
    top: 110px;
    z-index: 100;
}

.spec-quick-card {
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.spec-quick-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px -10px rgba(10, 37, 64, 0.12) !important;
}

.spec-card-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: #FFFFFF;
    box-shadow: 0 2px 6px rgba(10, 37, 64, 0.08);
    position: relative;
}

.spec-quick-card:hover .spec-card-icon {
    transform: scale(1.15) rotate(5deg);
    background-color: #2563EB !important;
    color: #FFFFFF !important;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.spec-table-row {
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.spec-table-row:hover {
    background-color: #EFF6FF !important;
}

/* ==========================================================================
   HEADER DESKTOP NAVIGATION LINK STYLING & ELECTRIC BLUE HOVER
   ========================================================================== */
.smh-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.85rem;
    color: #1E293B !important;
    font-size: 0.875rem;
    /* 14px */
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    letter-spacing: -0.01em;
}

.smh-nav-link:hover {
    color: #2563EB !important;
    /* Electric Blue on Hover */
    background-color: rgba(37, 99, 235, 0.08);
    /* Subtle Light Blue Tint */
    transform: translateY(-1px);
}

.smh-nav-link:hover i,
.smh-nav-link:hover svg {
    color: #2563EB !important;
    stroke: #2563EB !important;
}

.smh-nav-link.active {
    color: #2563EB !important;
    font-weight: 700;
    background-color: rgba(37, 99, 235, 0.1);
}

.smh-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 15%;
    right: 15%;
    height: 2.5px;
    background: linear-gradient(90deg, #2563EB 0%, #1D4ED8 100%);
    border-radius: 99px;
}

/* ==========================================================================
   DOMESTIC TRADE HUBS & CERTIFICATION BADGES ENHANCED HOVER EFFECTS
   ========================================================================== */
.hub-card {
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.hub-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(10, 37, 64, 0.15) !important;
}

.hub-card-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hub-card:hover .hub-card-icon {
    transform: scale(1.15) rotate(6deg);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
}

/* Certification Badges Cards */
.cert-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.cert-card:hover {
    transform: translateY(-6px);
    border-color: #2563EB !important;
    box-shadow: 0 16px 32px -10px rgba(37, 99, 235, 0.2) !important;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.cert-icon-box {
    width: 52px;
    height: 52px;
    margin: 0 auto 0.85rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.cert-card:hover .cert-icon-box {
    transform: scale(1.18) rotate(4deg);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

/* ==========================================================================
   GLOBAL EXPORT & LOGISTICS PAGE ENHANCED PREMIUM STYLES
   ========================================================================== */

/* Region Market Cards */
.export-region-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 1.75rem;
    transition: all 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.export-region-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0A2540 0%, #2563EB 50%, #60A5FA 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.export-region-card:hover {
    transform: translateY(-8px);
    border-color: #2563EB !important;
    box-shadow: 0 24px 48px -12px rgba(10, 37, 64, 0.16) !important;
}

.export-region-card:hover::before {
    opacity: 1;
}

.export-region-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.export-region-card:hover .export-region-icon {
    transform: scale(1.15) rotate(-6deg);
    background: #2563EB;
    color: #FFFFFF !important;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.port-manifest-tag {
    background: #F8FAFC;
    border: 1px dashed #CBD5E1;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    transition: all 0.3s ease;
}

.export-region-card:hover .port-manifest-tag {
    background: #F0F4F8;
    border-color: #93C5FD;
}

/* Incoterm Luxury Cards */
.incoterm-luxury-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    height: 100%;
}

.incoterm-luxury-card:hover {
    transform: translateY(-6px);
    border-color: #2563EB !important;
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.14) !important;
}

.incoterm-badge-glow {
    background: linear-gradient(135deg, #0A2540 0%, #1E3A8A 100%);
    color: #FFFFFF;
    font-family: monospace;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.85rem;
    border-radius: 99px;
    box-shadow: 0 4px 12px rgba(10, 37, 64, 0.2);
}

/* Cargo Ledger Cards */
.cargo-ledger-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.35s ease;
}

.cargo-ledger-card:hover {
    transform: translateY(-6px);
    border-color: #2563EB !important;
    box-shadow: 0 20px 40px -10px rgba(10, 37, 64, 0.12) !important;
}

/* Document Suite Cards */
.doc-suite-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.doc-suite-card:hover {
    background: #FFFFFF;
    transform: translateY(-4px);
    border-color: #2563EB !important;
    box-shadow: 0 14px 28px -8px rgba(37, 99, 235, 0.18) !important;
}

.doc-suite-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.doc-suite-card:hover .doc-suite-icon {
    transform: scale(1.12);
    background: #2563EB;
    color: #FFFFFF !important;
}

/* ==========================================================================
   FOOTER HEADINGS & MENU NAVIGATION LINKS
   ========================================================================== */
.footer-heading {
    color: #FFFFFF !important;
    font-size: 0.875rem;
    /* 14px */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.footer-heading-line {
    width: 14px;
    height: 2.5px;
    background: linear-gradient(90deg, #2563EB 0%, #60A5FA 100%);
    border-radius: 99px;
    display: inline-block;
}

.footer-nav-link {
    color: #94A3B8;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    font-weight: 500;
}

.footer-nav-link:hover {
    color: #60A5FA !important;
    transform: translateX(4px);
}

.footer-nav-link:hover i {
    color: #60A5FA !important;
}

.text-slate-200 {
    color: #E2E8F0 !important;
}

.text-slate-300 {
    color: #CBD5E1 !important;
}

.text-slate-400 {
    color: #94A3B8 !important;
}

/* Payload Specs Highlight Cards */
.payload-spec-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    transition: all 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(10, 37, 64, 0.04);
}

.payload-spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3.5px;
    background: linear-gradient(90deg, #2563EB 0%, #60A5FA 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.payload-spec-card:hover {
    transform: translateY(-8px);
    border-color: #2563EB !important;
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.16) !important;
}

.payload-spec-card:hover::before {
    opacity: 1;
}

.payload-spec-icon-box {
    width: 56px;
    height: 56px;
    margin: 0 auto;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(29, 78, 216, 0.15) 100%);
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.payload-spec-card:hover .payload-spec-icon-box {
    transform: scale(1.15) rotate(4deg);
    background: #2563EB;
    color: #FFFFFF !important;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* ==========================================================================
   SMH BRAND LOGO & HOVER DYNAMICS
   ========================================================================== */
.smh-brand-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.smh-brand-logo-img {
    display: block;
    width: auto;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.35s ease;
    transform-origin: center center;
    will-change: transform, filter;
}

/* Hover State Effects */
.smh-brand-logo-wrap:hover .smh-brand-logo-img,
.navbar-brand:hover .smh-brand-logo-img,
a:hover .smh-brand-logo-img {
    transform: scale(1.08) translateY(-2px);
    filter: drop-shadow(0 6px 14px rgba(37, 99, 235, 0.38));
}

/* Light Variant (Dark Backdrops like Footer & Admin) Hover State */
.smh-brand-logo-img.variant-light {
    filter: brightness(0) invert(1);
}

.smh-brand-logo-wrap:hover .smh-brand-logo-img.variant-light,
.navbar-brand:hover .smh-brand-logo-img.variant-light,
a:hover .smh-brand-logo-img.variant-light {
    transform: scale(1.08) translateY(-2px);
    filter: brightness(0) invert(1) drop-shadow(0 6px 16px rgba(255, 255, 255, 0.45));
}

/* ==========================================================================
   SMH B2B SECTOR SUPPLY CARDS (ULTRA-PREMIUM)
   ========================================================================== */
.smh-sector-card {
    position: relative;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(15, 23, 42, 0.75) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.45);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.smh-sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3.5px;
    background: linear-gradient(90deg, #2563EB 0%, #60A5FA 50%, #38BDF8 100%);
    opacity: 0.25;
    transition: opacity 0.35s ease, height 0.35s ease;
}

.smh-sector-card:hover {
    transform: translateY(-9px);
    border-color: rgba(96, 165, 250, 0.45) !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(15, 23, 42, 0.85) 100%);
    box-shadow: 0 26px 50px -12px rgba(37, 99, 235, 0.35), 0 0 25px rgba(37, 99, 235, 0.2) !important;
}

.smh-sector-card:hover::before {
    opacity: 1;
    height: 4.5px;
}

.smh-sector-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(29, 78, 216, 0.3) 100%);
    border: 1px solid rgba(96, 165, 250, 0.35);
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60A5FA;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.smh-sector-card:hover .smh-sector-icon-box {
    transform: scale(1.12) rotate(4deg);
    background: #2563EB;
    color: #FFFFFF !important;
    border-color: #60A5FA;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.45);
}

.smh-sector-card:hover .smh-sector-icon-box svg,
.smh-sector-card:hover .smh-sector-icon-box i {
    color: #FFFFFF !important;
}

.smh-sector-spec-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 7px 10px;
    font-size: 0.775rem;
    color: #E2E8F0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.smh-sector-card:hover .smh-sector-spec-item {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(96, 165, 250, 0.25);
}

.smh-sector-cta-btn {
    font-size: 0.785rem;
    font-weight: 700;
    color: #60A5FA;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.smh-sector-cta-btn:hover {
    background: #2563EB;
    color: #FFFFFF !important;
    border-color: #2563EB;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
    transform: translateY(-1px);
}

/* ==========================================================================
   SMH LUXURY TRANSLUCENT GLASSMORPHIC NAVBAR & INTERACTIVE HEADER
   ========================================================================== */
.smh-glass-navbar {
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.65);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.smh-glass-navbar.is-scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 12px 32px -8px rgba(10, 37, 64, 0.12), 0 2px 6px rgba(0, 0, 0, 0.04);
    border-bottom-color: rgba(226, 232, 240, 0.9);
}

/* Nav Links Micro-Interactions */
.smh-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 9999px;
    color: #1E293B;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.smh-nav-link:hover {
    color: #2563EB;
    background: rgba(37, 99, 235, 0.08);
    transform: translateY(-1.5px);
}

.smh-nav-link.active {
    color: #2563EB;
    background: rgba(37, 99, 235, 0.1);
    font-weight: 700;
}

.smh-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    border-radius: 9999px;
    background: #2563EB;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.5);
}

/* Quote Button Hover Glow */
.btn-smh-quote {
    background: linear-gradient(135deg, #0A2540 0%, #1E3A8A 100%);
    color: #FFFFFF;
    border-radius: 9999px;
    padding: 10px 24px;
    font-size: 0.825rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(10, 37, 64, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.btn-smh-quote:hover {
    background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

/* ==========================================================================
   SMH EXECUTIVE LEADERSHIP PROFILE CARDS (LIGHT & INTERACTIVE)
   ========================================================================== */
.smh-executive-card {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 10px 30px -10px rgba(10, 37, 64, 0.06), 0 2px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.smh-executive-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0A2540 0%, #2563EB 50%, #60A5FA 100%);
    opacity: 0.7;
    transition: opacity 0.35s ease, height 0.35s ease;
}

.smh-executive-card.ceo-card::before {
    background: linear-gradient(90deg, #1E3A8A 0%, #2563EB 50%, #38BDF8 100%);
}

.smh-executive-card:hover {
    transform: translateY(-8px);
    border-color: #93C5FD;
    box-shadow: 0 22px 45px -12px rgba(37, 99, 235, 0.16), 0 0 0 1px rgba(37, 99, 235, 0.12);
}

.smh-executive-card:hover::before {
    opacity: 1;
    height: 5px;
}

.smh-executive-avatar,
.smh-executive-portrait {
    width: 130px;
    height: 145px;
    border-radius: 18px;
    padding: 3px;
    background: linear-gradient(135deg, #0A2540 0%, #2563EB 100%);
    box-shadow: 0 10px 25px -5px rgba(10, 37, 64, 0.2);
    flex-shrink: 0;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.smh-executive-card.ceo-card .smh-executive-avatar,
.smh-executive-card.ceo-card .smh-executive-portrait {
    background: linear-gradient(135deg, #1E3A8A 0%, #0284C7 100%);
    box-shadow: 0 10px 25px -5px rgba(2, 132, 199, 0.25);
}

.smh-executive-card:hover .smh-executive-avatar,
.smh-executive-card:hover .smh-executive-portrait {
    transform: scale(1.04);
    box-shadow: 0 14px 30px -5px rgba(37, 99, 235, 0.35);
}

.smh-executive-avatar-inner,
.smh-executive-portrait-inner {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    background: #0A2540;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
}

.smh-executive-avatar-inner img,
.smh-executive-portrait-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.smh-executive-card:hover .smh-executive-avatar-inner img,
.smh-executive-card:hover .smh-executive-portrait-inner img {
    transform: scale(1.06);
}

.smh-quote-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ==========================================================================
   SMH GLOBAL BRAND PRELOADER
   ========================================================================== */
.smh-preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, #0F1D38 0%, #0A2540 50%, #061120 100%);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s ease;
    will-change: opacity, visibility;
    user-select: none;
    -webkit-user-select: none;
}

.smh-preloader-overlay.preloader-fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.smh-preloader-overlay.preloader-hidden {
    display: none !important;
}

.smh-preloader-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.smh-preloader-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.32) 0%, rgba(10, 37, 64, 0) 70%);
    border-radius: 50%;
    filter: blur(25px);
    pointer-events: none;
    animation: smhAuraPulse 3s ease-in-out infinite alternate;
}

.smh-preloader-logo-frame {
    position: relative;
    width: 112px;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.smh-preloader-ring-outer {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    animation: smhSpinReverse 10s linear infinite;
}

.smh-preloader-ring-middle {
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 2.5px solid transparent;
    border-top-color: #38BDF8;
    border-right-color: #2563EB;
    border-bottom-color: rgba(56, 189, 248, 0.2);
    animation: smhSpin 1.6s cubic-bezier(0.6, 0.05, 0.28, 0.95) infinite;
}

.smh-preloader-logo-inner {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.smh-preloader-logo-img {
    height: 46px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
    animation: smhLogoPulse 2.2s ease-in-out infinite alternate;
}

.smh-preloader-text-wrap {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.smh-preloader-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    color: #FFFFFF;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.smh-preloader-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.675rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: #94A3B8;
    margin-top: 6px;
    text-transform: uppercase;
}

.smh-preloader-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #38BDF8;
    box-shadow: 0 0 6px #38BDF8;
}

.smh-preloader-progress-track {
    width: 140px;
    height: 3px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 9999px;
    margin-top: 20px;
    overflow: hidden;
    position: relative;
}

.smh-preloader-progress-bar {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #2563EB 0%, #38BDF8 50%, #60A5FA 100%);
    border-radius: 9999px;
    animation: smhProgressSlide 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes smhSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes smhSpinReverse {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

@keyframes smhLogoPulse {
    0% { transform: scale(0.96); opacity: 0.92; }
    100% { transform: scale(1.05); opacity: 1; }
}

@keyframes smhAuraPulse {
    0% { transform: translate(-50%, -50%) scale(0.85); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.9; }
}

@keyframes smhProgressSlide {
    0% { left: -40%; width: 40%; }
    50% { left: 30%; width: 50%; }
    100% { left: 100%; width: 40%; }
}

/* ==========================================================================
   SMH LIVE WHATSAPP WIDGET & TABLE CHAT STYLES
   ========================================================================== */
.smh-status-pulse {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22C55E;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: smhPulseDot 1.8s infinite;
}

.smh-live-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22C55E;
    box-shadow: 0 0 5px rgba(34, 197, 94, 0.8);
}

@keyframes smhPulseDot {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* ==========================================================================
   SMH ADMIN SIDEBAR & NAVIGATION JUSTIFICATION
   ========================================================================== */
.admin-sidebar-scroll {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
}

.admin-sidebar-scroll::-webkit-scrollbar {
    width: 4px;
}

.admin-sidebar-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.admin-sidebar-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 9999px;
}

.admin-sidebar-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.35);
}

.admin-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 8px;
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 3px;
}

.admin-nav-item:hover {
    color: #FFFFFF !important;
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(2px);
}

.admin-nav-item.active {
    color: #FFFFFF !important;
    background: #2563EB !important;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.admin-nav-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 12px;
    color: inherit;
}

.admin-nav-icon i,
.admin-nav-icon svg {
    width: 17px !important;
    height: 17px !important;
}

/* ==========================================================================
   ADMIN TOPBAR & HEADER POLISH
   ========================================================================== */
.admin-top-header {
    height: 64px;
    min-height: 64px;
    background-color: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
}

.admin-sidebar-header {
    height: 64px;
    min-height: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-page-heading {
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: #0F172A;
}

.admin-engine-badge {
    background-color: #EFF6FF;
    color: #2563EB;
    border: 1px solid #DBEAFE;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.725rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.admin-engine-badge .pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #2563EB;
    animation: adminPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes adminPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

/* ==========================================================================
   LARAVEL PAGINATION & SVGS GLOBAL NORMALIZATION
   ========================================================================== */
nav[role="navigation"] svg,
.pagination svg,
.page-link svg,
.page-item svg {
    width: 1rem !important;
    height: 1rem !important;
    max-width: 16px !important;
    max-height: 16px !important;
    vertical-align: middle;
    display: inline-block;
}

.pagination {
    margin-bottom: 0;
    gap: 0.25rem;
}

.pagination .page-item .page-link {
    border-radius: 0.375rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #475569;
    border: 1px solid #E2E8F0;
    padding: 0.35rem 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    transition: all 0.15s ease-in-out;
}

.pagination .page-item.active .page-link {
    background-color: #2563EB !important;
    border-color: #2563EB !important;
    color: #FFFFFF !important;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.25);
}

.pagination .page-item .page-link:hover:not(.active) {
    background-color: #F1F5F9;
    color: #0F172A;
    border-color: #CBD5E1;
}

.pagination .page-item.disabled .page-link {
    color: #94A3B8;
    background-color: #F8FAFC;
    border-color: #E2E8F0;
}