:root {
    --primary-blue: #243B86;
    --accent-red: #E31E24;
    --light-blue: #DBE6F5;
    --white: #FFFFFF;
    --text-color: #1a1a1a;
}

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header - Ultra-Transparent iOS Liquid Frosted Glassmorphism */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 18, 42, 0.16);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    z-index: 1000;
    transition: background-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                backdrop-filter 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-bottom-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: background-color, backdrop-filter;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.01) 100%);
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.main-header:hover {
    background-color: rgba(10, 18, 42, 0.40);
    backdrop-filter: blur(22px) saturate(190%);
    -webkit-backdrop-filter: blur(22px) saturate(190%);
    border-bottom-color: rgba(255, 255, 255, 0.20);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.main-header.header-scrolled {
    background-color: rgba(10, 18, 42, 0.65);
    backdrop-filter: blur(24px) saturate(190%);
    -webkit-backdrop-filter: blur(24px) saturate(190%);
    border-bottom-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 80px;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Organic Native Logo - Rock-solid with zero layout flicker */
.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
    text-decoration: none;
    background: transparent;
    padding: 0;
    min-width: 130px;
    height: 42px;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.logo a {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 42px;
    width: auto;
    max-height: 42px;
    display: block;
    position: relative;
    z-index: 1;
    filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    contain: layout paint;
}

.logo:hover img {
    transform: scale(1.04) translateZ(0);
    filter: brightness(0) invert(1) drop-shadow(0 0 14px rgba(255, 255, 255, 0.6));
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    padding-left: 45px;
}

.nav-links {
    display: flex;
    gap: 26px;
    align-items: center;
}

.nav-links > li > a {
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 28px 0;
    display: block;
    position: relative;
    letter-spacing: 0.4px;
    transition: color 0.2s;
}

.nav-links > li > a:hover {
    color: #93c5fd;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 260px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    padding: 12px 0;
    border-radius: 0 0 12px 12px;
    border: 1px solid rgba(0,0,0,0.06);
    animation: fadeInDownMenu 0.2s ease;
}

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

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    padding: 11px 24px;
    color: var(--primary-blue);
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    transition: background-color 0.2s, color 0.2s, padding-left 0.2s;
}

.dropdown-menu li a:hover {
    background-color: var(--light-blue);
    color: var(--accent-red);
    padding-left: 28px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Desktop Language Switcher */
.lang-switch-wrap {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 3px 10px;
    gap: 6px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}

.lang-switch-wrap:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
}

.lang-btn {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-decoration: none;
    padding: 3px 6px;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    color: #ffffff;
}

.lang-btn.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.22);
    font-weight: 800;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.lang-divider {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.75rem;
    user-select: none;
}

/* Mobile Language Switcher */
.mobile-lang-switch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mobile-lang-btn.active {
    color: #ffffff;
    background: var(--accent-red);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.35);
}

.language-selector {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    transition: all 0.2s;
}

.language-selector:hover {
    background: rgba(255, 255, 255, 0.2);
}

.innotrans-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #1e3a8a 0%, #243B86 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.84rem;
    padding: 9px 20px;
    border-radius: 24px;
    text-decoration: none;
    letter-spacing: 0.4px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 4px 15px rgba(36, 59, 134, 0.35);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.innotrans-nav-btn:hover {
    background: linear-gradient(135deg, #243B86 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(36, 59, 134, 0.55);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.45);
}

.header-contact-btn {
    display: inline-flex;
    align-items: center;
    background: var(--accent-red);
    color: white;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 9px 20px;
    border-radius: 24px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.25s;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
}

.header-contact-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.45);
    color: white;
}

/* Mobile Hamburger Toggle Button */
.mobile-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
    z-index: 1002;
    transition: all 0.3s;
}

.mobile-nav-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-toggle.open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle.open .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-nav-toggle.open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Body Scroll Lock */
body.mobile-nav-open {
    overflow: hidden;
    touch-action: none;
}

/* Mobile Nav Backdrop Overlay */
.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(8, 14, 34, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-nav-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(380px, 88vw);
    height: 100vh;
    background: linear-gradient(180deg, rgba(14, 25, 59, 0.98) 0%, rgba(10, 18, 42, 0.99) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: none;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 1002;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s ease, box-shadow 0.4s ease;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.mobile-nav-drawer.active {
    transform: translateX(0);
    visibility: visible;
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.5);
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer-logo img {
    height: 36px;
    display: block;
    filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.mobile-drawer-close {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: white;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.mobile-drawer-close:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

.mobile-drawer-content {
    padding: 20px 24px 40px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-links > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-links > li:last-child {
    border-bottom: none;
}

.mobile-nav-item {
    display: block;
    padding: 14px 8px;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
}

.mobile-nav-item:hover {
    color: #93c5fd;
    padding-left: 14px;
}

/* Mobile Accordion */
.mobile-accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 8px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: color 0.2s;
}

.mobile-accordion-btn:hover {
    color: #93c5fd;
}

.accordion-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: #94a3b8;
}

.mobile-accordion-item.open .accordion-arrow {
    transform: rotate(180deg);
    color: var(--accent-red);
}

.mobile-accordion-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-accordion-item.open .mobile-accordion-collapse {
    max-height: 450px;
}

.mobile-sub-menu {
    list-style: none;
    padding: 6px 0 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-left: 2px solid rgba(227, 30, 36, 0.4);
    margin: 4px 0 10px 8px;
}

.mobile-sub-menu li a {
    display: block;
    padding: 6px 10px;
    color: #cbd5e1;
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
}

.mobile-sub-menu li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* Mobile InnoTrans Highlight */
.mobile-innotrans-highlight {
    margin: 16px 0;
    border-bottom: none !important;
}

.mobile-innotrans-link {
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.2) 0%, rgba(36, 59, 134, 0.3) 100%);
    border: 1px solid rgba(212, 232, 0, 0.4);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.2s, border-color 0.2s;
}

.mobile-innotrans-link:hover {
    transform: translateY(-2px);
    border-color: #d4e800;
}

.innotrans-chip {
    align-self: flex-start;
    background: #d4e800;
    color: #0e193b;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 6px;
    letter-spacing: 0.8px;
}

.mobile-innotrans-link strong {
    color: white;
    font-size: 1.05rem;
    font-weight: 800;
}

.mobile-innotrans-link span:last-child {
    color: #d4e800;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Mobile Drawer Footer */
.mobile-drawer-footer {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-quick-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.mobile-contact-item {
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
}

.contact-lbl {
    color: #94a3b8;
    font-weight: 500;
}

.contact-val {
    color: #ffffff;
    font-weight: 600;
}

.mobile-drawer-cta {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--accent-red);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    transition: background-color 0.2s;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.35);
}

.mobile-drawer-cta:hover {
    background: #b91c1c;
}


/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    background-color: var(--primary-blue);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Strong left gradient mimicking the Alstom reference */
    background: linear-gradient(90deg, rgba(14,25,59,0.95) 0%, rgba(20,35,80,0.6) 45%, rgba(0,0,0,0) 100%);
    z-index: 2;
}

