/* HidroEkol Modern & Premium Brand Theme CSS - Bootstrap 5 */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@500;600;700;800;900&display=swap');

:root {
    /* Exact Logo Colors */
    --brand-blue: #005ea6;
    --brand-blue-dark: #004377;
    --brand-blue-light: #0077d4;
    --brand-orange: #f37021;
    --brand-orange-dark: #d85a0d;
    --brand-orange-light: #ff8843;
    
    --primary: var(--brand-blue);
    --primary-dark: var(--brand-blue-dark);
    --accent: var(--brand-orange);
    --accent-dark: var(--brand-orange-dark);
    
    --dark-navy: #0b1523;
    --dark-surface: #132238;
    --light-bg: #f8fafc;
    --light-card: #ffffff;
    --border-color: #e2e8f0;
    --border-light: #edf2f7;
    --text-main: #1e293b;
    --text-muted: #64748b;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 4px 15px rgba(11, 21, 35, 0.06);
    --shadow-hover: 0 14px 28px rgba(0, 94, 166, 0.14);
    --shadow-orange: 0 8px 20px rgba(243, 112, 33, 0.25);
}

html {
    overflow-x: clip;
    scroll-behavior: smooth;
}

body {
    overflow-x: clip;
    font-family: var(--font-body);
    background-color: #ffffff;
    color: var(--text-main);
    line-height: 1.6;
}

/* ELEGANT MODERN SCROLLBAR */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 5px;
    border: 2px solid #f1f5f9;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--brand-blue);
}

/* ===================================================
   STICKY HEADER (ALWAYS FIXED AT TOP ON WEB & MOBILE)
   =================================================== */
.header-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1040;
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.25s ease;
}

.header-wrapper.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

h1, h2, h3, h4, h5, h6, .heading-font {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-navy);
}

/* ===================================================
   PRELOADER (CINEMATIC VIDEO BACKGROUND & COLOR REVEAL)
   =================================================== */
#sitePreloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #060d17;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    overflow: hidden;
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.7s;
}

#sitePreloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    opacity: 0.5;
    filter: brightness(0.65) contrast(1.15);
}

.preloader-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(11, 21, 35, 0.5) 0%, rgba(6, 13, 23, 0.92) 100%),
                linear-gradient(180deg, rgba(0, 40, 71, 0.3) 0%, rgba(6, 13, 23, 0.8) 100%);
    z-index: 2;
}

.preloader-box {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 90%;
    max-width: 420px;
    padding: 40px 30px;
    background: rgba(11, 21, 35, 0.68);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.preloader-logo-container {
    position: relative;
    width: 240px;
    height: 65px;
    margin: 0 auto 25px auto;
}

/* Base Grayscale Logo (underneath) */
.preloader-logo-gray {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.25);
}

/* Colored Logo that fills over 4 seconds */
.preloader-logo-color {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    clip-path: inset(0 100% 0 0);
    animation: fillBrandLogo 3.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes fillBrandLogo {
    0% {
        clip-path: inset(0 100% 0 0);
        filter: drop-shadow(0 0 0 rgba(243, 112, 33, 0));
    }
    50% {
        clip-path: inset(0 45% 0 0);
        filter: drop-shadow(0 0 10px rgba(0, 94, 166, 0.5));
    }
    100% {
        clip-path: inset(0 0% 0 0);
        filter: drop-shadow(0 0 18px rgba(243, 112, 33, 0.4));
    }
}

/* Progress bar */
.preloader-progress-track {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin: 0 auto 12px auto;
    overflow: hidden;
    position: relative;
}

.preloader-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--brand-blue) 0%, var(--brand-orange) 100%);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(243, 112, 33, 0.8);
    animation: loadProgressBar 3.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes loadProgressBar {
    0% { width: 0%; }
    100% { width: 100%; }
}

.preloader-text {
    font-size: 0.78rem;
    letter-spacing: 2px;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
}

/* ===================================================
   HERO VIDEO SECTION
   =================================================== */
.hero-video-wrap {
    position: relative;
    min-height: 600px;
    background: #0b1523;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.65;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(11, 21, 35, 0.95) 0%, rgba(11, 21, 35, 0.82) 50%, rgba(0, 67, 119, 0.5) 100%);
    z-index: 2;
}

.hero-video-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    padding: 60px 0;
}

/* ===================================================
   TOPBAR
   =================================================== */
.topbar {
    background: var(--dark-navy);
    color: #94a3b8;
    font-size: 0.82rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.topbar a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}
.topbar a:hover {
    color: var(--brand-orange);
}
.topbar-catalog-btn {
    background: rgba(243, 112, 33, 0.15);
    color: #ff9b57 !important;
    border: 1px solid rgba(243, 112, 33, 0.35);
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.76rem;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}
.topbar-catalog-btn:hover {
    background: var(--brand-orange);
    color: #ffffff !important;
    border-color: var(--brand-orange);
}

/* ===================================================
   HEADER & MAIN
   =================================================== */
/* MODERN HEADER SEARCH PILL */
.header-search-form {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 1;
}

