/* ==========================================================================
   STepy PREMIUM DESIGN SYSTEM — V7 DEFINITIVE
   
   This stylesheet is loaded LAST (after style.css, modern_v2.css)
   and uses high-specificity selectors to override all legacy rules.
   ========================================================================== */

:root {
    --stepy-primary: #1e899d;
    --stepy-secondary: #1a7a8c;
    --stepy-accent: #2ea8c2;
    --stepy-dark: #0d2a30;
    --stepy-topbar-h: 42px;
    --stepy-header-h: 80px;
    --stepy-total-h: calc(var(--stepy-topbar-h) + var(--stepy-header-h));
}

/* =========================================
   0. LEGACY NEUTRALIZATION
   Prevents style.css from breaking layout
   ========================================= */
body.home-page header.premium-header,
body.v2-hybrid header.premium-header {
    padding: 0 !important;           /* kills style.css .main-header padding:40px 130px 40px 190px */
    gap: 0 !important;
}

/* Kill the bare `header { display:block }` from style.css @media */
header#main-header {
    display: flex !important;
}

/* =========================================
   1. CORPORATE TOP BAR
   ========================================= */
.corporate-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--stepy-topbar-h);
    background: var(--stepy-dark);
    color: #fff;
    font-size: 12px;
    z-index: 100001 !important;
    display: flex;
    align-items: center;
}

.corporate-top-bar > .container-fluid {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px !important;
    width: 100%;
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar-info a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    transition: color 0.2s;
}

.top-bar-info a:hover { color: #fff; }
.top-bar-info a i { color: var(--stepy-accent); font-size: 13px; }

.top-bar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher {
    display: flex;
    gap: 2px;
}

.lang-switcher a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-weight: 700;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 3px;
    transition: 0.2s;
}

.lang-switcher a.active {
    background: var(--stepy-primary);
    color: #fff;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    transition: color 0.2s;
}

.social-links a:hover { color: var(--stepy-accent); }

/* =========================================
   2. MAIN HEADER — ALWAYS SOLID WHITE
   ========================================= */
header#main-header,
header.premium-header {
    position: fixed !important;
    top: var(--stepy-topbar-h) !important;
    left: 0 !important;
    width: 100% !important;
    height: var(--stepy-header-h) !important;
    z-index: 100000 !important;
    background: #fff !important;
    display: flex !important;
    align-items: center !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    transition: all 0.35s ease !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}

header#main-header > .container-fluid {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    max-width: 1300px;
    margin: 0 auto !important;
    padding: 0 30px !important;
    width: 100% !important;
    height: 100%;
}

/* Logo */
.premium-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.premium-logo a { display: flex; align-items: center; }
.premium-logo img {
    height: 48px !important;
    width: auto !important;
    display: block !important;
}

/* =========================================
   3. NAVIGATION
   ========================================= */
nav.premium-nav {
    display: flex !important;
    align-items: center;
}

nav.premium-nav > ul {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 32px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

nav.premium-nav > ul > li {
    position: relative;
    padding: 0;
    margin: 0;
}

nav.premium-nav > ul > li > a {
    color: #1e293b !important;
    font-weight: 700 !important;
    font-size: 12.5px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    text-decoration: none !important;
    padding: 30px 0 !important;
    display: block !important;
    position: relative;
    transition: color 0.2s !important;
    white-space: nowrap;
}

nav.premium-nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--stepy-primary);
    transition: width 0.3s ease;
}

nav.premium-nav > ul > li:hover > a { color: var(--stepy-primary) !important; }
nav.premium-nav > ul > li:hover > a::after { width: 100%; }

/* =========================================
   4. MEGA DROPDOWN
   ========================================= */
.has-premium-sub { position: relative; }

.premium-dropdown {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(15px) !important;
    background: #fff !important;
    min-width: 520px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.18) !important;
    border-radius: 10px;
    padding: 24px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 100010 !important;
    border-top: 3px solid var(--stepy-primary);
    pointer-events: none;
}

.has-premium-sub:hover > .premium-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
    pointer-events: auto;
}

ul.mega-menu-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