.hero-content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 650px;
    margin-top: 80px; /* Offset for header */
}

.red-bar {
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-red) 0%, rgba(227,30,36,0.2) 100%);
    border-radius: 3px;
    margin-bottom: 30px;
}

.hero-content h1 {
    color: var(--white);
    font-size: 5rem;
    line-height: 1.05;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.hero-content h1 .hero-line {
    display: block;
    white-space: nowrap;
    letter-spacing: -1.5px;
}

.discover-link {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
    transition: color 0.3s;
}

.discover-link:hover {
    color: #e0e0e0;
}

.video-control {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 3;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: border-color 0.3s, background-color 0.3s;
}

.video-control:hover {
    border-color: var(--white);
    background-color: rgba(255,255,255,0.1);
}

/* Highlights Section */
.highlights-section {
    background-color: var(--light-blue);
    padding: 100px 40px;
}

.highlights-container {
    max-width: 1400px;
    margin: 0 auto;
}

.highlights-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.highlights-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    font-weight: 500;
    letter-spacing: -0.5px;
}

.all-news-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 10px 24px 10px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.all-news-btn:hover {
    background-color: var(--accent-red);
}

.arrow-right {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    background-color: rgba(255,255,255,0.2);
    color: var(--white);
    border-radius: 50%;
    margin-left: 20px;
    font-size: 16px;
    font-weight: normal;
}

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

.highlight-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-image {
    height: 260px;
    background-color: #d0d0d0;
    background-size: cover;
    background-position: center;
}