.header-search-wrap {
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border: 1.5px solid #e2e8f0;
    border-radius: 50px;
    padding: 3px 5px 3px 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

.header-search-wrap:focus-within {
    background: #ffffff;
    border-color: var(--brand-blue);
    box-shadow: 0 4px 15px rgba(0, 94, 166, 0.12), inset 0 0 0 1px var(--brand-blue);
}

.header-search-wrap .search-icon-left {
    color: #64748b;
    font-size: 0.88rem;
    margin-right: 6px;
    transition: color 0.2s ease;
}

.header-search-wrap:focus-within .search-icon-left {
    color: var(--brand-blue);
}

.header-search-input {
    border: none;
    background: transparent;
    font-size: 0.8rem;
    font-weight: 500;
    color: #1e293b;
    width: 135px;
    outline: none;
    transition: width 0.3s ease;
    padding: 3px 4px;
}

.header-search-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.header-search-wrap:focus-within .header-search-input {
    width: 185px;
}

@media (min-width: 1400px) {
    .header-search-input {
        width: 165px;
    }
    .header-search-wrap:focus-within .header-search-input {
        width: 220px;
    }
}

.main-navbar .nav-link {
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.2px !important;
    padding: 0.45rem 0.55rem !important;
    white-space: nowrap !important;
}

.header-action-btn {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    padding: 6px 12px !important;
}

/* NAV PILLS / MAP TABS CONTRAST FIX */
.nav-pills .nav-link {
    color: #334155;
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.nav-pills .nav-link.active {
    color: #ffffff !important;
    background-color: var(--brand-blue) !important;
    border-color: var(--brand-blue) !important;
    box-shadow: 0 4px 12px rgba(0, 94, 166, 0.25);
}

/* MOBILE NAVBAR COLLAPSE SCROLL & FULL ACCESSIBILITY */
@media (max-width: 1199px) {
    .navbar-collapse {
        max-height: calc(100vh - 90px) !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        padding-top: 15px !important;
        padding-bottom: 60px !important;
        border-top: 1px solid #e2e8f0;
        margin-top: 12px;
    }
    .navbar-collapse::-webkit-scrollbar {
        width: 5px;
    }
    .navbar-collapse::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 4px;
    }
    .navbar-collapse .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        max-width: 100% !important;
        box-shadow: none !important;
        border: 1px solid #e2e8f0 !important;
        background: #f8fafc !important;
        border-radius: 12px !important;
        padding: 12px !important;
        margin-top: 8px !important;
        margin-bottom: 12px !important;
        transform: none !important;
    }
    .mega-menu-wide {
        width: 100% !important;
        min-width: 100% !important;
    }
    .mega-menu-wide .border-end {
        border-right: none !important;
        border-bottom: 1px solid #e2e8f0 !important;
        padding-bottom: 15px !important;
        margin-bottom: 15px !important;
    }
    .header-action-group {
        width: 100% !important;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .header-search-wrap {
        width: 100% !important;
    }
    .header-search-input {
        width: 100% !important;
        flex-grow: 1;
    }
    .header-search-wrap:focus-within .header-search-input {
        width: 100% !important;
    }
    .header-btn-row {
        width: 100%;
        display: flex;
        gap: 10px;
    }
    .header-btn-row .header-action-btn {
        flex: 1 1 50%;
        height: 42px !important;
        padding: 0 16px !important;
        border-radius: 50px !important;
        font-size: 0.84rem !important;
        font-weight: 700 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }
}

.nav-pills .nav-link.active i {
    color: #ffffff !important;
}

.nav-pills .nav-link:not(.active):hover {
    background-color: #e2e8f0;
    color: var(--brand-blue);
}

.header-search-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--brand-blue);
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 4px;
}

.header-search-btn:hover {
    background: var(--brand-orange);
    transform: scale(1.06);
}

/* ===================================================
   ULTRA-PREMIUM CINEMATIC HERO & GLASSMORPHISM
   =================================================== */
.cinematic-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #060d17;
    color: #ffffff;
}

.cinematic-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    opacity: 0.65;
    filter: brightness(0.85) contrast(1.1);
}

.cinematic-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 30%, rgba(0, 94, 166, 0.35) 0%, transparent 60%),
                linear-gradient(180deg, rgba(6, 13, 23, 0.4) 0%, rgba(6, 13, 23, 0.85) 100%),
                linear-gradient(90deg, rgba(6, 13, 23, 0.95) 0%, rgba(6, 13, 23, 0.3) 100%);
    z-index: 2;
}

.cinematic-content {
    position: relative;
    z-index: 3;
    padding: 80px 0;
}

.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 24px;
}

.hero-pill-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--brand-orange);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(243, 112, 33, 0.7);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(243, 112, 33, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(243, 112, 33, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(243, 112, 33, 0); }
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin-bottom: 20px;
}