ul.mega-menu-grid li { list-style: none; margin: 0; padding: 0; }

ul.mega-menu-grid li a {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 12px 14px !important;
    text-decoration: none !important;
    border-radius: 8px;
    transition: background 0.2s !important;
    text-transform: none !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    color: #333 !important;
}

ul.mega-menu-grid li a::after { display: none !important; } /* remove underline from parent rule */
ul.mega-menu-grid li a:hover { background: #f1f5f9 !important; }

.menu-icon {
    width: 36px;
    height: 36px;
    background: rgba(30, 137, 157, 0.1);
    color: var(--stepy-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.menu-text strong {
    display: block;
    color: #1e293b;
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 1px;
}

.menu-text p {
    margin: 0;
    color: #94a3b8;
    font-size: 11px;
    line-height: 1.3;
}

/* =========================================
   5. HEADER ACTIONS
   ========================================= */
.premium-actions {
    display: flex !important;
    align-items: center !important;
    gap: 18px;
    flex-shrink: 0;
}

.action-icon.search-trigger {
    color: #64748b;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.2s;
}

.action-icon.search-trigger:hover { color: var(--stepy-primary); }

a.btn-catalog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: var(--stepy-primary);
    color: #fff !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 5px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    white-space: nowrap;
}

a.btn-catalog:hover {
    background: var(--stepy-secondary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30,137,157,0.3);
}

/* MOBILE TRIGGER — desktop hidden */
.premium-mobile-trigger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.premium-mobile-trigger span {
    width: 24px;
    height: 2px;
    background: #333;
    display: block;
    transition: 0.3s;
}

/* =========================================
   6. MOBILE OVERLAY — STRICTLY HIDDEN ON DESKTOP
   ========================================= */
.premium-mobile-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: #fff !important;
    z-index: 200000 !important;
    display: flex !important;
    flex-direction: column !important;
    transform: translateX(100%) !important;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1) !important;
    visibility: hidden !important;
    padding: 40px !important;
    overflow-y: auto !important;
}

.premium-mobile-overlay.active {
    transform: translateX(0) !important;
    visibility: visible !important;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    width: 100%;
}

.mobile-logo img { height: 40px; }

.premium-mobile-close {
    font-size: 24px;
    color: var(--stepy-dark);
    cursor: pointer;
}

ul.premium-mobile-links {
    list-style: none !important;
    padding: 0 !important;
    width: 100%;
    margin-bottom: 50px !important;
}

ul.premium-mobile-links > li {
    margin-bottom: 0 !important;
    border-bottom: 1px solid #f1f5f9;
}

ul.premium-mobile-links > li > a {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 20px 0 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--stepy-dark) !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

ul.premium-mobile-links > li.has-mobile-sub > a i {
    font-size: 14px;
    transition: transform 0.3s;
}

ul.premium-mobile-links > li.open > a i {
    transform: rotate(180deg);
}

.mobile-sub-menu {
    display: none;
    padding-bottom: 20px;
    list-style: none;
}

.mobile-sub-menu li a {
    display: block;
    padding: 12px 15px;
    color: #64748b;
    font-size: 15px;
    text-decoration: none;
    border-left: 2px solid #e2e8f0;
    margin-bottom: 5px;
}

.mobile-menu-footer {
    margin-top: auto;
    width: 100%;
    padding-top: 30px;
}

.mobile-contact-info {
    margin-bottom: 30px;
}

.mobile-contact-info a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 15px;
}

.mobile-contact-info i { color: var(--stepy-primary); }

.mobile-socials {
    display: flex;
    gap: 15px;
}

.mobile-socials a {
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--stepy-dark);
    text-decoration: none;
    font-size: 16px;
}


/* =========================================
   7. HERO V5 — FULL-SCREEN IMMERSIVE SLIDER
   ========================================= */
section.hero-v5 {
    position: relative !important;
    width: 100% !important;
    height: 100vh !important;
    min-height: 700px !important;
    background: #000 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

section.hero-v5 .swiper {
    width: 100% !important;
    height: 100% !important;
}

section.hero-v5 .swiper-slide {
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 8% !important;
}

.hero-v5 .slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-v5 .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.35) 50%,
        rgba(0,0,0,0.15) 100%
    );
    z-index: 2;
}