.placeholder-img-1 { background-color: #b8c4d8; }
.placeholder-img-2 { background-color: #a3b2cb; }
.placeholder-img-3 { background-color: #8f9fbe; }

.card-content {
    padding: 35px;
}

.card-content h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.card-content p {
    color: #555;
    line-height: 1.6;
    font-size: 1.05rem;
}
/* Facts Section */
.facts-section {
    background-color: #f4f7f9;
    padding: 100px 20px;
    text-align: center;
}

.facts-container {
    max-width: 1000px;
    margin: 0 auto;
}

.facts-title {
    font-size: 2.2rem;
    color: var(--text-color);
    margin-bottom: 70px;
    font-weight: 700;
}

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

.fact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fact-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
    line-height: 1;
    letter-spacing: -1.5px;
}

.fact-label {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
}

/* Blue Banner Section */
.blue-banner {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.banner-container {
    max-width: 900px;
    margin: 0 auto;
}

.blue-banner h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.4;
}

.blue-banner p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}



/* ========================================================
   INNOTRANS 2026 FEATURE BANNER (Stadler InnoTrans Style)
   ======================================================== */
.innotrans-section {
    position: relative;
    padding: 80px 40px;
    background: #0f1c3f;
    overflow: hidden;
}

.innotrans-hero-card {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 28px;
    min-height: 480px;
    background: url('/Public/04-fabrika/fabrika-1.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(10, 20, 50, 0.4);
}

.innotrans-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14, 25, 59, 0.92) 0%, rgba(14, 25, 59, 0.75) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.innotrans-content-wrap {
    position: relative;
    z-index: 2;
    padding: 50px 48px;
    width: 100%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.innotrans-info-col {
    position: relative;
    width: 100%;
}

.innotrans-curved-box {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    border-radius: 28px;
    padding: 45px 160px 45px 42px; /* Sağ tarafta rozet için alan ayrıldı */
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    position: relative;
}

.innotrans-tag {
    display: inline-block;
    color: var(--accent-red);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.innotrans-title {
    color: #0e193b;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 16px;
    letter-spacing: -1px;
    max-width: 440px;
}

.innotrans-desc {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 400px;
}

.innotrans-floating-badge {
    position: absolute;
    right: -36px;
    top: 50%;
    transform: translateY(-50%);
    width: 195px;
    height: 195px;
    border-radius: 50%;
    background: #d4e800;
    color: #111827;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(212, 232, 0, 0.35);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
    text-decoration: none;
    z-index: 10;
}

.innotrans-floating-badge:hover {
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 20px 45px rgba(212, 232, 0, 0.55);
}

.innotrans-badge-head {
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 6px;
}

.innotrans-badge-date {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 10px;
}

.innotrans-badge-link {
    font-size: 0.9rem;
    font-weight: 800;
    color: #0e193b;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* InnoTrans 50/50 Video Column Styles */
.innotrans-video-col {
    position: relative;
    width: 100%;
}

.innotrans-video-card {
    background: rgba(14, 25, 59, 0.88);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.innotrans-video-card:hover {
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.65);
    border-color: rgba(212, 232, 0, 0.45);
    transform: translateY(-3px);
}

.innotrans-video-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.innotrans-video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.innotrans-video-caption {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(10, 18, 42, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.video-caption-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.video-caption-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e2e8f0;
    line-height: 1.4;
}

/* ========================================================
   SUCCESS STORIES & HIGHLIGHTS GRID (Alstom & Stadler Style)
   ======================================================== */
.stories-section {
    padding: 100px 40px;
    background: #ffffff;
}

.stories-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-eyebrow {
    display: inline-block;
    color: var(--accent-red);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-main-title {
    font-size: 2.8rem;
    color: var(--primary-blue);
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 40px;
}

.stories-grid-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 35px;
}

.story-card-large {
    background: #f8fafc;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.story-card-large:hover,
.story-card-mini:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(14, 25, 59, 0.12);
}

.story-img-wrap {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.story-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-card-large:hover .story-img-wrap img,
.story-card-mini:hover .story-img-wrap img {
    transform: scale(1.04);
}

.story-card-body {
    padding: 35px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.story-pill-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.story-pill {
    color: #243B86;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: none;
    padding: 0;
    border: none;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
}

.story-pill.active-pill {
    color: #243B86;
    background: none;
}

.story-pill + .story-pill::before {
    content: "•";
    margin: 0 8px;
    color: #94a3b8;
}

.story-card-title {
    font-size: 1.6rem;
    color: #0e193b;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.story-card-text {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.stories-sub-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.story-card-mini {
    background: #f8fafc;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 200px 1fr;
    transition: transform 0.3s, box-shadow 0.3s;
}

.story-card-mini .story-img-wrap {
    height: 100%;
    min-height: 180px;
}

.story-card-mini .story-card-body {
    padding: 25px;
}

.story-card-mini .story-card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.story-card-mini .story-card-text {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ========================================================
   CORPORATE SECTION: VİZYON, MİSYON, HAKKIMIZDA & KALİTE
   ======================================================== */
.corporate-section {
    padding: 100px 40px;
    background: #f1f5f9;
}

.corporate-container {
    max-width: 1400px;
    margin: 0 auto;
}

.corporate-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.corporate-header h2 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.corporate-header p {
    font-size: 1.2rem;
    color: #64748b;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.vm-card {
    background: var(--white);
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.vm-card.mission-card {
    border: none;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(14, 25, 59, 0.09);
}

.vm-icon-bubble {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(36, 59, 134, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 800;
}

.vm-card.mission-card .vm-icon-bubble {
    background: rgba(227, 30, 36, 0.08);
    color: var(--accent-red);
}

.vm-card h3 {
    font-size: 1.7rem;
    color: #0e193b;
    font-weight: 700;
    margin-bottom: 15px;
}

.vm-card p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.about-banner-card {
    background: linear-gradient(135deg, #0e193b 0%, #1e3a8a 100%);
    color: var(--white);
    border-radius: 24px;
    padding: 50px 60px;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    border: none;
    box-shadow: 0 20px 45px rgba(14, 25, 59, 0.25);
}

.about-banner-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.about-banner-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 15px;
}

.about-facility-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.facility-stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 25px;
    border: none;
    text-align: center;
}

.facility-stat-box .num {
    font-size: 2.2rem;
    font-weight: 800;
    color: #d4e800;
    display: block;
    margin-bottom: 5px;
}

.facility-stat-box .lbl {
    font-size: 0.95rem;
    color: #e2e8f0;
    font-weight: 500;
}

/* Quality Policy Grid */
.quality-box {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.quality-header {
    margin-bottom: 35px;
}

.quality-header h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 10px;
}

.quality-header p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.quality-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.pillar-item {
    background: #f8fafc;
    border-radius: 14px;
    padding: 25px;
    border: none;
    transition: all 0.3s;
}

.pillar-item:hover {
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

.pillar-item h4 {
    font-size: 1.15rem;
    color: #0e193b;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pillar-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ========================================================
   UNIFIED ASYMMETRIC BENTO SHOWCASE (Manufacture, Service, Product)
   ======================================================== */
.asym-showcase-section {
    padding: 85px 40px 95px;
    background: #f8fafc;
    position: relative;
}

.asym-showcase-container {
    max-width: 1440px;
    margin: 0 auto;
}

.asym-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 35px auto;
}

.asym-eyebrow {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #243B86;
    margin-bottom: 10px;
}

.asym-main-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.asym-main-desc {
    font-size: 1.08rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* Category Tab Navigation Switcher */
.asym-category-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.asym-tab-btn {
    background: #ffffff;
    color: #475569;
    border: none;
    padding: 12px 26px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.asym-tab-btn:hover {
    color: #243B86;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(36, 59, 134, 0.12);
}

.asym-tab-btn.active {
    background: #243B86;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(36, 59, 134, 0.28);
}

.asym-tab-btn .tab-badge-count {
    background: rgba(255, 255, 255, 0.25);
    color: inherit;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.76rem;
}

.asym-tab-btn:not(.active) .tab-badge-count {
    background: #f1f5f9;
    color: #64748b;
}

/* Category Tab Panes */
.asym-tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.asym-tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Master Asymmetric Bento Grid (12 Columns, Büyüklü Küçüklü) */
.asym-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 26px;
    margin-bottom: 35px;
}

/* Common Asymmetric Card Base (Clean, borderless, unified light palette) */
.asym-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    border: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.asym-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

/* Asymmetric Bento Spans */
/* 1. Large Horizontal Split Card (Image on LEFT, Content on RIGHT) - EXACT SCREENSHOT */
.asym-card-wide-left {
    grid-column: span 8;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    min-height: 370px;
}

/* 2. Tall Vertical Card */
.asym-card-tall {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    min-height: 370px;
}

/* 3. Medium 4-Column Card */
.asym-card-medium {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
}

/* 4. Wide 8-Column Split Card (Image on LEFT) */
.asym-card-wide-8 {
    grid-column: span 8;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
}

/* 5. Split 6-Column Card (Half-Grid Split for 2-item showcase) */
.asym-card-split-6 {
    grid-column: span 6;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    min-height: 380px;
}

/* Card Image Wrappers */
.asym-img-wrap {
    width: 100%;
    height: 100%;
    min-height: 220px;
    position: relative;
    overflow: hidden;
    background: #0f172a;
}

.asym-card-tall .asym-img-wrap,
.asym-card-medium .asym-img-wrap {
    height: 230px;
    min-height: 230px;
}

.asym-img-wrap {
    cursor: pointer;
}

.asym-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.asym-card:hover .asym-img-wrap img {
    transform: scale(1.06);
}

/* Card Content Body (Reference Design) */
.asym-body {
    padding: 32px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    background: #ffffff;
}

.asym-body-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Reference Badge / Eyebrow (Clean, frameless typography) */
.asym-badge {
    background: none;
    color: #243B86;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0;
    border-radius: 0;
    display: inline-block;
    margin-bottom: 12px;
    border: none;
}

/* Reference Card Heading (Bold modern font) */
.asym-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

/* Reference Card Description */
.asym-desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 22px;
}

/* Reference Outline Action Button ("Teknik Detayları İncele →") */
.asym-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #243B86;
    border: 1px solid #cbd5e1;
    font-size: 0.94rem;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: inherit;
}

.asym-btn:hover {
    background: #243B86;
    color: #ffffff;
    border-color: #243B86;
    box-shadow: 0 4px 16px rgba(36, 59, 134, 0.2);
    transform: translateY(-1px);
}

/* Pane Footer Action Bar */
.asym-pane-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
}

.asym-view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #243B86;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    background: rgba(36, 59, 134, 0.06);
    transition: all 0.2s ease;
}

.asym-view-all-link:hover {
    background: #243B86;
    color: #ffffff;
    transform: translateX(4px);
}

/* Partners Clean Strip */
.portfolio-partners-bar {
    margin-top: 40px;
    background: #ffffff;
    border-radius: 20px;
    border: none;
    padding: 28px 35px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 4px 20px rgba(14, 25, 59, 0.04);
}

.partners-bar-title {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #64748b;
    text-transform: uppercase;
}

.partners-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.partner-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    border: none;
    color: #334155;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 30px;
    transition: all 0.25s ease;
}

.partner-pill:hover {
    background: #0e193b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(14, 25, 59, 0.12);
}

.pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-red);
}

/* ========================================================
   MICRO-ANIMATIONS & SMOOTH TRANSITIONS
   ======================================================== */
.reveal-fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (max-width: 1024px) {
    .asym-card-wide-left,
    .asym-card-tall,
    .asym-card-medium,
    .asym-card-wide-8,
    .asym-card-split-6 {
        grid-column: span 12;
    }
    
    .asym-card-wide-left,
    .asym-card-wide-8,
    .asym-card-split-6 {
        grid-template-columns: 1fr;
    }

    .asym-card-wide-left .asym-img-wrap,
    .asym-card-wide-8 .asym-img-wrap,
    .asym-card-split-6 .asym-img-wrap {
        height: 250px;
        min-height: 250px;
    }

    .asym-main-title {
        font-size: 2.1rem;
    }

    .asym-showcase-section {
        padding: 60px 20px;
    }
}

/* ========================================================
   FACTORY & GALLERY SHOWCASE
   ======================================================== */
.gallery-showcase-section {
    padding: 80px 40px;
    background: #0e193b;
    color: white;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.gallery-header h2 {
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
    margin-bottom: 8px;
}

.gallery-header p {
    color: #94a3b8;
    font-size: 1.1rem;
    margin: 0;
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.gallery-item.span-2-col {
    grid-column: span 2;
}

.gallery-item.span-2-row {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 25, 59, 0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
}

/* Responsive updates for new sections */
@media (max-width: 1100px) {
    .innotrans-curved-box { padding: 35px; }
    .innotrans-floating-badge {
        position: static;
        transform: none;
        margin-top: 25px;
        width: 100%;
        height: auto;
        border-radius: 16px;
        padding: 20px;
    }
    .innotrans-floating-badge:hover {
        transform: scale(1.02);
    }
    .stories-grid-layout { grid-template-columns: 1fr; }
    .vision-mission-grid { grid-template-columns: 1fr; }
    .about-banner-card { grid-template-columns: 1fr; padding: 40px; }
    .quality-pillars { grid-template-columns: 1fr; }
    .portfolio-grid-cards { grid-template-columns: 1fr; }
    .gallery-mosaic { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.span-2-col { grid-column: span 1; }
}

@media (max-width: 768px) {
    .innotrans-section,
    .stories-section,
    .corporate-section,
    .portfolio-stats-section,
    .gallery-showcase-section {
        padding: 60px 20px;
    }
    .innotrans-title { font-size: 2.2rem; }
    .story-card-mini { grid-template-columns: 1fr; }
    .story-card-mini .story-img-wrap { height: 200px; }
    .gallery-mosaic { grid-template-columns: 1fr; }
}

/* ========================================================
   INNER PAGES STYLING (MATCHING HOMEPAGE DESIGN SYSTEM)
   ======================================================== */
.inner-page-hero {
    position: relative;
    padding: 170px 40px 80px;
    background: #0e193b url('/Public/04-fabrika/fabrika-1.png') center/cover no-repeat;
    color: white;
    overflow: hidden;
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 25, 59, 0.95) 0%, rgba(36, 59, 134, 0.85) 60%, rgba(14, 25, 59, 0.95) 100%);
}

.inner-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-breadcrumb {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-breadcrumb a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.hero-breadcrumb a:hover {
    color: #ffffff;
}

.hero-breadcrumb .current-crumb {
    color: #d4e800;
    font-weight: 600;
}

.inner-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 15px;
    letter-spacing: -1px;
    color: #ffffff;
}

.inner-hero-subtitle {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 800px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Inner Body Layout */
.inner-page-body-section {
    padding: 70px 40px 100px;
    background: #f8fafc;
    min-height: 50vh;
}

.inner-body-container {
    max-width: 1400px;
    margin: 0 auto;
}

.inner-layout-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 45px;
    align-items: start;
}

/* Article Card */
.inner-article-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: none;
}

.detail-featured-image {
    width: 100%;
    height: 420px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.detail-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-lead-summary {
    background: #f1f5f9;
    border: none;
    padding: 22px 28px;
    border-radius: 14px;
    margin-bottom: 35px;
}

.detail-lead-summary p {
    font-size: 1.15rem;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

.inner-article-html {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #334155;
}

.inner-article-html h2,
.inner-article-html h3 {
    color: #0e193b;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 15px;
}

.inner-article-html p {
    margin-bottom: 20px;
}

.inner-article-html ul {
    margin-bottom: 25px;
    padding-left: 25px;
    list-style: disc;
}

.inner-article-html li {
    margin-bottom: 10px;
}

/* PDF Callout Box */
.detail-pdf-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    background: linear-gradient(135deg, #0e193b 0%, #1e3a8a 100%);
    color: white;
    padding: 30px 35px;
    border-radius: 18px;
    margin: 45px 0 35px;
    box-shadow: 0 15px 35px rgba(14, 25, 59, 0.2);
}

.pdf-callout-icon {
    font-size: 2.8rem;
}

.pdf-callout-text h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: white;
}

.pdf-callout-text p {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin: 0;
}

.detail-bottom-nav {
    display: flex;
    gap: 15px;
    margin-top: 45px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.back-to-list-btn {
    display: inline-flex;
    align-items: center;
    background: #0e193b;
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
}

.back-to-list-btn:hover {
    background: var(--accent-red);
    color: white;
}

/* Sidebar Styles */
.inner-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: sticky;
    top: 95px;
    align-self: start;
    z-index: 20;
}

.sidebar-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: none;
}

.sidebar-tag {
    display: inline-block;
    color: var(--accent-red);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    background: none;
    border: none;
    padding: 0;
}

.badge-tag-red {
    display: inline-block;
    color: var(--accent-red);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    background: none;
    border: none;
    padding: 0;
}

.sidebar-card h4 {
    font-size: 1.4rem;
    color: #0e193b;
    font-weight: 700;
    margin-bottom: 12px;
}

.sidebar-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.sidebar-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #edf2f7;
}

.contact-row strong {
    display: block;
    color: #1e293b;
    font-size: 0.9rem;
}

.contact-row span {
    font-size: 0.9rem;
    color: #64748b;
}

.sidebar-action-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--primary-blue);
    color: white;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.2s;
}

.sidebar-action-btn:hover {
    background: var(--accent-red);
    color: white;
    transform: translateY(-2px);
}

.innotrans-mini-box {
    background: linear-gradient(135deg, #0e193b 0%, #172554 100%);
    color: white;
    border: none;
}

.innotrans-mini-box h5 {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

/* Category Nav Pills */
.category-nav-pills {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-pill-btn {
    background: white;
    color: #475569;
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.category-pill-btn:hover,
.category-pill-btn.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(36, 59, 134, 0.2);
}

/* Content Cards Grid (News, Catalog, Reports) */
.content-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.content-item-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
}

.content-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(14, 25, 59, 0.12);
}

.card-clickable-wrap {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-img-holder {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: #0e193b;
}

.card-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.content-item-card:hover .card-img-holder img {
    transform: scale(1.06);
}

.card-floating-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(14, 25, 59, 0.85);
    backdrop-filter: blur(6px);
    color: #d4e800;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.card-meta-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px 0 25px;
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 600;
}

.card-category-badge {
    background: none;
    color: var(--primary-blue);
    padding: 0;
    border-radius: 0;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.card-text-body {
    padding: 12px 25px 20px 25px;
    flex-grow: 1;
}

.card-headline {
    font-size: 1.3rem;
    color: #0e193b;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.35;
}

.card-excerpt {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.card-footer-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    background: #f8fafc;
    border-top: 1px solid #edf2f7;
}

.card-read-more {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

.card-read-more:hover {
    color: var(--accent-red);
}

.card-pdf-download-btn {
    background: white;
    color: #1e293b;
    border: 1px solid #cbd5e1;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.card-pdf-download-btn:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

/* Empty State */
.empty-state-box {
    text-align: center;
    padding: 80px 30px;
    background: white;
    border-radius: 20px;
    border: 2px dashed #cbd5e1;
}

.empty-state-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.empty-state-box h3 {
    font-size: 1.6rem;
    color: #0e193b;
    font-weight: 700;
    margin-bottom: 8px;
}

.empty-state-box p {
    color: #64748b;
    font-size: 1.05rem;
}

/* Inner Page Responsive Breakpoints */
@media (max-width: 1024px) {
    .inner-layout-grid {
        grid-template-columns: 1fr;
    }
    .inner-sidebar {
        position: static;
    }
    .content-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .inner-page-hero {
        padding: 130px 20px 50px;
    }
    .inner-hero-title {
        font-size: 2.2rem;
    }
    .inner-page-body-section {
        padding: 40px 20px 60px;
    }
    .inner-article-card {
        padding: 30px 20px;
    }
    .detail-featured-image {
        height: 250px;
    }
    .content-cards-grid {
        grid-template-columns: 1fr;
    }
    .detail-pdf-callout {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================================
   ANIMATED GLOWING INNOTRANS NAVBAR BUTTON
   ======================================================== */
.nav-innotrans-item {
    display: flex;
    align-items: center;
    margin: 0 5px;
}

.innotrans-nav-btn {
    position: relative;
    padding: 9px 20px !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 0.82rem !important;
    border-radius: 30px;
    z-index: 1;
    overflow: hidden;
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    box-shadow: 0 0 15px rgba(212, 232, 0, 0.4), 0 0 30px rgba(0, 240, 255, 0.3);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s !important;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
}

/* Conic gradient rotating border light stream */
.innotrans-nav-btn::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: conic-gradient(
        transparent,
        #d4e800 15%,
        #00f0ff 35%,
        #e31e24 55%,
        #d4e800 75%,
        transparent 90%
    );
    animation: rotateGlowBorder 3s linear infinite;
    z-index: -2;
}

/* Inner dark button core */
.innotrans-nav-btn::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: #091333;
    border-radius: 28px;
    z-index: -1;
    transition: background 0.3s;
}

.innotrans-nav-btn:hover {
    transform: scale(1.08) translateY(-1px);
    box-shadow: 0 0 25px rgba(212, 232, 0, 0.7), 0 0 45px rgba(0, 240, 255, 0.6) !important;
}

.innotrans-nav-btn:hover::after {
    background: #0e1e4a;
}

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

/* ========================================================
   LIGHT THEME & LUXURY INNOTRANS 2026 DESIGN SYSTEM
   ======================================================== */

/* 1. Light Hero Section */
.min-hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 20px 80px;
    background: #f8fafc url('/Public/04-fabrika/fabrika-1.png') center/cover no-repeat;
    color: #0e193b;
    text-align: center;
    overflow: hidden;
}

.min-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.88) 0%, rgba(248, 250, 252, 0.98) 100%);
    z-index: 1;
}

.min-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1050px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* SHARP FRAME WITH ROTATING LIGHT BEAM (LIGHT THEME) */
.sharp-light-beam-frame {
    position: relative;
    padding: 65px 55px;
    background: #ffffff;
    overflow: hidden;
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
    z-index: 1;
    border-radius: 0px;
    box-shadow: 0 25px 60px rgba(14, 25, 59, 0.08), 0 0 1px rgba(0, 0, 0, 0.1);
}

.sharp-light-beam-frame::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent 0deg,
        transparent 260deg,
        #243B86 300deg,
        #00a8ff 330deg,
        #70a800 350deg,
        transparent 360deg
    );
    animation: rotateFrameLightBeam 4.5s linear infinite;
    z-index: -2;
}