.hero-headline .gradient-text {
    background: linear-gradient(135deg, #ffffff 30%, #f37021 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    font-size: 1.18rem;
    color: #cbd5e1;
    line-height: 1.7;
    max-width: 620px;
    margin-bottom: 35px;
}

/* FLOATING METRICS GLASS CARDS */
.hero-glass-stats {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-box {
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(0, 94, 166, 0.2);
    border-color: rgba(0, 94, 166, 0.4);
    transform: translateY(-3px);
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.78rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* ===================================================
/* ===================================================
   HERO SLIDER - SPLIT MODERN THEME
   =================================================== */
.hero-slider-section {
    position: relative;
    background: #08121f;
}

.hero-split-slide {
    min-height: 520px;
    display: flex;
    align-items: center;
}

.slider-text-card {
    background: rgba(11, 21, 35, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    position: relative;
    z-index: 2;
}

.slider-photo-showcase {
    background: #081320;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    height: 460px;
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-photo-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: contrast(1.05) brightness(1.02);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-photo-showcase:hover img {
    transform: scale(1.03);
}

.slider-photo-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
    z-index: 1;
}

.slider-photo-badge {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-weight: 600;
    z-index: 2;
}

.slider-feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.slider-feature-pill {
    font-size: 0.78rem;
    font-weight: 600;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 4px 12px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
}

/* GLOBAL MANUFACTURER HERO SLIDER (BLUE ASCEND / ASC LUXURY STYLE) */
.hero-slider-section {
    background: radial-gradient(circle at 75% 45%, #0e2f57 0%, #081a33 50%, #030a14 100%) !important;
    position: relative;
    overflow: hidden;
    min-height: 620px;
}

/* Animated Floating Particles Canvas & Orbs */
.hero-ambient-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.35;
    pointer-events: none;
    animation: orbFloat 12s infinite alternate ease-in-out;
}

.orb-1 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, #0077cc 0%, rgba(0, 119, 204, 0) 70%);
    top: -50px;
    right: 15%;
    animation-duration: 14s;
}

.orb-2 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #f37021 0%, rgba(243, 112, 33, 0) 70%);
    bottom: -60px;
    left: 20%;
    animation-duration: 16s;
    animation-delay: -5s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #00d2ff 0%, rgba(0, 210, 255, 0) 70%);
    top: 40%;
    right: 45%;
    animation-duration: 10s;
    animation-delay: -2s;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(25px, -35px) scale(1.08); }
    100% { transform: translate(-20px, 25px) scale(0.95); }
}

.hero-dot-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    opacity: 0.45;
    pointer-events: none;
    z-index: 1;
    animation: gridDrift 40s linear infinite;
}

@keyframes gridDrift {
    0% { background-position: 0 0; }
    100% { background-position: 600px 300px; }
}

.hero-angle-stripes {
    position: absolute;
    top: -80px;
    right: 36%;
    width: 140px;
    height: 900px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%);
    transform: rotate(24deg);
    pointer-events: none;
    border-left: 2px solid rgba(255, 255, 255, 0.14);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 1;
}