/* Slide Content — positioned to avoid header */
.hero-v5 .slide-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    color: #fff;
    /* Push content below the fixed header+topbar area */
    padding-top: var(--stepy-total-h);
}

.hero-v5 .slide-tag {
    display: inline-block;
    padding: 7px 16px;
    background: var(--stepy-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    border-radius: 2px;
}

.hero-v5 .slide-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: clamp(38px, 5.5vw, 78px);
    line-height: 1.05;
    font-weight: 800;
    margin: 0 0 20px 0;
    color: #fff;
}

.hero-v5 .slide-title span {
    display: block;
    color: var(--stepy-accent);
}

.hero-v5 .slide-desc {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin: 0 0 35px 0;
    max-width: 480px;
}

.hero-v5 .slide-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-v5 .slide-btns .btn-premium {
    display: inline-flex;
    align-items: center;
    padding: 15px 32px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none !important;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-v5 .slide-btns .btn-premium:first-child {
    background: var(--stepy-primary);
    color: #fff !important;
    border-color: var(--stepy-primary);
}

.hero-v5 .slide-btns .btn-premium:first-child:hover {
    background: var(--stepy-secondary);
    border-color: var(--stepy-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30,137,157,0.35);
}

.hero-v5 .slide-btns .btn-outline {
    background: transparent !important;
    color: #fff !important;
    border-color: rgba(255,255,255,0.4) !important;
}

.hero-v5 .slide-btns .btn-outline:hover {
    border-color: #fff !important;
    background: rgba(255,255,255,0.1) !important;
}

/* Floating Badges */
.hero-v5 .floating-badges {
    position: absolute;
    right: 8%;
    top: 55%;
    transform: translateY(-50%);
    z-index: 15;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-v5 .badge-item {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 16px 22px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    min-width: 230px;
}

.hero-v5 .badge-icon {
    width: 36px;
    height: 36px;
    background: var(--stepy-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.hero-v5 .badge-text h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.hero-v5 .badge-text p {
    margin: 2px 0 0;
    font-size: 11px;
    color: rgba(255,255,255,0.55);
}

/* Hero Controls */
.hero-v5 .hero-controls {
    position: absolute;
    bottom: 45px;
    left: 8%;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-v5 .swiper-nav-group {
    display: flex;
    gap: 10px;
}

.hero-v5 .nav-btn {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    background: transparent;
}

.hero-v5 .nav-btn:hover {
    background: var(--stepy-primary);
    border-color: var(--stepy-primary);
}

.hero-v5 .swiper-pagination {
    position: static !important;
    width: auto !important;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 3px;
}

/* =========================================
   8. RESPONSIVE
   ========================================= */
@media (max-width: 1100px) {
    .corporate-top-bar { display: none !important; }
    nav.premium-nav { display: none !important; }
    a.btn-catalog { display: none !important; }
    .premium-mobile-trigger { display: flex !important; }

    header#main-header,
    header.premium-header {
        top: 0 !important;
        height: 70px !important;
    }

    .hero-v5 .slide-content { padding-top: 80px !important; }
    .hero-v5 .floating-badges { display: none !important; }
}

@media (max-width: 768px) {
    .hero-v5 .slide-title { font-size: 36px !important; }
    .hero-v5 .slide-desc { font-size: 15px !important; }
    section.hero-v5 { min-height: 600px !important; }
    .hero-v5 .hero-controls { bottom: 25px; left: 5%; }
}

/* =========================================
   9. GLOBAL ICON FIX
   ========================================= */
.fa, .fas, .far, .fab, .fa-solid, .fa-regular, .fa-brands {
    font-family: "Font Awesome 6 Free" !important;
}
.fa-brands {
    font-family: "Font Awesome 6 Brands" !important;
}

/* =========================================
   11. INNER PAGES & CONTACT
   ========================================= */
.inner-page-hero {
    background: #f8fafc;
    padding: calc(var(--stepy-total-h) + 60px) 0 80px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-premium {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb-premium a { color: var(--stepy-primary); text-decoration: none; }
.breadcrumb-premium span.active { color: #94a3b8; }

.inner-page-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--stepy-dark);
    margin-bottom: 20px;
}

.inner-page-desc {
    font-size: 18px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.contact-section-v2 { padding: 100px 0; }

.contact-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.contact-card-v2 {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
    transition: 0.3s;
}

.contact-card-v2:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }

.contact-card-v2 .icon {
    width: 60px;
    height: 60px;
    background: rgba(30, 137, 157, 0.1);
    color: var(--stepy-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 25px;
}

.contact-card-v2 h3 { font-size: 20px; font-weight: 700; margin-bottom: 15px; color: var(--stepy-dark); }
.contact-card-v2 p { color: #64748b; font-size: 14px; margin-bottom: 20px; min-height: 40px; }
.contact-card-v2 a { color: var(--stepy-primary); font-weight: 700; text-decoration: none; font-size: 16px; }

.contact-form-v2 {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 30px 100px rgba(0,0,0,0.08);
}

.form-group-v2 { margin-bottom: 25px; }
.form-group-v2 label { display: block; font-size: 13px; font-weight: 700; color: var(--stepy-dark); margin-bottom: 8px; text-transform: uppercase; }
.form-group-v2 input, .form-group-v2 textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    transition: 0.3s;
}

.form-group-v2 input:focus, .form-group-v2 textarea:focus {
    border-color: var(--stepy-primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(30, 137, 157, 0.1);
}

.map-wrapper-v2 {
    height: 100%;
    min-height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(0,0,0,0.08);
}

/* =========================================
   13. ABOUT PAGE COMPONENTS
   ========================================= */
.about-stats-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: -60px;
    position: relative;
    z-index: 20;
}

.stat-item-v2 {
    background: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
}

.stat-item-v2 .number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--stepy-primary);
    margin-bottom: 5px;
}

.stat-item-v2 .label {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content-v2 { padding: 120px 0; }

.values-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.value-card-v2 {
    background: #f8fafc;
    padding: 50px;
    border-radius: 25px;
    transition: 0.3s;
    border: 1px solid #e2e8f0;
}

.value-card-v2:hover { background: #fff; box-shadow: 0 25px 60px rgba(0,0,0,0.08); transform: translateY(-5px); }

.value-card-v2 .icon {
    width: 60px;
    height: 60px;
    background: #fff;
    color: var(--stepy-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.value-card-v2 h3 { font-size: 24px; font-weight: 800; margin-bottom: 20px; color: var(--stepy-dark); }
.value-card-v2 p { color: #64748b; font-size: 16px; line-height: 1.7; margin: 0; }

@media (max-width: 991px) {
    .about-stats-v2 { grid-template-columns: 1fr 1fr; margin-top: 40px; }
    .values-grid-v2 { grid-template-columns: 1fr; }
}

/* =========================================
   14. TIMELINE COMPONENT
   ========================================= */
.timeline-section-v2 { padding: 100px 0; background: #fff; }

.timeline-v2 {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-v2::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #e2e8f0;
    transform: translateX(-50%);
}

.timeline-item-v2 {
    position: relative;
    margin-bottom: 80px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
}

.timeline-item-v2:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: 50%;
    width: 16px;
    height: 16px;
    background: var(--stepy-primary);
    border: 4px solid #fff;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: 0 0 0 4px rgba(30, 137, 157, 0.1);
}

.timeline-content-v2 {
    width: 85%;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
    position: relative;
    transition: 0.3s;
}

.timeline-item-v2:nth-child(odd) .timeline-content-v2 { margin-right: 40px; text-align: right; }
.timeline-item-v2:nth-child(even) .timeline-content-v2 { margin-left: 40px; }

.timeline-content-v2:hover { transform: scale(1.02); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }

.timeline-year {
    display: inline-block;
    font-size: 24px;
    font-weight: 800;
    color: var(--stepy-primary);
    margin-bottom: 10px;
}

.timeline-content-v2 h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--stepy-dark); }
.timeline-content-v2 p { color: #64748b; font-size: 14px; line-height: 1.6; margin: 0; }

/* =========================================
   15. MEDIA & NEWS GRID
   ========================================= */
.media-section-v2 { padding: 100px 0; }

.media-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.media-card-v2 {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
    transition: 0.3s;
    text-decoration: none !important;
}

.media-card-v2:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }

.media-thumb-v2 {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.media-thumb-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.media-card-v2:hover .media-thumb-v2 img { transform: scale(1.1); }

.media-body-v2 { padding: 30px; }

.media-meta-v2 {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--stepy-primary);
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.media-body-v2 h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--stepy-dark);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: 0.3s;
}

.media-card-v2:hover .media-body-v2 h3 { color: var(--stepy-primary); }

.media-body-v2 p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .media-grid-v2 { grid-template-columns: 1fr 1fr; }
}

/* =========================================
   16. HR & CAREER COMPONENTS
   ========================================= */
.hr-benefits-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.benefit-card-v2 {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    transition: 0.3s;
}

.benefit-card-v2:hover { box-shadow: 0 15px 40px rgba(0,0,0,0.05); transform: translateY(-5px); }
.benefit-card-v2 i { color: var(--stepy-primary); font-size: 24px; margin-bottom: 20px; display: block; }
.benefit-card-v2 h4 { font-size: 18px; font-weight: 700; color: var(--stepy-dark); margin-bottom: 12px; }
.benefit-card-v2 p { font-size: 14px; color: #64748b; line-height: 1.6; margin: 0; }

.file-upload-v2 {
    position: relative;
    width: 100%;
}

.file-upload-v2 input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    color: #64748b;
    font-size: 14px;
    transition: 0.3s;
}

.file-upload-v2:hover .file-upload-label {
    border-color: var(--stepy-primary);
    background: rgba(30, 137, 157, 0.05);
    color: var(--stepy-primary);
}

.file-upload-label i { font-size: 20px; }
/* =========================================
   17. PRODUCT SIDEBAR & LISTING
   ========================================= */
.page-products {
    display: flex;
    gap: 40px;
    max-width: 1300px;
    margin: 60px auto 100px;
    padding: 0 30px;
}

.product-filter {
    width: 320px;
    flex-shrink: 0;
    position: sticky;
    top: calc(var(--stepy-total-h) + 40px);
    height: fit-content;
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
}

.filter-title {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

.filter-title p {
    font-size: 16px;
    font-weight: 800;
    color: var(--stepy-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

.main-filter {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-filter > li {
    margin-bottom: 12px;
}

.main-filter > li > a.main-cat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: #f8fafc;
    border-radius: 12px;
    color: var(--stepy-dark);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.main-filter > li.active > a.main-cat,
.main-filter > li:hover > a.main-cat {
    background: var(--stepy-primary);
    color: #fff;
}

.main-filter > li.active > a.main-cat svg,
.main-filter > li:hover > a.main-cat svg {
    stroke: #fff !important;
}

.main-filter ul {
    list-style: none;
    padding: 10px 0 10px 15px;
    margin: 0;
    display: none; /* Toggle handled by JS or CSS hover */
}

.main-filter li.open ul,
.main-filter li:hover ul {
    display: block;
}

.main-filter ul li {
    margin-bottom: 8px;
}

.main-filter ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    color: #64748b;
    font-size: 13.5px;
    text-decoration: none;
    transition: 0.3s;
    border-radius: 8px;
}

.main-filter ul li a:hover {
    color: var(--stepy-primary);
    background: rgba(30, 137, 157, 0.05);
}

.total-product {
    font-size: 11px;
    font-weight: 700;
    background: #e2e8f0;
    color: #64748b;
    padding: 2px 8px;
    border-radius: 20px;
    transition: 0.3s;
}

.main-filter ul li a:hover .total-product {
    background: var(--stepy-primary);
    color: #fff;
}

/* Product Content */
.product-content {
    flex-grow: 1;
}

.product-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.product-type { font-size: 24px; font-weight: 800; color: var(--stepy-dark); }

.product-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: 0.3s;
    text-decoration: none !important;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.product-card .p-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

.product-card p {
    font-size: 16px;
    font-weight: 700;
    color: var(--stepy-dark);
    margin: 0;
}

@media (max-width: 1100px) {
    .page-products { flex-direction: column; }
    .product-filter { width: 100%; position: static; }
    .product-cards { grid-template-columns: 1fr 1fr; }
}

/* =========================================
   18. FOOTER BASICS — REFINED CORPORATE
   ========================================= */
.premium-footer {
    background: #0d141a;
    color: #fff;
    padding: 100px 0 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--stepy-primary), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto 80px;
    padding: 0 30px;
}

.footer-brand .footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 25px;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.8;
    max-width: 320px;
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--stepy-primary);
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 15px; }
.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover { color: #fff; transform: translateX(5px); }
.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: var(--stepy-primary);
}

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #94a3b8;
    font-size: 14px;
}

.footer-contact i {
    color: var(--stepy-primary);
    font-size: 16px;
    margin-top: 3px;
}

.footer-bottom {
    background: #090e13;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-bottom p { color: #475569; font-size: 13px; margin: 0; }

.footer-socials { display: flex; gap: 15px; }
.footer-socials a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.03);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: 0.3s;
    text-decoration: none;
}

.footer-socials a:hover { background: var(--stepy-primary); transform: translateY(-3px); }

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* =========================================
   19. PRODUCT DETAIL COMPONENTS
   ========================================= */
.product-detail-v2 { padding: 120px 0 80px; background: #fff; }

.product-gallery-v2 { position: sticky; top: var(--stepy-total-h); }

.product-main-swiper {
    width: 100%;
    height: 500px;
    background: #f8fafc;
    border-radius: 30px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
}

.product-main-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.product-main-swiper img { max-width: 100%; max-height: 100%; object-fit: contain; }

.product-thumb-swiper { width: 100%; height: 100px; }
.product-thumb-swiper .swiper-slide {
    width: 100px;
    height: 100%;
    background: #f8fafc;
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    border: 2px solid transparent;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.product-thumb-swiper .swiper-slide-thumb-active { border-color: var(--stepy-primary); background: #fff; }
.product-thumb-swiper img { max-width: 100%; max-height: 100%; object-fit: contain; }

.product-info-v2 { padding-left: 30px; }

.product-sku-v2 {
    font-size: 12px;
    font-weight: 800;
    color: var(--stepy-primary);
    background: rgba(30, 137, 157, 0.1);
    padding: 6px 15px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.product-title-v2 { font-size: 42px; font-weight: 800; color: var(--stepy-dark); margin-bottom: 25px; line-height: 1.2; }

.product-meta-v2 { margin: 40px 0; border-top: 1px solid #f1f5f9; border-bottom: 1px solid #f1f5f9; padding: 30px 0; }
.meta-item-v2 { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; color: #64748b; font-size: 15px; }
.meta-item-v2 i { color: var(--stepy-primary); width: 20px; }

.product-tabs-v2 { margin-top: 80px; }
.tab-nav-v2 { display: flex; gap: 40px; border-bottom: 2px solid #f1f5f9; margin-bottom: 40px; }
.tab-link-v2 {
    font-size: 16px;
    font-weight: 800;
    color: #94a3b8;
    padding: 15px 0;
    cursor: pointer;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tab-link-v2.active { color: var(--stepy-primary); }
.tab-link-v2.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--stepy-primary);
}

.spec-table-v2 { width: 100%; border-collapse: collapse; }
.spec-table-v2 td { padding: 20px; border-bottom: 1px solid #f1f5f9; font-size: 15px; }
.spec-table-v2 td:first-child { width: 250px; font-weight: 800; color: var(--stepy-dark); background: #f8fafc; border-radius: 10px 0 0 10px; }

@media (max-width: 991px) {
    .product-info-v2 { padding-left: 0; margin-top: 50px; }
    .product-title-v2 { font-size: 32px; }
}