.sharp-light-beam-frame::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: #ffffff;
    z-index: -1;
}

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

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

.min-hero-title {
    font-size: 4.8rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 18px;
    letter-spacing: -2px;
    color: #0e193b;
}

.accent-glow-text {
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
}

.min-hero-lead {
    font-size: 1.25rem;
    color: #475569;
    letter-spacing: 0.5px;
    margin-bottom: 35px;
    font-weight: 600;
}

.min-hero-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.min-btn-primary {
    background: #243B86;
    color: #ffffff;
    padding: 16px 36px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(36, 59, 134, 0.25);
    border-radius: 0px;
}

.min-btn-primary:hover {
    background: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(227, 30, 36, 0.3);
    color: #ffffff;
}

.min-btn-secondary {
    background: transparent;
    color: #0e193b;
    border: 1.5px solid #cbd5e1;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    border-radius: 0px;
}

.min-btn-secondary:hover {
    border-color: #243B86;
    color: #243B86;
    background: #f1f5f9;
    transform: translateY(-2px);
}

/* Subtle Scroll Prompt */
.min-scroll-prompt {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #64748b;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-top: 35px;
    transition: color 0.2s;
}

.min-scroll-prompt:hover {
    color: #0e193b;
}

.prompt-line {
    width: 2px;
    height: 24px;
    background: linear-gradient(180deg, #243B86 0%, transparent 100%);
    animation: promptDrop 1.8s infinite;
}

@keyframes promptDrop {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* 2. Light Theme Showcase Container */
.min-showcase-container {
    background: #ffffff;
    color: #0e193b;
    padding: 80px 20px 140px;
    border-top: 1px solid #e2e8f0;
}

.min-showcase-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    max-width: 1200px;
    margin: 0 auto 120px auto;
    align-items: center;
}

.min-showcase-row.reverse-row {
    grid-template-columns: 1.1fr 1fr;
}

.min-section-badge {
    display: inline-block;
    color: #243B86;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.min-showcase-text h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #0e193b;
    margin-bottom: 18px;
    line-height: 1.2;
}

.min-showcase-text p {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.75;
    margin: 0;
}

.min-image-frame {
    height: 380px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 45px rgba(14, 25, 59, 0.08);
    background: #f8fafc;
}

.min-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.min-image-frame:hover img {
    transform: scale(1.04);
}

/* Slide-In Transitions (Soft & Fluid) */
.slide-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-left.visible,
.slide-in-right.visible,
.slide-in-up.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* 3. Light Theme Stand Section */
.min-stand-section {
    max-width: 960px;
    margin: 0 auto 120px auto;
}

.min-stand-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--primary-blue);
    padding: 55px 40px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(14, 25, 59, 0.05);
}