.hero-manufacturer-slide {
    min-height: 580px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-eyebrow-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(243, 112, 33, 0.15);
    border: 1px solid rgba(243, 112, 33, 0.45);
    color: #ffaa6b;
    font-size: 0.84rem;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-main-title {
    font-size: clamp(1.85rem, 3.2vw, 2.75rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.6px;
    color: #ffffff;
}

.text-gradient-orange {
    background: linear-gradient(90deg, #ffb366 0%, #f37021 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 550px;
}

/* Smooth Cinematic Slide Transitions (No Text Collision) */
.carousel-fade .carousel-item {
    opacity: 0;
    transition-duration: 0.85s;
    transition-property: opacity;
    z-index: 1;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
    z-index: 2;
}

.carousel-fade .carousel-item-start.active,
.carousel-fade .carousel-item-end.active {
    opacity: 0;
}

.carousel-item.active .hero-eyebrow-badge {
    animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.carousel-item.active .hero-main-title {
    animation: fadeInUp 0.8s 0.12s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.carousel-item.active .hero-subtext {
    animation: fadeInUp 0.8s 0.22s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.carousel-item.active .hero-action-buttons {
    animation: fadeInUp 0.8s 0.32s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.carousel-item.active .hero-product-stage {
    animation: fadeInScale 0.9s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.94) translateY(12px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Luxury 4K Product Showcase Stage */
.hero-product-stage {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 420px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.18);
    background: #061426;
}

.hero-stage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-product-stage:hover .hero-stage-img {
    transform: scale(1.05);
}

/* Floating Tech Spec Badges */
.hero-floating-badge {
    position: absolute;
    background: rgba(11, 25, 46, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 35px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6);
    z-index: 5;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-floating-badge.badge-top-left {
    top: 15px;
    left: 15px;
    animation: floatAnim 4.5s ease-in-out infinite alternate;
}

.hero-floating-badge.badge-bottom-right {
    bottom: 15px;
    right: 15px;
    animation: floatAnim 4.5s ease-in-out infinite alternate;
    animation-delay: 2.2s;
}

@keyframes floatAnim {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-10px); }
}

/* Modern Carousel Controls & Indicators */
.carousel-control-modern {
    width: 54px;
    height: 54px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(12, 32, 58, 0.88);
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0.95;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 50 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.carousel-control-modern:hover {
    background: var(--brand-orange);
    border-color: #ffffff;
    color: #ffffff !important;
    opacity: 1;
    transform: translateY(-50%) scale(1.14);
    box-shadow: 0 14px 35px rgba(243, 112, 33, 0.6);
}

.carousel-control-modern i {
    color: #ffffff !important;
    font-size: 1.35rem;
    line-height: 1;
    display: block;
}

.carousel-control-prev.carousel-control-modern {
    left: 25px;
}

.carousel-control-next.carousel-control-modern {
    right: 25px;
}

/* Indicators */
.carousel-indicators-modern {
    position: absolute;
    bottom: 25px;
    margin-bottom: 0;
    z-index: 40 !important;
    pointer-events: auto !important;
    display: flex;
    gap: 12px;
}

.carousel-indicators-modern button {
    width: auto !important;
    height: auto !important;
    text-indent: 0 !important;
    background: rgba(14, 30, 52, 0.85) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 30px !important;
    padding: 6px 16px !important;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0.8;
}

.carousel-indicators-modern button span {
    color: var(--brand-orange);
    font-weight: 900;
}

.carousel-indicators-modern button em {
    font-style: normal;
}

.carousel-indicators-modern button.active {
    background: #ffffff !important;
    color: #0c1a2e !important;
    border-color: #ffffff !important;
    opacity: 1 !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-indicators-modern button.active span {
    color: #ffffff !important;
    background: rgba(0, 0, 0, 0.22) !important;
    padding: 2px 7px !important;
    border-radius: 8px !important;
    font-weight: 900 !important;
}
/* CAD TECHNICAL BLUEPRINT PRODUCT SHOWCASE (PREMIUM LUXURY REDESIGN) */
.cad-showcase-section {
    background: #f4f8fc;
    background-image: linear-gradient(rgba(0, 94, 166, 0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0, 94, 166, 0.05) 1px, transparent 1px);
    background-size: 28px 28px;
    border-top: 1px solid #dce8f5;
    border-bottom: 1px solid #dce8f5;
    position: relative;
    overflow: hidden;
}

.cad-showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 94, 166, 0.1);
    color: #005ea6;
    border: 1px solid rgba(0, 94, 166, 0.25);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.cad-showcase-title {
    color: #0c2340;
    font-weight: 900;
    letter-spacing: -0.5px;
    font-size: clamp(1.4rem, 2.3vw, 2.1rem);
    line-height: 1.25;
    text-transform: uppercase;
    text-wrap: balance;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cad-showcase-desc {
    color: #475f7b;
    font-size: 1.02rem;
    line-height: 1.8;
    max-width: 960px;
    margin: 0 auto;
}

/* Luxury CAD Engineering Cards */
.cad-product-card {
    background: #ffffff;
    border: 1px solid rgba(14, 41, 75, 0.12);
    border-radius: 20px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 12px 35px rgba(12, 35, 64, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.cad-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #005ea6, #f37021);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cad-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(0, 94, 166, 0.14);
    border-color: rgba(0, 94, 166, 0.3);
}

.cad-product-card:hover::before {
    opacity: 1;
}

.cad-card-tag {
    align-self: flex-start;
    font-size: 0.72rem;
    font-weight: 700;
    color: #005ea6;
    background: #eaf3fa;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 12px;
}

.cad-product-img-wrap {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0 16px 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cad-product-img-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 94, 166, 0.08));
    transition: transform 0.4s ease;
}

.cad-product-card:hover .cad-product-img-wrap img {
    transform: scale(1.08);
}

.cad-product-btn {
    width: 100%;
    background: #0e294b;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px 14px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(14, 41, 75, 0.2);
}

.cad-product-card:hover .cad-product-btn {
    background: var(--brand-orange);
    box-shadow: 0 6px 18px rgba(243, 112, 33, 0.4);
    color: #ffffff;
}

.cad-product-btn i {
    transition: transform 0.3s ease;
}

.cad-product-card:hover .cad-product-btn i {
    transform: translateX(4px);
}

.cad-product-card:hover .cad-product-badge {
    background: var(--brand-orange, #f37021) !important;
    box-shadow: 0 8px 20px rgba(243, 112, 33, 0.35);
}

.cad-product-img-wrap {
    height: 165px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: transform 0.35s ease;
}

.cad-product-img-wrap img {
    max-height: 150px;
    max-width: 90%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(14, 41, 75, 0.08));
}

.cad-product-badge {
    background: #0e294b;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 800;
    font-style: italic;
    padding: 8px 22px;
    border-radius: 4px;
    display: inline-block;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(14, 41, 75, 0.25);
    white-space: nowrap;
}

@media (max-width: 767.98px) {
    .cad-product-card {
        padding: 14px 8px !important;
        border-radius: 16px !important;
    }
    .cad-card-tag {
        font-size: 0.65rem !important;
        padding: 3px 6px !important;
        margin-bottom: 8px !important;
        letter-spacing: -0.2px !important;
    }
    .cad-product-img-wrap {
        height: 100px !important;
        margin-bottom: 10px !important;
    }
    .cad-product-img-wrap img {
        max-height: 85px !important;
    }
    .cad-product-btn {
        font-size: 0.72rem !important;
        padding: 6px 6px !important;
        border-radius: 8px !important;
        gap: 3px !important;
        line-height: 1.2 !important;
        text-align: center !important;
        min-height: 36px !important;
    }
    .cad-product-btn span {
        font-weight: 700 !important;
    }
    .cad-product-btn i {
        font-size: 0.85rem !important;
        flex-shrink: 0 !important;
    }
}

.light-metric-box {
    padding: 12px 14px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.25s ease;
}

.light-metric-box:hover {
    background: #ffffff;
    border-color: var(--brand-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 94, 166, 0.08);
}

.light-metric-val {
    font-size: 1.6rem;
    font-weight: 900;
    color: #0b1523;
    line-height: 1;
    margin-bottom: 4px;
}

.light-metric-val .unit {
    font-size: 0.85rem;
    font-weight: 700;
}

.light-metric-lbl {
    font-size: 0.74rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-weight: 600;
}

/* CAROUSEL CONTROLS & LIGHT INDICATORS */
.carousel-indicators-light {
    bottom: 18px;
    margin-bottom: 0;
    gap: 8px;
    z-index: 10;
}

.carousel-indicators-light button {
    width: auto !important;
    height: auto !important;
    text-indent: 0 !important;
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 50px !important;
    padding: 6px 16px !important;
    color: #475569 !important;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    opacity: 0.95;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
}

.carousel-indicators-light button span {
    color: var(--brand-orange);
    font-weight: 800;
}

.carousel-indicators-light button em {
    font-style: normal;
}

.carousel-indicators-light button.active {
    background: var(--brand-blue) !important;
    color: #ffffff !important;
    border-color: var(--brand-blue) !important;
    box-shadow: 0 6px 18px rgba(0, 94, 166, 0.35);
}

.carousel-indicators-light button.active span {
    color: #ffd166;
}

.carousel-control-light-arrow {
    width: 44px;
    height: 44px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    color: #0b1523;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 0.85;
    transition: all 0.25s ease;
}

.carousel-control-light-arrow:hover {
    background: var(--brand-blue);
    color: #ffffff;
    border-color: var(--brand-blue);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

/* ===================================================
   GRID-2 VIDEO SECTION
   =================================================== */
.video-grid-box {
    box-shadow: 0 20px 45px rgba(11, 21, 35, 0.15);
    border-color: #cbd5e1 !important;
}

.video-grid-top-bar {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.video-grid-bottom-bar {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
}

.metric-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.live-rec-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff3b30;
    box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7);
    animation: pulseRed 1.5s infinite;
}

@keyframes pulseRed {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 59, 48, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
}

.video-btn-circle {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 21, 35, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    transition: all 0.2s ease;
}

.video-btn-circle:hover {
    background: var(--brand-blue) !important;
    border-color: var(--brand-blue-light) !important;
    transform: scale(1.08);
}

/* ===================================================
   MODERN MANUFACTURING PILLARS
   =================================================== */
.modern-pillar-card {
    background: #ffffff;
    border: 1px solid #e2e8f0 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(11, 21, 35, 0.09) !important;
    border-color: #cbd5e1 !important;
}

.pillar-accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.pillar-icon-badge {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===================================================
   5-PRODUCT SPOTLIGHT CARDS
   =================================================== */
.product-spotlight-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid #e2e8f0 !important;
}

.product-spotlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 94, 166, 0.12) !important;
    border-color: var(--brand-blue) !important;
}

.spotlight-img-wrap {
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.spotlight-product-img {
    max-height: 140px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-spotlight-card:hover .spotlight-product-img {
    transform: scale(1.06);
}

.spotlight-badge-left {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    z-index: 2;
}

.spotlight-badge-right {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.68rem;
    font-weight: 700;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 2px 8px;
    border-radius: 50px;
    z-index: 2;
}

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

.product-code-tag {
    font-size: 0.74rem;
    color: #64748b;
}

.spotlight-product-title {
    line-height: 1.35;
    min-height: 2.7em;
}

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===================================================
   CATALOG HUB TABS
   =================================================== */
.catalog-hub-nav .nav-link {
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #e2e8f0;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

.catalog-hub-nav .nav-link:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.catalog-hub-nav .nav-link.active {
    background: var(--brand-blue) !important;
    color: #ffffff !important;
    border-color: var(--brand-blue) !important;
    box-shadow: 0 6px 20px rgba(0, 94, 166, 0.3);
}

@media (max-width: 991px) {
    .video-player-frame {
        height: 380px;
    }
    .slide-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .video-player-frame {
        height: 240px;
    }
    .slide-title {
        font-size: 1.65rem !important;
    }
    .slide-desc {
        font-size: 0.92rem !important;
    }
    .carousel-indicators-modern {
        display: none;
    }
}
        margin-bottom: 22px;
        color: #cbd5e1;
    }
    .cinematic-content .d-flex.flex-wrap.gap-3 {
        flex-direction: column;
        gap: 10px !important;
    }
    .cinematic-content .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 16px !important;
        font-size: 0.86rem !important;
        border-radius: 10px !important;
    }
    /* MOBILE GLOBAL BUTTON SIZE SCALING */
    .btn-lg {
        padding: 9px 16px !important;
        font-size: 0.85rem !important;
        border-radius: 10px !important;
    }
    .btn {
        font-size: 0.82rem;
    }
    .hero-glass-stats {
        margin-top: 15px;
        padding: 18px 16px;
        border-radius: 16px;
    }
    .hero-glass-stats h5 {
        font-size: 1.05rem;
    }
    .stat-number {
        font-size: 1.45rem;
    }
    .stat-label {
        font-size: 0.72rem;
    }
}
/* ===================================================
   MODERN BREADCRUMB BAR (LUXURY PILL STYLE)
   =================================================== */
.modern-breadcrumb-bar {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 0;
    margin-top: 22px;
    margin-bottom: 8px;
}

.modern-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.86rem;
}

.modern-breadcrumb li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
}

.modern-breadcrumb li a {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 6px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.modern-breadcrumb li a:hover {
    color: var(--brand-blue);
    border-color: var(--brand-blue);
    background: #f0f7ff;
    transform: translateY(-1px);
}

.modern-breadcrumb .separator {
    color: #94a3b8;
    font-size: 0.75rem;
}

.modern-breadcrumb .active-item {
    font-weight: 700;
    color: #0f172a;
    padding: 4px 12px;
    background: rgba(0, 94, 166, 0.08);
    border: 1px solid rgba(0, 94, 166, 0.2);
    border-radius: 6px;
    max-width: none;
    white-space: normal;
    display: inline-block;
    line-height: 1.4;
}

/* ===================================================
   ULTRA-LUXURY INNER PAGE HERO BANNER
   =================================================== */
.page-hero-banner {
    position: relative;
    background: radial-gradient(circle at 85% 30%, rgba(0, 94, 166, 0.4) 0%, transparent 60%),
                linear-gradient(135deg, #070e18 0%, #002847 60%, #004377 100%);
    padding: 30px 0;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.page-hero-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(243, 112, 33, 0.6) 50%, transparent 100%);
}

.page-hero-title {
    font-size: clamp(1.1rem, 1.6vw, 1.45rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
    line-height: 1.35;
    max-width: 900px;
}

.page-hero-subtitle {
    font-size: 0.86rem;
    color: #94a3b8;
    margin-bottom: 0;
    max-width: 680px;
    line-height: 1.45;
}

/* DARK BREADCRUMB PILLS */
.modern-breadcrumb-dark {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
}

.modern-breadcrumb-dark li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.5);
}

.modern-breadcrumb-dark li a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.modern-breadcrumb-dark li a:hover {
    color: #ffffff;
    background: rgba(0, 94, 166, 0.4);
    border-color: rgba(0, 94, 166, 0.6);
    transform: translateY(-1px);
}

.modern-breadcrumb-dark .separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
}

.modern-breadcrumb-dark .active-item {
    font-weight: 700;
    color: #ffffff;
    padding: 6px 14px;
    background: rgba(243, 112, 33, 0.18);
    border: 1px solid rgba(243, 112, 33, 0.4);
    border-radius: 8px;
}

@media (max-width: 767.98px) {
    .modern-breadcrumb-dark {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        gap: 4px !important;
        padding: 0 !important;
        margin-top: 8px !important;
        font-size: 0.72rem !important;
        line-height: 1.4 !important;
    }
    .modern-breadcrumb-dark li {
        gap: 3px !important;
        display: inline-flex !important;
        align-items: center !important;
    }
    .modern-breadcrumb-dark li a,
    .modern-breadcrumb-dark .active-item {
        padding: 3px 8px !important;
        font-size: 0.70rem !important;
        font-weight: 600 !important;
        border-radius: 6px !important;
        max-width: none !important;
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: clip !important;
        display: inline-flex !important;
        text-align: left !important;
        line-height: 1.35 !important;
    }
    .modern-breadcrumb-dark .separator {
        font-size: 0.60rem !important;
        opacity: 0.4 !important;
        margin: 0 2px !important;
    }
}

/* MEGA MENU (CLEAN & NON-TRUNCATING) */
.mega-menu-wide {
    width: 960px !important;
    max-width: 95vw !important;
    border-radius: var(--radius-lg) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12) !important;
    padding: 16px !important;
}

.mega-menu-wide .dropdown-item {
    white-space: normal !important;
    text-overflow: clip !important;
    overflow: visible !important;
    font-size: 0.83rem !important;
    line-height: 1.35 !important;
    padding: 6px 8px !important;
    border-radius: 6px !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 6px !important;
}

.mega-menu-wide .dropdown-item:hover {
    background: #f0f7ff !important;
    color: var(--brand-blue) !important;
}

/* ===================================================
   HEADER & MAIN NAVBAR (FIXED STICKY HEADER)
   =================================================== */
.header-wrapper {
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1050 !important;
    transition: all 0.3s ease;
}

.main-navbar {
    padding: 10px 0;
    background: transparent !important;
}

.navbar-brand img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
    color: #1e293b !important;
    padding: 12px 14px !important;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--brand-blue) !important;
}

.nav-link.active {
    color: var(--brand-blue) !important;
}

/* SPECIAL HIGHLIGHTED MENUS */
.nav-item-urunler .nav-link {
    color: #0f172a !important;
    font-weight: 800;
}
.nav-item-urunler .nav-link:hover {
    color: var(--brand-orange) !important;
}

/* ECOLEPARTS EXACT LOGO BLUE HIGHLIGHT */
.nav-item-ecoleparts .nav-link {
    color: var(--brand-blue) !important;
    font-weight: 900 !important;
    position: relative;
}
.nav-item-ecoleparts .nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 14px;
    right: 14px;
    height: 3px;
    background-color: var(--brand-blue);
    border-radius: 2px;
}

/* DROPDOWN & MEGA MENU */
.dropdown-menu {
    border: 1px solid var(--border-color);
    box-shadow: 0 12px 35px rgba(11, 21, 35, 0.12);
    border-radius: var(--radius-md);
    padding: 10px;
    animation: fadeInMenu 0.2s ease;
}

@keyframes fadeInMenu {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
    font-size: 0.88rem;
    font-weight: 600;
    color: #334155;
    padding: 9px 14px;
    border-radius: 6px;
    transition: all 0.15s ease;
}
.dropdown-item:hover {
    background-color: #f0f7ff;
    color: var(--brand-blue);
    transform: translateX(4px);
}