.min-stand-card h3 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #0e193b;
    margin-bottom: 12px;
}

.min-stand-card p {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 4. Light Theme B2B Meeting Card */
.min-b2b-section {
    max-width: 860px;
    margin: 0 auto;
}

.min-b2b-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 55px 45px;
    box-shadow: 0 20px 50px rgba(14, 25, 59, 0.06);
}

.min-b2b-header {
    text-align: center;
    margin-bottom: 35px;
}

.min-b2b-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0e193b;
    margin-bottom: 8px;
}

.min-b2b-header p {
    color: #64748b;
    font-size: 1.05rem;
    margin: 0;
}

.min-form-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.min-field-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.min-field-group input,
.min-field-group select {
    width: 100%;
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 0px;
    color: #0e193b;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.25s;
}

.min-field-group select option {
    background: #ffffff;
    color: #0e193b;
}

.min-field-group input:focus,
.min-field-group select:focus {
    outline: none;
    border-color: #243B86;
    box-shadow: 0 0 0 3px rgba(36, 59, 134, 0.12);
}

.min-submit-btn {
    background: #243B86;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-weight: 800;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    box-shadow: 0 10px 25px rgba(36, 59, 134, 0.2);
}

.min-submit-btn:hover {
    background: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(227, 30, 36, 0.3);
}