.mega-menu-wide {
    width: 760px;
    max-width: 90vw;
    padding: 20px;
}
.mega-menu-header {
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 12px;
    margin-bottom: 14px;
}

/* ===================================================
   BUTTONS
   =================================================== */
.btn-primary {
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
    color: #ffffff;
    font-weight: 700;
    border-radius: var(--radius-sm);
    padding: 10px 22px;
    transition: all 0.2s ease;
}
.btn-primary:hover {
    background-color: var(--brand-blue-dark);
    border-color: var(--brand-blue-dark);
    box-shadow: 0 6px 18px rgba(0, 94, 166, 0.25);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-orange {
    background: linear-gradient(135deg, var(--brand-orange) 0%, #e65e0b 100%);
    border: none;
    color: #ffffff;
    font-weight: 700;
    border-radius: var(--radius-sm);
    padding: 10px 22px;
    box-shadow: var(--shadow-orange);
    transition: all 0.2s ease;
}
.btn-orange:hover {
    background: linear-gradient(135deg, #e65e0b 0%, #cc5106 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(243, 112, 33, 0.35);
}

.btn-outline-primary {
    color: var(--brand-blue);
    border-color: var(--brand-blue);
    font-weight: 700;
    border-radius: var(--radius-sm);
}
.btn-outline-primary:hover {
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
    color: #ffffff;
}

.btn-outline-orange {
    color: var(--brand-orange);
    border-color: var(--brand-orange);
    font-weight: 700;
    border-radius: var(--radius-sm);
}
.btn-outline-orange:hover {
    background-color: var(--brand-orange);
    border-color: var(--brand-orange);
    color: #ffffff;
}

/* ===================================================
   HERO BANNER
   =================================================== */
.hero-slider {
    background: var(--dark-navy);
}
.hero-slide {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(11, 21, 35, 0.95) 0%, rgba(11, 21, 35, 0.8) 55%, rgba(11, 21, 35, 0.45) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    padding: 50px 0;
}
.hero-badge {
    display: inline-block;
    background: rgba(243, 112, 33, 0.2);
    border: 1px solid rgba(243, 112, 33, 0.5);
    color: #ff9b57;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}
.hero-desc {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 32px;
    max-width: 620px;
}

/* ===================================================
   CARDS & SECTIONS
   =================================================== */
.section-py {
    padding: 70px 0;
}
.section-subtitle {
    display: inline-block;
    color: var(--brand-orange);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--dark-navy);
    letter-spacing: -0.5px;
}
.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* CATEGORY CARD */
.category-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-card);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--brand-blue);
}
.category-img-wrap {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 10px;
}
.category-img-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.category-card:hover .category-img-wrap img {
    transform: scale(1.08);
}
.category-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 8px;
    line-height: 1.35;
}