.min-success-box {
    margin-top: 15px;
    padding: 16px;
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
    .min-hero-title { font-size: 3.2rem; }
    .sharp-light-beam-frame { padding: 40px 25px; }
    .min-showcase-row,
    .min-showcase-row.reverse-row {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 70px;
    }
    .min-image-frame { height: 260px; }
    .min-field-group { grid-template-columns: 1fr; }
    .min-b2b-card { padding: 30px 20px; }
}

/* Dropdown Arrow */
.dropdown-arrow {
    font-size: 0.6rem;
    margin-left: 5px;
    vertical-align: middle;
}

/* Footer */
.main-footer {
    background-color: #0d1633;
    color: rgba(255,255,255,0.7);
    padding: 40px 20px;
    text-align: center;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ========================================================
   FULLSCREEN IMAGE LIGHTBOX MODAL
   ======================================================== */
.image-lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 25, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
}

.lightbox-content-container {
    position: relative;
    z-index: 2001;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoomInLightbox 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-close-btn {
    position: absolute;
    top: -45px;
    right: 0;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 1.2rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lightbox-close-btn:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    transform: rotate(90deg);
}

.lightbox-img-wrap {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-img-wrap img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.lightbox-caption {
    margin-top: 14px;
    color: #cbd5e1;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    max-width: 600px;
}

@keyframes zoomInLightbox {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================================
   RESPONSIVE DESIGN SYSTEM & BREAKPOINTS (END OF FILE CASCADE)
   ======================================================== */

/* 1. Large Laptops & Small Desktops (<=1200px) */
@media (max-width: 1200px) {
    .header-container {
        padding: 0 30px;
    }
    .nav-links {
        gap: 18px;
    }
    .hero-content h1 {
        font-size: 4rem;
    }
    .portfolio-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stories-grid-layout {
        grid-template-columns: 1fr 1fr;
    }
}

/* 2. Tablets & Small Laptops (<=1024px) - Switch to Mobile Nav */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 24px;
        height: 75px;
    }
    
    .main-nav {
        display: none !important;
    }

    .mobile-nav-toggle {
        display: flex !important;
    }

    .hero-content {
        max-width: 580px;
    }

    .hero-content h1 {
        font-size: 3.4rem;
    }

    .innotrans-section {
        padding: 60px 24px;
    }

    .innotrans-content-wrap {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        padding: 40px 24px !important;
    }

    .innotrans-curved-box {
        padding: 40px 30px;
    }

    .innotrans-title {
        font-size: 2.6rem;
    }

    .innotrans-floating-badge {
        position: static !important;
        transform: none !important;
        margin-top: 30px !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 16px !important;
        padding: 20px !important;
        flex-direction: row !important;
        justify-content: space-between !important;
    }

    .innotrans-floating-badge:hover {
        transform: scale(1.02) !important;
    }

    .stories-grid-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .story-card-mini {
        grid-template-columns: 240px 1fr;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
    }

    .about-banner-card {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }

    .quality-pillars {
        grid-template-columns: 1fr;
    }

    .projects-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-mosaic {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.span-2-col {
        grid-column: span 1;
    }
}

/* 3. Tablets & Phablets (<=768px) */
@media (max-width: 768px) {
    .header-container {
        padding: 0 16px;
        height: 70px;
    }

    .logo {
        background: transparent;
        padding: 0;
    }

    .logo img {
        height: 34px;
    }

    .main-header::before {
        width: 200px;
    }

    .hero-section {
        height: 85vh;
        min-height: 520px;
        max-height: 700px;
    }

    .hero-content-container {
        padding: 0 20px;
        align-items: flex-end;
        padding-bottom: 50px;
    }

    .hero-content {
        margin-top: 0;
        max-width: 100%;
    }

    .red-bar {
        width: 45px;
        height: 5px;
        margin-bottom: 16px;
    }

    .hero-content h1 {
        font-size: clamp(2.1rem, 7vw, 2.7rem);
        line-height: 1.15;
        margin-bottom: 20px;
        letter-spacing: -1px;
    }

    .video-control {
        bottom: 16px;
        right: 16px;
        width: 38px;
        height: 38px;
    }

    .innotrans-section {
        padding: 40px 16px;
    }

    .innotrans-hero-card {
        min-height: auto;
        border-radius: 20px;
        background: #0f1c3f;
    }

    .innotrans-content-wrap {
        padding: 20px 14px;
        max-width: 100%;
    }

    .innotrans-curved-box {
        padding: 24px 20px;
        width: 100%;
        border-radius: 16px;
        box-sizing: border-box;
    }

    .innotrans-title {
        font-size: 2.1rem;
        line-height: 1.15;
        margin-bottom: 14px;
        max-width: 100%;
    }

    .innotrans-desc {
        font-size: 0.95rem;
        line-height: 1.6;
        max-width: 100%;
        margin-bottom: 0;
    }

    .innotrans-floating-badge {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 12px !important;
        padding: 14px 18px !important;
        margin-top: 20px !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        text-align: left !important;
    }

    .innotrans-badge-head {
        font-size: 0.95rem;
        margin-bottom: 0;
    }

    .innotrans-badge-date {
        display: none;
    }

    .innotrans-badge-link {
        font-size: 0.88rem;
    }

    .stories-section,
    .corporate-section,
    .portfolio-showcase-section,
    .gallery-showcase-section {
        padding: 50px 16px;
    }

    .highlights-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 25px;
    }

    .section-main-title,
    .corporate-header h2,
    .gallery-header h2 {
        font-size: 1.85rem;
        line-height: 1.25;
    }

    .corporate-header {
        margin-bottom: 30px;
    }

    .corporate-header p {
        font-size: 0.98rem;
    }

    .story-card-large .story-img-wrap {
        height: 220px;
    }

    .story-card-mini {
        grid-template-columns: 1fr;
    }

    .story-card-mini .story-img-wrap {
        height: 190px;
    }

    .story-card-body {
        padding: 20px 16px;
    }

    .vm-card {
        padding: 26px 18px;
    }

    .about-banner-card {
        padding: 28px 18px;
    }

    .about-facility-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .facility-stat-box {
        padding: 15px 10px;
    }

    .facility-stat-box .num {
        font-size: 1.6rem;
    }

    .quality-box {
        padding: 26px 18px;
    }

    .portfolio-metrics-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .metric-highlight-card {
        padding: 16px 14px;
    }

    .metric-val {
        font-size: 1.6rem;
    }

    /* Filter Bar scroll on mobile */
    .portfolio-filter-container {
        margin-bottom: 20px;
    }

    .portfolio-filter-bar {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 4px 2px 10px 2px;
        gap: 6px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .portfolio-filter-bar::-webkit-scrollbar {
        display: none;
    }

    .portfolio-filter-btn {
        flex-shrink: 0;
        padding: 7px 15px;
        font-size: 0.82rem;
        white-space: nowrap;
    }

    .projects-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-card-image {
        height: 190px;
    }

    .project-card-content {
        padding: 18px 16px;
    }

    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 20px;
    }

    .gallery-mosaic {
        grid-template-columns: 1fr;
        grid-auto-rows: 190px;
        gap: 12px;
    }

    .gallery-item.span-2-col {
        grid-column: span 1;
    }

    .gallery-item.span-2-row {
        grid-row: span 1;
    }

    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(14, 25, 59, 0.85) 0%, transparent 65%);
    }

    .partners-badges-row {
        gap: 8px;
    }

    .partner-pill {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    .inner-page-hero {
        padding: 105px 16px 35px;
    }

    .inner-hero-title {
        font-size: 2rem;
    }

    .inner-page-body-section {
        padding: 35px 16px 50px;
    }

    .inner-layout-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .inner-article-card {
        padding: 22px 16px;
        border-radius: 16px;
    }

    .detail-featured-image {
        height: 220px;
    }

    .content-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* 4. Small Mobile Screens (<=480px) */
@media (max-width: 480px) {
    .header-container {
        padding: 0 12px;
    }

    .header-actions .language-selector {
        display: none; /* Already in mobile drawer */
    }

    .header-contact-btn {
        padding: 6px 12px;
        font-size: 0.76rem;
    }

    .hero-content h1 {
        font-size: 1.9rem;
    }

    .innotrans-curved-box {
        padding: 20px 16px;
    }

    .innotrans-title {
        font-size: 1.85rem;
    }

    .about-facility-stats {
        grid-template-columns: 1fr;
    }

    .portfolio-metrics-grid {
        grid-template-columns: 1fr;
    }

    .section-main-title,
    .corporate-header h2,
    .gallery-header h2 {
        font-size: 1.65rem;
    }

    .vm-icon-bubble {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .vm-card h3 {
        font-size: 1.3rem;
    }

    .project-title {
        font-size: 1.15rem;
    }
}

/* ========================================================
   HEAVY INDUSTRIAL SPECIFICATION MODAL & SINGLE-TONE CARDS
   (No emojis, strictly serious, authoritative industrial UI)
   ======================================================== */
.tech-modal {
    position: fixed;
    inset: 0;
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    padding: 20px;
}

.tech-modal.active {
    opacity: 1;
    visibility: visible;
}

.tech-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    cursor: pointer;
}

.tech-modal-dialog {
    position: relative;
    z-index: 2501;
    background: #ffffff;
    width: 100%;
    max-width: 680px;
    max-height: 88vh;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: modalSlideIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.tech-modal-header {
    padding: 22px 28px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
}

.tech-modal-badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    color: #243B86;
    background: none;
    padding: 0;
    border-radius: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.tech-modal-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.3;
}

.tech-modal-close {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    color: #475569;
    font-size: 1.1rem;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s;
    margin-left: 15px;
    flex-shrink: 0;
}

.tech-modal-close:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

.tech-modal-body {
    padding: 24px 28px;
    overflow-y: auto;
    flex: 1;
}

.tech-modal-desc {
    color: #334155;
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 22px;
}

.tech-modal-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.tech-modal-specs-table th {
    background: #f8fafc;
    color: #475569;
    font-weight: 700;
    text-align: left;
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
    width: 38%;
}

.tech-modal-specs-table td {
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
    color: #1e293b;
}

.tech-modal-footer {
    padding: 16px 28px;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.tech-modal-cta-btn {
    background: #243B86;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s;
}

.tech-modal-cta-btn:hover {
    background: #0f172a;
    color: #ffffff;
}

.tech-modal-pdf-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #0f172a;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    border: 1px solid #334155;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.tech-modal-pdf-download-btn:hover {
    background: #243B86;
    color: #ffffff;
}

.tech-modal-secondary-btn {
    background: #ffffff;
    color: #475569;
    border: 1px solid #cbd5e1;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.15s;
}

.tech-modal-secondary-btn:hover {
    background: #f1f5f9;
    color: #0f172a;
}

/* Industrial Spec Cards on Pages */
.industrial-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
}