/* SHELF CARD (ECOLEPARTS) */
.shelf-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 18px 14px;
    text-align: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}
.shelf-card:hover {
    background: #f0f7ff;
    border-color: var(--brand-blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 94, 166, 0.12);
    color: var(--brand-blue);
}
.shelf-icon {
    width: 44px;
    height: 44px;
    background: #e0f0ff;
    color: var(--brand-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px auto;
    font-size: 1.25rem;
    transition: all 0.2s ease;
}
.shelf-card:hover .shelf-icon {
    background: var(--brand-blue);
    color: #ffffff;
}
.shelf-title {
    font-weight: 700;
    font-size: 0.92rem;
    margin: 0;
}

/* PRODUCT CARD */
.product-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-card);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: #b0d4f1;
}
.product-img-box {
    height: 210px;
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    position: relative;
}
.product-img-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.product-card:hover .product-img-box img {
    transform: scale(1.06);
}
.product-badge-blue {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
    background: var(--brand-blue);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0, 94, 166, 0.3);
    pointer-events: none;
    white-space: nowrap;
    line-height: 1.2;
}
.product-badge-orange {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
    background: var(--brand-orange);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(243, 112, 33, 0.3);
    pointer-events: none;
    white-space: nowrap;
    line-height: 1.2;
}
.product-body {
    padding: 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* PRODUCT TABS (MOBILE & DESKTOP ULTRA-CLEAN) */
.product-tabs-wrapper .nav-tabs {
    border-bottom: 2px solid #e2e8f0 !important;
    gap: 8px;
}
.product-tabs-wrapper .nav-tabs .nav-link {
    color: #64748b;
    border: none !important;
    border-bottom: 3px solid transparent !important;
    transition: all 0.2s ease;
    border-radius: 8px 8px 0 0 !important;
}
.product-tabs-wrapper .nav-tabs .nav-link.active {
    color: var(--brand-blue) !important;
    background: #f0f7ff !important;
    border-bottom: 3px solid var(--brand-blue) !important;
}
@media (max-width: 768px) {
    .product-tabs-wrapper .nav-tabs .nav-link {
        font-size: 0.88rem !important;
        padding: 10px 14px !important;
    }
}
.product-code {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--brand-orange);
    margin-bottom: 4px;
}
.product-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.35;
    color: var(--dark-navy);
}
.product-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}
.product-title a:hover {
    color: var(--brand-blue);
}

/* SERVICE CARDS */
.service-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-card);
    height: 100%;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--brand-blue);
}
.service-icon-wrap {
    width: 60px;
    height: 60px;
    background: #e6f1fb;
    color: var(--brand-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 20px;
    transition: all 0.25s ease;
}
.service-card:hover .service-icon-wrap {
    background: var(--brand-blue);
    color: #ffffff;
}

/* CTA BANNER */
.cta-banner {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--brand-blue-dark) 100%);
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    box-shadow: 0 15px 35px rgba(0, 67, 119, 0.25);
    border-left: 6px solid var(--brand-orange);
}

/* ===================================================
   MODERN & LUXURY INDUSTRIAL FOOTER
   =================================================== */