.industrial-card:hover {
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
    transform: translateY(-4px);
    border-color: #cbd5e1;
}

.industrial-card-img-wrap {
    width: 100%;
    height: 220px;
    background: #0f172a;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.industrial-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
    cursor: pointer;
}

.industrial-card:hover .industrial-card-img-wrap img {
    transform: scale(1.05);
}

.industrial-card-body {
    padding: 24px 24px 16px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.industrial-card-actions {
    padding: 0 24px 24px 24px;
}

.industrial-card-tag {
    display: none;
}

.industrial-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0b192c;
    margin-bottom: 10px;
    line-height: 1.35;
    cursor: pointer;
}

.industrial-card-text {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.55;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.industrial-card-btn {
    width: 100%;
    text-align: center;
    background: #ffffff;
    color: #1e3a8a;
    border: 1px solid #d1d5db;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.industrial-card-btn:hover {
    background: #f8fafc;
    color: #0f2766;
    border-color: #94a3b8;
}

/* Modal Mini Gallery Slider */
.modal-gallery-wrap {
    margin-bottom: 22px;
    border-radius: 8px;
    overflow: hidden;
    background: #0f172a;
    border: 1px solid #cbd5e1;
}

.modal-gallery-main {
    position: relative;
    width: 100%;
    height: 310px;
    background: #0b1329;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.modal-gallery-main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    transition: opacity 0.2s ease;
}

.modal-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.75);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.2s;
    z-index: 5;
}

.modal-gallery-arrow:hover {
    background: #243B86;
}

.modal-gallery-prev { left: 12px; }
.modal-gallery-next { right: 12px; }

.modal-gallery-thumbs {
    display: flex;
    gap: 8px;
    padding: 10px 12px;
    background: #1e293b;
    overflow-x: auto;
    scrollbar-width: thin;
}

.modal-gallery-thumbs::-webkit-scrollbar {
    height: 4px;
}

.modal-gallery-thumbs::-webkit-scrollbar-thumb {
    background: #475569;
    border-radius: 4px;
}

.modal-thumb-item {
    width: 64px;
    height: 48px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.55;
    border: 2px solid transparent;
    flex-shrink: 0;
    transition: all 0.2s;
}

.modal-thumb-item.active,
.modal-thumb-item:hover {
    opacity: 1;
    border-color: #38bdf8;
}

.modal-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========================================================
   RICH CORPORATE FOOTER (TÜRASAŞ / BCY Benchmark Structure)
   ======================================================== */
.site-main-footer {
    background: #0b1329;
    color: #cbd5e1;
    padding-top: 80px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px 65px;
}

.footer-grid-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
    gap: 45px;
}

.footer-col-brand {
    padding-right: 15px;
}

.footer-brand-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.footer-brand-desc {
    font-size: 0.92rem;
    line-height: 1.75;
    color: #94a3b8;
    margin-bottom: 25px;
}

.footer-social-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-social-icon:hover {
    background: #243B86;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(36, 59, 134, 0.4);
}

.footer-col-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 22px;
    letter-spacing: -0.2px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-links-list li a .f-arrow {
    color: #38bdf8;
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.footer-links-list li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-links-list li a:hover .f-arrow {
    transform: translateX(2px);
    color: #ffffff;
}

/* Bottom Bar */
.footer-bottom-bar {
    background: #070d1e;
    padding: 22px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copy-text {
    font-size: 0.88rem;
    color: #64748b;
}

.footer-center-logo img {
    height: 28px;
    opacity: 0.85;
}

.footer-legal-links {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 0.88rem;
}

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

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

.footer-legal-links .f-dot {
    color: #475569;
}

.back-to-top-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #ffffff;
    color: #0b1329;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.back-to-top-btn:hover {
    background: #38bdf8;
    color: #070d1e;
    transform: translateY(-3px);
}

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

@media (max-width: 640px) {
    .footer-grid-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-top-container {
        padding: 0 20px 45px;
    }

    .footer-bottom-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