.modern-footer {
    background: radial-gradient(circle at 10% 20%, #112038 0%, #08101d 100%);
    color: #94a3b8;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.footer-top-cta {
    background: linear-gradient(135deg, rgba(0, 94, 166, 0.15) 0%, rgba(243, 112, 33, 0.15) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px 0;
}

.footer-brand-logo {
    background: #ffffff;
    padding: 10px 18px;
    border-radius: var(--radius-md);
    display: inline-block;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.footer-title {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 38px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-orange) 0%, var(--brand-blue) 100%);
    border-radius: 2px;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-nav a:hover {
    color: var(--brand-orange);
    transform: translateX(5px);
}

.footer-contact-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    margin-bottom: 12px;
    transition: all 0.25s ease;
}

.footer-contact-item:hover {
    background: rgba(0, 94, 166, 0.12);
    border-color: rgba(0, 94, 166, 0.4);
    transform: translateY(-2px);
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.25s ease;
}

.footer-social-btn:hover {
    background: var(--brand-blue);
    color: #ffffff;
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 6px 16px rgba(0, 94, 166, 0.4);
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    font-size: 0.82rem;
    color: #94a3b8;
}

.footer-bottom-links {
    font-size: 0.8rem;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer-bottom-bar {
        padding: 20px 15px 85px 15px !important; /* Generous clearance so floating WhatsApp & scroll-to-top never block text */
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
        gap: 8px 10px !important;
        margin-top: 4px;
    }
    .footer-bottom-links a {
        font-size: 0.76rem;
        background: rgba(255, 255, 255, 0.06);
        padding: 5px 10px;
        border-radius: 6px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: inline-block;
    }
    .footer-bottom-links a:hover {
        background: rgba(0, 94, 166, 0.35);
        color: #fff;
        border-color: rgba(0, 94, 166, 0.6);
    }
}

/* BRAND LOGO CARDS (SINGLE PERFECT ROW - PREMIUM HD & ENLARGED) */
.brand-grid-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    align-items: center;
    width: 100%;
}

.brand-logo-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 100%;
    min-width: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.brand-logo-card img {
    max-height: 48px;
    max-width: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.brand-logo-card:hover {
    border-color: var(--brand-blue);
    box-shadow: 0 8px 22px rgba(0, 94, 166, 0.15);
    transform: translateY(-3px);
}

.brand-logo-card:hover img {
    transform: scale(1.06);
}

@media (max-width: 991px) {
    .brand-grid-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    .brand-grid-row {
        grid-template-columns: repeat(2, 1fr);
    }
}
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 52px;
    height: 52px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    font-size: 26px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

/* SCROLL TO TOP BUTTON (BOTTOM RIGHT) */
.scroll-top-btn {
    position: fixed !important;
    bottom: 24px !important;
    right: 24px !important;
    width: 48px !important;
    height: 48px !important;
    background: linear-gradient(135deg, #0f2b48 0%, #004377 100%) !important;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    text-align: center !important;
    font-size: 20px !important;
    box-shadow: 0 6px 22px rgba(15, 43, 72, 0.45) !important;
    z-index: 9999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(20px) scale(0.9) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.scroll-top-btn.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
}
.scroll-top-btn:hover {
    background: linear-gradient(135deg, #f37021 0%, #ff8c42 100%) !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
    transform: translateY(-4px) scale(1.08) !important;
    box-shadow: 0 10px 28px rgba(243, 112, 33, 0.5) !important;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 18px !important;
        left: 16px !important;
        width: 46px !important;
        height: 46px !important;
        font-size: 24px !important;
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5) !important;
        z-index: 9999 !important;
    }
    .scroll-top-btn {
        bottom: 18px !important;
        right: 16px !important;
        width: 46px !important;
        height: 46px !important;
        font-size: 20px !important;
        box-shadow: 0 4px 16px rgba(15, 43, 72, 0.5) !important;
        z-index: 9999 !important;
    }
}

/* ADMIN PANEL */
.admin-sidebar {
    width: 260px;
    background: var(--dark-navy);
    color: #cbd5e1;
    min-height: 100vh;
}
.admin-sidebar a {
    color: #94a3b8;
    text-decoration: none;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}
.admin-sidebar a:hover, .admin-sidebar a.active {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-left-color: var(--brand-orange);
}
.admin-header {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 14px 28px;
}
.stat-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-card);
}

/* ===================================================
   360° HYDRAULIC PUMP COMPONENT ANATOMY
   =================================================== */
.anatomy-viewer-box {
    background: #f8fafc;
    border: 1px solid #cbd5e1 !important;
}

.anatomy-hotspot {
    position: absolute;
    width: 38px;
    height: 38px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--brand-orange);
    border: 2px solid #ffffff;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(243, 112, 33, 0.45);
    transition: all 0.25s ease;
    padding: 0;
}

.anatomy-hotspot:hover, .anatomy-hotspot.active {
    background: var(--brand-blue);
    transform: translate(-50%, -50%) scale(1.18);
    box-shadow: 0 6px 20px rgba(0, 94, 166, 0.55);
}

.hotspot-num {
    font-size: 0.85rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.hotspot-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--brand-orange);
    animation: hotspotPulse 2s infinite ease-out;
}

.anatomy-hotspot.active .hotspot-pulse {
    border-color: var(--brand-blue);
}

@keyframes hotspotPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.anatomy-info-panel {
    border: 1px solid #cbd5e1 !important;
    box-shadow: 0 10px 30px rgba(11, 21, 35, 0.06);
}

.anatomy-btn {
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

