@font-face {
    font-family: 'Mont';
    src: url('fonts/Mont/Mont-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Mont';
    src: url('fonts/Mont/Mont-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Mont';
    src: url('fonts/Mont/Mont-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Mont';
    src: url('fonts/Mont/Mont-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Mont';
    src: url('fonts/Mont/Mont-Heavy.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Mont';
    src: url('fonts/Mont/Mont-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
}

/* CSS Reset & Basics */
body {
    font-family: 'Mont', sans-serif !important;
    margin: 0;
    padding: 0;
}

/* SVG Topbar Arkaplanı */
.topbar {
    width: 100%;
    height: 50px;
    background-image: url("data:image/svg+xml,%3Csvg width='1920' height='67' viewBox='0 0 1920 67' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0H1920V67H0V0Z' fill='url(%23paint0_linear_1_286)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_1_286' x1='960' y1='0.000662339' x2='23.5' y2='67.0007' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23F9F8FC'/%3E%3Cstop offset='1' stop-color='%23E5EEFC'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
}

.topbar-link {
    color: #0061AF;
    text-decoration: none;
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0;
    display: inline-block;
    transition: color 0.3s;
}

.topbar-link:hover {
    color: #0061AF;
}

/* Header Styles */
.main-header {
    background-color: #ffffff;
    height: 100px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04); */
    position: sticky;
    top: 0;
    z-index: 1050;
    /* Ensure it stays above everything else, including scroll sequence */
}

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

.header-nav {
    list-style: none;
}

.header-nav .nav-link {
    color: #0061AF;
    font-size: clamp(12px, 1.1vw, 16px);
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    /* Altındaki çizgi için boşluk bırakkıyoruz */
}

/* Dinamik Manyak Çizgi Efekti */

.header-nav .nav-link:hover,
.has-megamenu:hover .nav-link {
    font-weight: 700;
}

.header-nav .nav-link.active {
    font-weight: 800;
    color: #0061AF;
}

.btn-quote {
    background-color: #0061AF;
    color: #ffffff !important;
    font-weight: 600;
    font-size: clamp(12px, 1vw, 14px);
    padding: clamp(6px, 0.8vw, 10px) clamp(16px, 1.5vw, 24px);
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-quote:hover {
    background-color: #0061AF;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 94, 173, 0.3);
}

/* Badge (Dünya/Mühendislik Kutusu) */
.badge-container {
    border: 1px solid #E5EEFC;
    border-radius: 50px;
    padding: 8px 16px;
    background: #ffffff;
    display: flex;
    align-items: center;
}

.badge-text-top {
    font-size: 14px;
    font-weight: 600;
    color: #0061AF;
    letter-spacing: 0.5px;
}

.badge-text-bottom {
    font-size: 14px;
    font-weight: 800;
    color: #0061AF;
}

/* Custom Container */
.custom-container {
    max-width: 1550px !important;
    margin: 0 auto;
}

/* MEGA MENU */
.has-megamenu {
    position: static;
    height: 100%;
}

.megamenu {
    position: absolute;
    top: 100%;
    right: 15px;
    /* Hizalamak için padding'e uygun uzaklık */
    width: 1300px;
    max-width: calc(100vw - 30px);
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 999;
    /* Figma stroke */
    overflow: hidden;
}

.has-megamenu:hover .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.megamenu-heading {
    font-size: 11px;
    font-weight: 800;
    color: #0061AF;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.megamenu-list {
    margin: 0;
    padding: 0;
}

.megamenu-list li {
    margin-bottom: 2px;
}

.megamenu-link {
    color: #0061AF;
    text-decoration: none;
    font-size: 14.5px;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    margin-left: -12px;
}

.megamenu-link:hover {
    color: #0061AF;
    background-color: #F5FAFF;
}

.megamenu-link.text-muted {
    font-weight: 500;
    color: #8C99B1 !important;
}

.megamenu-link.text-muted:hover {
    color: #0061AF !important;
    background-color: #F5FAFF;
}

.megamenu-promo {
    border: 1px solid #E5EEFC;
    background-color: #F9FBFF;
    border-radius: 18.5px;
}

.megamenu-bottom-bar {
    background: linear-gradient(267deg, #F9F8FC 0%, #E5EEFC 100%);
    border-top: 1px solid #E5EEFC;
}

.megamenu-item-hover {
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-left: -8px;
    padding-left: 8px !important;
    padding-right: 8px !important;
}

.megamenu-item-hover .title-text {
    transition: color 0.3s ease;
}

.megamenu-item-hover:hover {
    background-color: #F5FAFF;
}

.megamenu-item-hover:hover .title-text {
    color: #0061AF !important;
}

.fast-link {
    transition: color 0.3s ease, opacity 0.3s ease;
}

.fast-link:hover {
    color: #0061AF !important;
    opacity: 0.8;
}

/* =========================================
   FULLSCREEN MOBILE MENU (Level System)
========================================= */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    visibility: hidden;
}

.fullscreen-menu.is-open {
    pointer-events: all;
    visibility: visible;
}

/* Panels */
.menu-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    overflow-y: auto;
}

/* Level 1 - slides from right */
.menu-level-1 {
    transform: translateX(100%);
    opacity: 0;
}

.fullscreen-menu.is-open .menu-level-1 {
    transform: translateX(0);
    opacity: 1;
}

/* Level 2 - slides from right, on top of Level 1 */
.menu-level-2 {
    transform: translateX(100%);
    opacity: 0;
    z-index: 2;
}

.menu-level-2.is-active {
    transform: translateX(0);
    opacity: 1;
}

/* Panel Header */
.menu-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    flex-shrink: 0;
}

/* Panel Body */
.menu-panel-body {
    flex: 1;
    padding: 10px 28px 28px;
    overflow-y: auto;
}

/* Panel Footer */
.menu-panel-footer {
    padding: 20px 28px 28px;
    border-top: 1px solid #E5EEFC;
    flex-shrink: 0;
}

/* CloseButton */
.menu-close-btn {
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #003F7A;
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.menu-close-btn:hover {
    background-color: #F5FAFF;
    transform: rotate(90deg);
}

/* Back Button */
.menu-back-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #0061AF;
    font-size: 15px;
    font-weight: 700;
    transition: opacity 0.3s ease;
    padding: 6px 0;
}

.menu-back-btn:hover {
    opacity: 0.7;
}

/* Level 1 Menu Items */
.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-list li {
    border-bottom: 1px solid #F0F4FA;
}

.menu-list li:last-child {
    border-bottom: none;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.menu-item-text {
    font-size: 22px;
    font-weight: 700;
    color: #003F7A;
    letter-spacing: -0.3px;
}

.menu-item-arrow {
    color: #0061AF;
    font-size: 22px;
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-item:hover .menu-item-text {
    color: #0061AF;
}

.menu-item:hover .menu-item-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.menu-item:hover {
    padding-left: 6px;
}

/* Level 2 Titles & Lists */
.menu-level2-title {
    font-size: 26px;
    font-weight: 800;
    color: #003F7A;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
}

.menu-sub-heading {
    color: #0061AF;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.menu-sub-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.menu-sub-list li {
    margin-bottom: 0;
}

.menu-sub-list a {
    text-decoration: none;
    color: #5A6B85;
    font-size: 17px;
    font-weight: 600;
    display: block;
    padding: 6px 12px;
    border-radius: 8px;
    transition: color 0.3s ease, background-color 0.3s ease, padding-left 0.3s ease;
}

.menu-sub-list a:hover {
    color: #0061AF;
    background-color: #F5FAFF;
    padding-left: 18px;
}

/* Footer elements */
.menu-footer-label {
    color: #8C99B1;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.menu-lang-switch {
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    color: #003F7A;
    transition: color 0.3s ease;
}

.menu-lang-switch:hover {
    color: #0061AF;
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Custom Hamburger Icon */
.hamburger-btn {
    width: 44px;
    height: 44px;
    cursor: pointer;
}

.hamburger-icon {
    width: 26px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: #0061AF;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: center;
}

.hamburger-icon span:nth-child(2) {
    width: 70%;
}

.hamburger-btn:hover .hamburger-icon span:nth-child(2) {
    width: 100%;
}


/* =========================================
   HERO SECTION
========================================= */
.hero-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 100px);
    /* Strict height to avoid scroll, minus header height */
    background-image: url('img/her_back.svg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-grid-floor {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 46%;
    background-image: url('img/heroback_01.png');
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.8;
    mix-blend-mode: color-burn;
}

.hero-row {
    height: 100%;
}

.hero-title {
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
}

.hero-title-light {
    font-size: clamp(40px, 4.5vw, 60px);
    font-weight: 300;
    color: #0059B2;
}

.hero-title-bold {
    font-size: clamp(44px, 5vw, 68px);
    font-weight: 500;
    color: #0059B2;
    display: inline-block;
    margin-top: 4px;
}

.hero-desc {
    font-size: 17px;
    font-weight: 500;
    color: #8A9CAE;
    line-height: 1.6;
    max-width: 550px;
    letter-spacing: 0px;
}

.hero-cta-btn {
    background-color: #005CBB !important;
    color: #ffffff !important;
    font-weight: 500;
    font-size: 17px;
    padding: 16px 36px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 92, 187, 0.2);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.hero-cta-btn:hover {
    background-color: #004D95 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 92, 187, 0.3);
}

/* Info Cards */
.hero-info-card {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 28px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.hero-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 92, 187, 0.06);
    background: rgba(255, 255, 255, 0.5);
}

.hero-badge {
    background-color: transparent;
    color: #0059B2;
    border: 1px solid #D5E5F5;
    border-radius: 50px;
    font-weight: 800;
    font-size: 12px;
    padding: 8px 16px;
    display: inline-block;
    margin-bottom: 24px;
}

.hero-icon-wrapper {
    margin-bottom: 16px;
}

.hero-icon-wrapper .material-symbols-outlined {
    font-size: 26px;
    color: #0059B2;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.icon-stroke {
    -webkit-text-stroke: 1px #0059B2;
}

.hero-info-title {
    font-size: 15px;
    font-weight: 800;
    color: #0059B2;
    margin-bottom: 12px;
    line-height: 1.4;
}

.hero-info-desc {
    font-size: 13.5px;
    color: #8A9CAE;
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 500;
}

/* Right Side Image Area */
.hero-image-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 240, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}

.hero-machine-img {
    max-height: calc(100vh - 120px);
    max-width: 100%;
    object-fit: contain;
    z-index: 2;
    transform: translateY(10px);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        height: auto;
        min-height: auto;
        padding-top: 40px;
        padding-bottom: 60px;
        display: block;
        /* Disable flex centering to allow full scrolling text */
    }

    .hero-row {
        height: auto;
        align-items: flex-start !important;
    }

    .hero-title {
        margin-bottom: 20px;
    }

    .hero-title-light {
        font-size: 32px;
    }

    .hero-title-bold {
        font-size: 36px;
        margin-top: 2px;
    }

    .hero-desc {
        font-size: 15px;
        margin-bottom: 30px !important;
    }

    .hero-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .hero-info-card {
        padding: 20px;
    }

    .hero-content {
        padding-bottom: 40px !important;
    }

    .hero-image-col {
        margin-top: 20px;
    }

    .hero-machine-img {
        max-height: 400px;
        margin-top: 20px;
        transform: translateY(0);
    }

    .hero-glow {
        width: 300px;
        height: 300px;
    }

    .hero-grid-floor {
        height: 35%;
        /* Adjust background visual element height for stacked layout */
    }
}

/* =========================================
   CUSTOM ANIMATIONS
========================================= */

@keyframes slideDownFade {
    0% {
        opacity: 0;
        transform: translateY(-150px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUpFadeHeroImage {
    0% {
        opacity: 0;
        transform: translateY(150px);
    }

    100% {
        opacity: 1;
        transform: translateY(10px);
    }
}

@keyframes slideUpFadeHeroImageMobile {
    0% {
        opacity: 0;
        transform: translateY(150px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInSimple {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.animate-slide-down {
    opacity: 0;
    /* Base fallback, will be overridden */
    animation: slideDownFade 1.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-title.animate-slide-down {
    animation-duration: 1.6s;
    animation-delay: 0.4s;
}

.hero-desc.animate-slide-down {
    animation-duration: 1.6s;
    animation-delay: 0.4s;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeInSimple 1.0s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.animate-slide-up-fast {
    opacity: 0;
    animation: slideUpFadeHeroImage 1.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.4s;
}

/* Background sliding up */
.animate-bg-slide-up {
    background-position: center 150px;
    animation: bgSlideUpCenter 1.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.4s;
}

@keyframes bgSlideUpCenter {
    0% {
        background-position: center 150px;
    }

    100% {
        background-position: center center;
    }
}

.delay-100 {
    animation-delay: 100ms;
}

.delay-200 {
    animation-delay: 200ms;
}

.delay-300 {
    animation-delay: 300ms;
}

.delay-400 {
    animation-delay: 400ms;
}

@media (max-width: 991.98px) {
    .animate-slide-up-fast {
        animation-name: slideUpFadeHeroImageMobile;
    }
}

/* Button Text and Icon Reveal */
.btn-text-reveal {
    display: inline-block;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    vertical-align: bottom;
    animation: revealBtnText 1.0s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 1.0s;
    /* Finishes at 2.0s */
}

.btn-icon-reveal {
    display: inline-block;
    opacity: 0;
    transform: scale(0.5) translateX(-10px);
    animation: revealBtnIcon 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 1.6s;
    /* Finishes at 2.0s */
}

@keyframes revealBtnText {
    0% {
        max-width: 0;
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    100% {
        max-width: 200px;
        opacity: 1;
    }
}

@keyframes revealBtnIcon {
    0% {
        opacity: 0;
        transform: scale(0.5) translateX(-10px);
    }

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

/* =========================================
   SCROLL SEQUENCE (WEBP FRAMES)
========================================= */
.scroll-animation-section {
    position: relative;
    height: 350vh;
    /* Bu yükseklik kaydırma süresini (scroll payını) belirliyor. */
    background-color: #000;
    width: 100%;
}

.sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#hero-lightpass {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    pointer-events: none;
}

.scroll-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.sequence-title {
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.sequence-desc {
    font-size: clamp(14px, 1.2vw, 16.5px);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.6;
    letter-spacing: 0.2px;
}

.sequence-text-block {
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;
    height: 100%;
    opacity: 0;
    transform: translateX(60px);
    /* Başlangıçta sağda bekler */
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}

.sequence-text-block.active {
    opacity: 1;
    transform: translateX(0);
    /* Ekranda tam yerinde */
    pointer-events: auto;
}

.sequence-text-block.exit {
    opacity: 0;
    transform: translateX(-60px);
    /* Sola doğru kaybolur */
    pointer-events: none;
}

.sequence-btn {
    background-color: #64B5F6;
    /* Similar light blue from screenshot */
    color: #ffffff !important;
    border-radius: 50px;
    padding: 14px 34px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.sequence-btn:hover {
    background-color: #42A5F5;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(100, 181, 246, 0.4);
}

/* Scroll Sequence Mobile Responsiveness */
@media (max-width: 991.98px) {
    #hero-lightpass {
        width: 100vw !important;
        height: 100vh !important;
        object-fit: cover !important;
        /* M harfini (sağ tarafı) daha çok kameraya sokar */
    }

    .sequence-title {
        font-size: 32px;
    }

    .sequence-desc {
        font-size: 15px;
    }

    .sequence-text-block {
        left: 10px;
        right: 10px;
    }

    .sequence-text-block .row {
        padding-bottom: 30px !important;
    }

    .sequence-btn {
        padding: 12px 28px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }
}

/* =========================================
   NEDEN MENTIS SECTION
========================================= */
.why-mentis-section {
    position: relative;
    background-image: url('img/neden_mentis.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    display: flex;
    align-items: center;
}

.why-mentis-title {
    font-size: clamp(40px, 4.5vw, 64px);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -1px;
}

.why-feature-box {
    display: flex;
    flex-direction: column;
}

.why-icon {
    font-size: 32px;
    color: #ffffff;
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.why-feature-title {
    font-size: 21px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    letter-spacing: -0.2px;
}

.why-feature-desc {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Neden Mentis Mobile Responsiveness */
@media (max-width: 767.98px) {
    .why-mentis-title {
        font-size: 42px;
        margin-bottom: 30px !important;
    }

    .why-icon {
        font-size: 26px;
        margin-bottom: 10px !important;
    }

    .why-feature-title {
        font-size: 15px;
        margin-bottom: 8px !important;
        line-height: 1.3;
    }

    .why-feature-desc {
        font-size: 13px;
        line-height: 1.4;
    }
}

/* CSS removed to keep things normal for Chrome */

/* =========================================
   HIZMETLERIMIZ SECTION
========================================= */
.hizmetler-section {
    background: linear-gradient(180deg, #F9F8FC 0%, #F0F6FF 100%);
}

.main-hizmet-title {
    color: #0061AF;
    font-size: clamp(32px, 3.5vw, 42px);
    font-weight: 800;
    margin-bottom: 12px;
}

.main-hizmet-subtitle {
    color: #0061AF;
    /* Resimdeki mavi tona uygun güncelledim */
    font-size: 16px;
    font-weight: 500;
}

.hizmet-all-btn {
    display: inline-block;
    background-color: #0061AF;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 87, 184, 0.25);
    transition: all 0.3s ease;
}

.hizmet-all-btn:hover {
    background-color: #004A9E;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 87, 184, 0.4);
}

.hizmet-card-svg-small {
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    position: relative;
    border: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
    aspect-ratio: 360 / 384;
    /* Orijinal SVG dik oranı */
    width: 100%;
}

.hizmet-card-svg-small:hover {
    transform: translateY(-5px);
}

.hizmet-icon-wrapper {
    margin-bottom: 25px;
}

.hizmet-icon {
    color: #4AA6F3;
    font-size: 36px;
    font-variation-settings: 'wght' 300;
}

.hizmet-title {
    color: #0061AF;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.2px;
}

.hizmet-desc {
    color: #61A3DE;
    /* Lighter than title, dark enough to be readable */
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    max-width: 200px;
}

.hizmet-card-svg {
    background-size: 100% 100%;
    /* Aspect ratio korunduğu için asla squish (ezilme) olmaz! */
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 0 0 0 3%;
    /* Yazıyı içeri doğru %10 itele */
    position: relative;
    border: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
    aspect-ratio: 761 / 384;
    /* Orijinal SVG ratio. Tüm sığma problemlerini çözer! */
    width: 100%;
}

.hizmet-card-svg:hover {
    transform: translateY(-5px);
}

.hizmet-wide-content {
    max-width: 55%;
    position: relative;
    z-index: 5;
}

/* On mobile, stack wide cards */
@media (max-width: 991.98px) {
    .hizmet-card-svg {
        padding: 0 0 0 5%;
        background-size: 100% 100%;
    }

    .hizmet-wide-content {
        max-width: 50%;
        /* Yazıların sağdaki halkaya sızmasını önler */
    }

    .hizmet-card-svg .hizmet-title {
        font-size: 15px;
        /* Mobilde aşırı devasa olmasını önler */
        line-height: 1.2;
    }

    .hizmet-card-svg .hizmet-desc {
        font-size: 11px;
        /* Telefona sığacak ufaklıkta zarif olur */
        line-height: 1.3;
        margin-top: 8px !important;
        max-width: 130px;
    }

    .hizmet-card-svg-small {
        padding: 12px 10px;
        background-size: 100% 100%;
        max-width: 100%;
        /* Sınırı kaldırarak bulunduğu 50%'lik sütuna tam yayılır */
        margin: 0 auto;
        aspect-ratio: 360 / 384;
    }

    .hizmet-card-svg-small .hizmet-icon-wrapper {
        margin-bottom: 8px !important;
    }

    .hizmet-card-svg-small .hizmet-icon {
        font-size: 22px;
    }

    .hizmet-card-svg-small .hizmet-title {
        font-size: 13px;
        line-height: 1.25;
    }

    .hizmet-card-svg-small .hizmet-desc {
        font-size: 9.5px;
        line-height: 1.35;
        margin-top: 5px !important;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* =========================================
   DUAL SPLIT FEATURES SECTION
========================================= */
.split-features-section {
    width: 100%;
}

.split-box {
    min-height: 900px;
    /* Kutular daha uzun ve geniş olsun diye 900px'e çıkarıldı */
    overflow: hidden;
}

.split-left {
    background: linear-gradient(135deg, #fbfcfd 0%, #eef5fb 100%);
    /* Buz mavisi/beyaz gradient arka plan */
}

.split-right {
    background-color: #0061AF;
    /* Tasarımdaki özel tok koyu mavi */
}

.split-content {
    padding: 10% 12% 0 12%;
    position: relative;
    z-index: 2;
}

.split-left .split-title {
    color: #0061AF;
}

.split-left .split-desc {
    color: #0061AF;
}

.split-title {
    font-size: clamp(32px, 3.5vw, 44px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.split-desc {
    font-size: clamp(14px, 1.2vw, 15px);
    line-height: 1.6;
}

.split-btn {
    background-color: #ffffff;
    color: #0061AF !important;
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 800;
    font-size: 14.5px;
    border: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.split-btn:hover {
    transform: translateY(-2px);
    background-color: #f8f9fa !important;
    color: #0061AF !important;
}

.split-btn-light {
    box-shadow: 0 10px 30px rgba(0, 97, 175, 0.15);
    /* Hafif dış parmak izi mavi shadow */
}

.split-btn-light:hover {
    box-shadow: 0 12px 35px rgba(0, 97, 175, 0.25);
}

.split-btn-white {
    box-shadow: none;
    /* Mavi zeminde temiz beyaz */
}

.split-btn-white:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.split-image-container {
    height: 100%;
    /* Resimlerin alt kenara dayanmasını sağlamak için var */
}

@media (max-width: 991.98px) {
    .split-box {
        min-height: 550px;
        /* Mobilde biraz daraltıyoruz */
    }

    .split-content {
        padding: 40px 30px 0 30px;
    }
}

/* =========================================
   PSA SECTION
========================================= */
.psa-section {
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
    padding-top: 50px;
}

.psa-blue-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 167px;
    background-color: #005295;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top: 1px solid #000000;
    border-left: 1px solid #000000;
    border-right: 1px solid #000000;
    border-bottom: none;
    box-sizing: border-box;
    z-index: 1;
}

.psa-image-col {
    position: relative;
    z-index: 2;
    padding-right: 5%;
    padding-bottom: 0 !important;
}

.psa-machine-img {
    max-height: 750px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transform: none;
    /* Taşma sıfırlandı, resim tam sıfıra oturacak */
}

.psa-content-col {
    position: relative;
    z-index: 2;
    padding-left: 5%;
    padding-bottom: 70px;
    transform: translateY(-50px);
    /* Sağ tarafı biraz yukarı kaldırır */
}

.psa-title {
    color: #005295;
    font-size: clamp(38px, 4vw, 56px);
    font-weight: 600;
    /* Alt satırları daha kibar yapar */
    line-height: 1.2;
}

.psa-title .fw-black {
    font-weight: 700;
    /* PSA yazısını kocaman ve kapkaranlık/kalın yapar */
}

.psa-text p {
    color: #2D6A9F;
    /* Tasarımdaki daha koyu/orta mavi ton */
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 500;
}

.psa-text strong {
    color: #005295;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .psa-blue-bg {
        display: none;
        /* Mobilde alt mavi şapkayı iptal et */
    }

    .psa-image-col {
        display: none;
        /* Mobilde cihaz görselini tamamen gizle */
    }

    .psa-content-col {
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 30px;
        margin-top: 20px;
        transform: none;
        /* Mobilde yukarı çekmeyi iptal et */
    }

    .psa-title {
        font-size: 34px;
        margin-bottom: 20px;
        text-align: center;
        /* Mobilde sadece yazı kaldığı için başlığı ortalamak şık olur */
    }

    .psa-text p {
        font-size: 15px;
        text-align: center;
        /* Sadece metin olduğundan bunu da ortalayalım */
    }
}

/* =========================================
   HABERLER SECTION
========================================= */
.haberler-section {
    background-color: #0061AF;
}

.haber-main-title {
    color: #ffffff;
    font-size: clamp(32px, 4vw, 45px);
    font-weight: 600;
    line-height: 1.25;
}

.haber-all-btn {
    background-color: #ffffff;
    color: #0061AF;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.haber-all-btn:hover {
    background-color: #f0f6ff;
    color: #005295;
    transform: translateY(-2px);
}

.haber-card {
    background-color: #005BA4;
    /* Tasarımdaki alt kutu rengi */
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.haber-card:hover {
    transform: translateY(-8px);
}

.haber-img {
    width: 100%;
    height: 214px;
    /* Tasarımdaki görsel net yüksekliği */
    object-fit: cover;
}

.haber-content {
    padding: 25px 20px;
}

.haber-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    /* Satır yüksekliği 28px civarına denk gelir */
    min-height: 84px;
    /* Tam 3 satır yer ayırır, böylece alttaki açıklamalar aynı hizadan başlar */
    margin-bottom: 12px;
}

.haber-desc {
    color: #ffffff;
    opacity: 0.5;
    /* Soluk ve zarif açık mavi tonda gövde metni */
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 0;
    font-weight: 400;
}

.haber-slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.haber-slider-btn:hover,
.haber-slider-btn:active {
    background-color: #ffffff;
    color: #0061AF;
    border-color: #ffffff;
    transform: scale(1.05);
}

.haber-slider-btn .material-symbols-outlined {
    font-size: 24px;
}

/* =========================================
   FOOTER SECTION
========================================= */
.mentis-footer {
    background-color: #fafbfc;
    padding-top: 60px;
}

.footer-col {
    padding: 60px 40px;
    border-right: 1px solid rgba(0, 0, 0, 0.02);
}

.footer-col:first-child {
    padding: 0;
}

.footer-slogan {
    font-size: 14px;
    font-weight: 800;
    color: #002c5c;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.footer-p {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.6;
}

.feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #e8f0fe;
    color: #005BA4;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
}

[dir="rtl"] .feature-icon {
    margin-right: 0;
    margin-left: 15px;
}

.feature-icon-text {
    width: 38px;
    height: 38px;
    color: #005BA4;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-weight: 600;
    font-size: 26px;
    line-height: 1;
    flex-shrink: 0;
}

[dir="rtl"] .feature-icon-text {
    margin-right: 0;
    margin-left: 15px;
}

.feature-text {
    font-size: 11px;
    color: #6c757d;
}

[dir="rtl"] .feature-text {
    text-align: right;
}

.feature-text strong {
    font-size: 12.5px;
    color: #002c5c;
    font-weight: 700;
}

.footer-title {
    font-size: 11.5px;
    font-weight: 800;
    color: #005BA4;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

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

.footer-links li {
    margin-bottom: 4px;
    /* Linklerin rahat arka plan kutuları için ufaltıldı */
}

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 6px 12px;
    margin-left: -12px;
    /* Yazıyı orijinal sol çizgiye hizalamak için Padding'i dengeler */
    border-radius: 6px;
}

.footer-links a:hover {
    color: #005BA4;
    background-color: #f0f6ff;
    transform: translateX(4px);
}

.cert-box {
    border: 1px solid #005BA4;
    color: #005BA4;
    width: 59px;
    height: 63px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 9px;
    font-weight: 500;
    text-align: center;
    line-height: 1.25;
}

.cert-box strong {
    font-size: 14px;
}

.footer-blue-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f6ff;
    color: #005BA4;
    font-weight: 700;
    font-size: 12px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-blue-btn:hover {
    background-color: #e2efff;
    color: #003b6d;
}

.footer-contact-info {
    color: #6c757d;
    font-size: 14px;
}

.footer-newsletter .input-group {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.02);
    border-radius: 50px;
    padding: 5px;
}

.footer-newsletter .form-control {
    border: none;
    background: transparent;
    font-size: 12.5px;
    padding-left: 15px;
    box-shadow: none !important;
}

.footer-newsletter .btn-submit {
    background-color: #005BA4;
    color: white;
    border-radius: 50% !important;
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    transition: background-color 0.3s ease;
}

.footer-newsletter .btn-submit:hover {
    background-color: #003b6d;
}

.footer-teklif-btn {
    background-color: #005BA4;
    border-color: #005BA4;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    padding: 14px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.footer-teklif-btn:hover {
    background-color: #003b6d;
    color: #ffffff;
}

.social-icons-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 50px;
    background-color: #ffffff;
    padding: 10px 24px;
    width: 100%;
}

.social-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #f4f8fc;
    /* Tasarımdaki çok açık mavi dolgu */
    color: #005BA4;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.social-circle:hover {
    background-color: #005BA4;
    color: #ffffff;
    transform: scale(1.08);
    /* Hafifçe tatlı bir dokunmatik pop efekti */
}

.social-divider {
    width: 1px;
    height: 24px;
    background-color: rgba(0, 0, 0, 0.03);
}

.footer-bottom {
    padding: 30px 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.02);
    background-color: #fafbfc;
}

.copyright-text {
    font-size: 15px;
    font-weight: 500;
    color: #6c757d;
}

.footer-bottom-links a {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

@media (max-width: 991.98px) {
    .footer-col {
        padding: 30px 15px;
        /* Daha dar alanda sığması için padding küçültüldü */
        border-right: 1px solid rgba(0, 0, 0, 0.02);
        border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    }

    .footer-col:nth-child(even) {
        border-right: none;
        /* Sağ taraftaki 2. ve 4. sütunun sağına çizgi atma */
    }

    .footer-bottom {
        padding: 25px 20px;
        text-align: center;
        flex-direction: column;
        gap: 20px;
    }


    .social-icons-wrapper {
        display: flex;
        justify-content: normal;
        gap: 15px;
        align-items: center;
        border: 1px solid rgba(0, 0, 0, 0.03);
        border-radius: 50px;
        background-color: #ffffff;
        padding: 10px 24px;
        width: 100%;
    }


}

/* =========================================
   BREADCRUMB SECTION
========================================= */




.breadcrumb-svg-divider svg {
    display: block;
    width: 100%;
    min-width: 1200px;
    /* Küçük ekranlarda çizginin orijinal şeklini bozmamak için kilitler */
    height: auto;
}

.breadcrumb-content {
    padding-top: 15px;
    /* Çizgiden aşağı zarifçe itildi */
}

.breadcrumb-links {
    font-size: 14px;
    color: #86A5BF;
    /* İncecik, belli belirsiz okunaklı bir mavi gri */
    margin-bottom: 5px;
    font-weight: 500;
}

.breadcrumb-links a {
    color: inherit !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.breadcrumb-links a:hover {
    color: #002c5c !important;
    /* Üstüne gelindiğinde havalı bir koyu lacivert */
}

.breadcrumb-title {
    font-size: 42px;
    font-weight: 600;
    color: #0061AF;
    /* Mentis Ana Mavi */
    margin: 0;
    letter-spacing: -0.5px;
}

/* =========================================
   ABOUT US SECTION (HAKKIMIZDA)
========================================= */
.about-details-section {
    background-color: #ffffff;
    padding-top: 60px;
}

.about-row {
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* Zarifçe silik ayraç */
}

.about-main-title {
    font-size: 46px;
    font-weight: 700;
    color: #002c5c;
    line-height: 1.15;
    letter-spacing: -1px;
}

.about-sub-title {
    font-size: 32px;
    font-weight: 700;
    color: #002c5c;
    letter-spacing: -0.5px;
}

.about-desc {
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
    font-weight: 500;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f4f8fc;
    color: #0057B8;
    font-size: 14px;
    font-weight: 600;
    padding: 16px 24px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.about-section-label {
    font-size: 9px;
    font-weight: 800;
    color: #0061AF;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.about-stat-number {
    font-size: 64px;
    font-weight: 600;
    color: #002D5E;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -2px;
}

.about-stat-label {
    font-size: 14px;
    font-weight: 800;
    color: #0057B8;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-pill-box {
    background-color: #f4f8fc;
    color: #0061AF;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 10px;
    border-radius: 50px;
    text-align: center;
    transition: all 0.3s ease;
}

.about-pill-box:hover {
    background-color: #0061AF;
    color: #ffffff;
    transform: translateY(-3px);
}

@media (max-width: 991.98px) {
    .about-main-title {
        font-size: 34px;
    }

    .about-sub-title {
        font-size: 24px;
    }

    .about-stat-number {
        font-size: 48px;
    }

    .about-pill-box {
        font-size: 14px;
        padding: 18px 10px;
        border-radius: 30px;
    }

    .about-row {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
}

/* =========================================
   VISION & MISSION SECTION
========================================= */
.vision-details-section {
    background-color: #ffffff;
}

.vision-label {
    font-size: 15px;
    font-weight: 800;
    color: #0057B8;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.vision-main-title {
    font-size: 96px;
    font-weight: 600;
    color: #002D5E;
    letter-spacing: -2px;
    margin: 0;
}

.vision-watermark {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translateY(-50%);
    font-size: 200px;
    font-weight: 900;
    color: #f6f9fc;
    z-index: 1;
    line-height: 1;
    letter-spacing: -5px;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    .vision-main-title {
        font-size: 44px;
    }

    .vision-watermark {
        font-size: 110px;
        left: 20%;
    }
}

@media (max-width: 575.98px) {
    .vision-main-title {
        font-size: 36px;
    }

    .vision-watermark {
        font-size: 70px;
        left: 10%;
    }
}

/* =========================================
   MISSION SECTION
========================================= */
.mentis-mission-section {
    position: relative;
    z-index: 1;
    /* Arka planın (z-index: -1) body arkasına kaçıp kaybolmasını engeller */
}

.mission-svg-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.mission-svg-bg svg {
    display: block;
    width: 100%;
    height: 100%;
}

.mission-box {
    padding: 100px 20px;
}

.mission-label {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

.mission-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #ffffff;
}

.mission-desc {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    max-width: 900px;
}

.mission-num {
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 5px;
}

.mission-item-title {
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
}

.mission-item-desc {
    font-size: 14.5px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

/* =========================================
   VISION SECTION
========================================= */
.mentis-vision-section {
    background-color: #F4F8FF;
}

.vision-label-blue {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #0057b8;
    text-transform: uppercase;
}

.vision-title-dark {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #002D5E;
}

.vision-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #0057b8;
    margin-bottom: 8px;
}

.vision-feature-desc {
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.6;
    color: #666666;
}

.vision-globe-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transform: translateX(5%);
    /* Sola dayalı 4'lük sistemi ezip sağ 8'lik dilime harika bir şekilde sığar ve sağa hafif taşar */
    opacity: 0.95;
    mix-blend-mode: multiply;
    /* Mavi arkaplanla renkleri pürüzsüz bağdaştırır */
    pointer-events: none;
}

.btn-vision-cta {
    background-color: #0057b8;
    color: #ffffff;
    padding: 14px 34px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.btn-vision-cta:hover {
    background-color: #002D5E;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 45, 94, 0.15);
}

/* =========================================
   FINAL CTA SECTION
========================================= */
.final-cta-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #002D5E;
}

@media (max-width: 991.98px) {
    .mentis-mission-section {
        background-color: #0057b8;
        border-radius: 40px 40px 0 0;
        /* Mobilde SVG yerine düz ve temiz oval CSS */
    }

    .mission-svg-bg {
        display: none !important;
        /* Mobilde şekilsiz uzamasın diye SVG kapatıldı */
    }

    .mission-box,
    .vision-white-box {
        padding: 40px 20px;
    }

    .mission-title,
    .vision-title-dark,
    .final-cta-title {
        font-size: 34px;
    }
}

/* =========================================
   NEDEN MENTIS - GIRIŞ BÖLÜMÜ
========================================= */
.why-mentis-intro-section {
    background-color: #ffffff;

}

/* Arkadaki grid çizgisini CSS ile sahte olarak yaratıyoruz */


.why-hero-title {
    font-size: 64px;
    font-weight: 500;
    color: #0061AF;
    line-height: 1.25;
    letter-spacing: -1px;
}

.why-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
    color: #92a4bd;
    /* O tasarımdaki spesifik puslu gri/mavi */
    max-width: 550px;
}

.why-hero-desc .text-dark {
    color: #5c748e !important;
    /* Koyulaştırılmış kelimelerin tasarımı */
}

.why-hero-img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 991.98px) {
    .why-hero-title {
        font-size: 38px;
    }

    .why-grid-bg {
        background-size: 40px 40px;
    }

    .why-hero-img {
        display: none !important;
    }
}

/* =========================================
   CERTIFICATION 3D BOX SECTION (NEDEN MENTIS)
========================================= */
.certification-bg-box {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 40px;
    padding: 100px 80px;
    position: relative;
    overflow: hidden;
    min-height: 550px;
    /* İçindeki şekilleri rahat oturtmak için */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.certification-main-title {
    color: #ffffff;
    line-height: 1.15;
    margin: 0;
    font-size: 56px;
    letter-spacing: -1.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Açık renkli bir zemine düşüyorsa yazının çok hafif belirmesini sağlar */
}

.cert-fw-light {
    font-weight: 300;
}

.cert-fw-bold {
    font-weight: 700;
}

.certification-glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.certification-badge {
    display: inline-block;
    background-color: #ffffff;
    color: #0057B8;
    font-size: 16px;
    font-weight: 700;
    padding: 12px 35px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 87, 184, 0.15);
    /* Butonun altında hafif bir mavi sis farı yansıması */
}

.certification-card-desc {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
}

@media (max-width: 991.98px) {
    .certification-bg-box {
        padding: 50px 30px;
        border-radius: 30px;
        min-height: 700px;
        /* Daha uzun kutu */
        position: relative;
    }

    /* Mobilde arkaplan resminin ortasını şeffaf bırakıp, sadece üst (başlık) ve alt (kutu) kısımlarına koyuluk ekledik */
    .certification-bg-box::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(0, 15, 40, 0.8) 0%, rgba(0, 15, 40, 0) 40%, rgba(0, 15, 40, 0) 60%, rgba(0, 30, 80, 0.8) 100%);
        border-radius: 30px;
        z-index: 0;
    }

    .certification-bg-box .row {
        position: relative;
        z-index: 2;
    }

    .certification-main-title {
        font-size: 40px;
        text-align: center;
        color: #ffffff;
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    }

    .certification-glass-card {
        padding: 35px 25px;
        margin-top: 250px;
        /* Ortadaki görselin tam anlamıyla görünmesini sağlayan büyük boşluk */
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }
}

@media (max-width: 575.98px) {
    .certification-bg-box {
        padding: 40px 20px;
        border-radius: 20px;
        min-height: 600px;
    }

    .certification-bg-box::before {
        border-radius: 20px;
    }

    .certification-main-title {
        font-size: 32px;
    }

    .certification-glass-card {
        margin-top: 200px;
        /* Telefonda da o harika görsel arası kalsın */
    }
}

/* =========================================
   SUNDUĞUMUZ AVANTAJLAR (NEDEN MENTIS)
========================================= */
.mentis-advantages-section {
    background-color: #F8FAFC;
    /* Tasarımdaki çok açık, buzlu gri-mavi tonu */
    padding-top: 100px;
    padding-bottom: 100px;
}

.advantage-main-title {
    color: #0061AF;
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 60px;
    letter-spacing: -1.5px;
}

.adv-fw-light {
    font-weight: 300;
}

.adv-fw-bold {
    font-weight: 700;
}

.advantage-card {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.advantage-svg-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.advantage-svg-bg svg {
    display: block;
    width: 100%;
    height: 100%;
}

.advantage-content-box {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.advantage-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.advantage-title {
    color: #0061AF;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
    min-height: 54px;
    /* Başlıkların aynı yükseklikte kalmasını sağlar, böylece alt yazılar hizalanır */
    display: flex;
    align-items: center;
}

.advantage-desc {
    color: #0061AF;
    /* Orijinal tasarımdaki mavimsi gri ton */
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .advantage-main-title {
        font-size: 40px;
    }
}

/* =========================================
   BLUE STATS SECTION (NEDEN MENTIS)
========================================= */
.mentis-stats-blue-section {
    background-color: #0061AF;
}

.stats-val {
    font-size: 28px;
    letter-spacing: -0.5px;
    font-weight: 500 !important;

}

.stats-label {
    font-size: 20px;
    font-weight: 100;
}

@media (min-width: 992px) {
    .stats-divider {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }
}

@media (max-width: 991.98px) {
    .stats-val {
        font-size: 22px;
    }

    .stats-label {
        font-size: 13px;
    }

    .stats-divider:nth-child(even) {
        border-right: none;
    }

    .stats-divider:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }
}

/* =========================================
   FINAL CTA SECTION (NEDEN MENTIS)
========================================= */
.mentis-final-cta-section {
    background: white;
    padding: 100px 0;
}

.final-cta-title {
    color: #0057B8;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
}

.final-cta-title .cta-bold {
    font-weight: 700;
}

.final-cta-sub {
    color: #0057B8;
    font-size: 18px;
    font-weight: 400;
    opacity: 0.8;
}

.btn-mentis-primary {
    background-color: #0061AF;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 97, 175, 0.2);
}

.btn-mentis-primary:hover {
    background-color: #004d8c;
    transform: translateY(-3px);
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 97, 175, 0.3);
}

@media (max-width: 991.98px) {
    .final-cta-title {
        font-size: 32px;
    }
}

/* =========================================
   MILESTONES (KILOMETRE TASLARI) PAGE
========================================= */

.milestone-hero-title {
    font-size: 64px;
    font-weight: 700;
    color: #0b2238;
    line-height: 1.2;
    letter-spacing: -1.5px;
}

.milestone-hero-desc {
    color: #5c748e;
    font-size: 18px;
    line-height: 1.8;
}

/* Tarihçemiz Section */
.mentis-history-section {
    background-color: #ffffff;
}

.history-main-title {
    color: #002D5E;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.history-title-line {
    width: 80px;
    height: 3px;
    background-color: #0061AF;
}

.history-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.history-nav-btn svg {
    width: 20px;
    height: 20px;
}

.history-nav-btn.active,
.history-nav-btn:hover {
    background-color: #0061AF;
    color: #ffffff;
    border-color: #0061AF;
}

/* Timeline Components */
.timeline-container {
    padding-top: 20px;
}

.timeline-horizontal-line {
    position: absolute;
    top: 185px;
    /* Perfect intersection with vertical line start */
    left: 0;
    width: 100%;
    height: 1.5px;
    background: rgba(0, 87, 184, 0.1);
    z-index: 1;
}

.timeline-item {
    padding-right: 40px;
    position: relative;
}

.timeline-year {
    font-size: 96px;
    font-weight: 700;
    color: #e2e8f0;
    /* Pasif yıllar */
    margin-bottom: -10px;
    transition: color 0.3s ease;
    letter-spacing: -3px;
    line-height: 1;
}

.timeline-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 0;
    height: 90px;
    display: flex;
    align-items: flex-start;
    padding-top: 10px;
}

.timeline-vertical-line {
    width: 2px;
    top: -11px;
    height: 80px;
    background-color: #E0E0E0;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}






.timeline-text {
    font-size: 14px;
    color: #cbd5e1;
    /* Pasif metin rengi */
    line-height: 1.65;
    font-weight: 400;
    transition: color 0.3s ease;
}

/* Aktif Durum (Seçili Yıl) */
.timeline-item.active .timeline-year {
    color: #002D5E;
}

.timeline-item.active .timeline-subtitle {
    color: #002D5E;
}

.timeline-item.active .timeline-vertical-line {
    background-color: #0061AF;
}

.timeline-item.active .timeline-text {
    color: #475569;
    /* Aktif metin rengi - daha okunabilir */
}



@media (max-width: 991.98px) {
    .milestone-hero-title {
        font-size: 36px;
    }

    .history-main-title {
        font-size: 28px;
    }

    .timeline-horizontal-line {
        display: none !important;
    }

    .timeline-container {
        padding: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        /* Firefox */
    }

    .timeline-container::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, Opera */
    }

    .timeline-row {
        display: flex;
        flex-wrap: nowrap;
        gap: 0;
        padding-left: 20px;
        padding-right: 20px;
    }

    .timeline-item {
        flex: 0 0 85%;
        /* Ekranın %85'ini kaplasın */
        margin-bottom: 0;
        padding: 40px 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 20px;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        scroll-snap-align: center;
    }

    /* Aktif kart tasarımı */
    .timeline-item.active {
        background: #ffffff;
        box-shadow: 0 10px 30px rgba(0, 97, 175, 0.06);
        opacity: 1;
    }

    .timeline-item:not(.active) {
        opacity: 0.35;
        transform: scale(0.9);
    }


    .timeline-year {
        font-size: 50px;
        font-weight: 700;
        margin-bottom: 5px;
        color: #e2e8f0;
        transition: color 0.4s ease;
    }

    .timeline-item.active .timeline-year {
        color: #0061AF;
    }

    .timeline-subtitle {
        height: auto;
        padding-top: 0;
        margin-bottom: 15px;
        justify-content: center;
        font-size: 16px;
        font-weight: 700;
        color: #003F7A;
    }

    .timeline-vertical-line {
        height: 25px;
        width: 3px;
        background: #e2e8f0;
        margin: 0 auto 15px auto;
        top: 0;
        border-radius: 5px;
    }

    .timeline-item.active .timeline-vertical-line {
        background: #0061AF;
    }

    .timeline-text {
        max-width: 100%;
        margin: 0 auto;
        font-size: 14.5px;
        line-height: 1.6;
    }
}

/* =========================================
   NEWS PAGE STYLES
========================================= */
.news-section {
    padding-bottom: 80px;
    background: radial-gradient(circle, #FFFFFF 5%, #F4F8FF 99%);
}

.news-main-title {
    font-size: 42px;
    font-weight: 800;
    color: #003F7A;
    margin-bottom: 40px;
}

/* Featured News Card (Hero Style) */
.news-featured-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    height: 600px;
    margin-bottom: 30px;
    background-color: #f8fafc;
}

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

.news-featured-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: linear-gradient(180deg, #F5FAFF 0%, #FAFDFF 100%);
    padding: 40px;
    border-radius: 24px;
    max-width: 480px;
    border: 1px solid rgba(0, 97, 175, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.news-label {
    font-size: 11px;
    font-weight: 800;
    color: #0061AF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}

.news-title-lg {
    font-size: 28px;
    font-weight: 800;
    color: #003F7A;
    line-height: 1.3;
    margin-bottom: 16px;
}

.news-desc {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 24px;
}

.news-read-more {
    font-size: 12px;
    font-weight: 800;
    color: #0061AF;
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.news-read-more:hover {
    gap: 12px;
    color: #003F7A;
}

/* Grid News Card */
.news-grid-card {
    overflow: hidden;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.news-grid-card:hover {
    transform: translateY(-8px);
}

.news-grid-img-wrapper {
    height: 4 00px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #f1f5f9;
    height: 400px;
}

.news-grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-title-md {
    font-size: 20px;
    font-weight: 800;
    color: #003F7A;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-text-sm {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 0;
}

/* List News Items */
.news-list-items {
    border-top: 1px solid #E5EEFC;
}

.news-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid #F0F4FA;
    transition: padding-left 0.3s ease;
}

.news-list-item:hover {
    padding-left: 10px;
}

.news-list-left {
    display: flex;
    flex-direction: column;
}

.news-list-title {
    font-size: 18px;
    font-weight: 700;
    color: #003F7A;
}

.news-list-label {
    font-size: 10px;
    font-weight: 800;
    color: #8C99B1;
    text-transform: uppercase;
    margin-bottom: 4px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .news-featured-card {
        height: auto;
        border-radius: 24px;
    }

    .news-featured-img {
        height: 280px;
        /* Biraz kısalttım, daha yatay görünsün */
    }

    .news-featured-content {
        position: relative;
        bottom: 0;
        left: 0;
        max-width: calc(100% - 30px);
        margin: -50px auto 20px auto;
        /* Ortalamak ve daha geniş göstermek için margins */
        padding: 20px 25px;
        /* İç boşluğu küçülttüm */
        border-radius: 16px;
    }

    .news-title-lg {
        font-size: 22px;
        /* Başlığı küçülttüm satır atlamasın diye */
        margin-bottom: 12px;
    }

    .news-desc {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .news-main-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .news-grid-img-wrapper {
        height: 250px;
    }

    .news-list-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .news-list-item .news-read-more {
        align-self: flex-start;
    }
}

/* =========================================
   NEWS DETAIL PAGE STYLES
========================================= */
.news-detail-section {
    padding: 60px 0 100px;
    background: radial-gradient(circle, #FFFFFF 5%, #F4F8FF 99%);
}

.news-detail-header {
    margin-bottom: 40px;
}

.news-detail-title {
    font-size: 42px;
    font-weight: 800;
    color: #0061AF;
    max-width: 700px;
    width: 100%;
    line-height: 1.2;
    margin-bottom: 15px;
}

.news-detail-meta {
    font-size: 14px;
    color: #94A3B8;
    font-weight: 500;
}

.news-detail-main-img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 32px;
    margin-bottom: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.news-detail-content {
    margin: 0 auto;
}

.news-detail-content h2 {
    font-size: 24px;
    font-weight: 800;
    color: #0061AF;
    margin: 40px 0 20px;
}

.news-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 25px;
}

.news-detail-quote {
    border-left: 4px solid #0061AF;
    padding: 20px 0 20px 30px;
    margin: 40px 0;
}

.news-detail-quote p {
    font-size: 22px;
    font-weight: 700;
    color: #003F7A;
    line-height: 1.4;
    margin-bottom: 0;
}

.news-detail-share {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #E2E8F0;
}

.news-detail-share-label {
    font-size: 12px;
    font-weight: 800;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

.news-detail-social-links {
    display: flex;
    gap: 25px;
}

.news-detail-social-link {
    color: #003F7A;
    font-size: 20px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.news-detail-social-link:hover {
    color: #0061AF;
    opacity: 1;
    transform: translateY(-3px);
}

/* Responsive News Detail */
@media (max-width: 991.98px) {
    .news-detail-section {
        padding: 40px 15px 60px;
    }

    .news-detail-title {
        font-size: 28px;
        width: 100%;
        max-width: 100%;
    }

    .news-detail-content p {
        font-size: 16px;
    }

    .news-detail-quote p {
        font-size: 19px;
    }
}

/* =========================================
   BLOG DETAIL PAGE STYLES
========================================= */
.blog-detail-section {
    padding: 60px 0 10px;
    background: radial-gradient(circle, #FFFFFF 5%, #F4F8FF 99%);
}

.blog-detail-header {
    margin-bottom: 40px;
}

.blog-detail-title {
    font-size: 42px;
    font-weight: 800;
    color: #0061AF;
    max-width: 700px;
    width: 100%;
    line-height: 1.2;
    margin-bottom: 15px;
}

.blog-detail-meta {
    font-size: 14px;
    color: #94A3B8;
    font-weight: 500;
}

.blog-detail-main-img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 32px;
    margin-bottom: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.blog-detail-content {
    margin: 0 auto;
}

.blog-detail-content h2 {
    font-size: 24px;
    font-weight: 800;
    color: #0061AF;
    margin: 40px 0 20px;
}

.blog-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 25px;
}

.blog-detail-quote {
    border-left: 4px solid #0061AF;
    padding: 20px 0 20px 30px;
    margin: 40px 0;
}

.blog-detail-quote p {
    font-size: 22px;
    font-weight: 700;
    color: #003F7A;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Responsive Blog Detail */
@media (max-width: 991.98px) {
    .blog-detail-section {
        padding: 40px 15px 60px;
    }

    .blog-detail-title {
        font-size: 28px;
        width: 100%;
        max-width: 100%;
    }

    .blog-detail-content p {
        font-size: 16px;
    }

    .blog-detail-quote p {
        font-size: 19px;
    }
}

/* =========================================
   BLOG LIST PAGE STYLES (CARD DESIGN)
========================================= */
.blog-list-section {
    padding: 60px 0 100px;
    background: radial-gradient(circle, #FFFFFF 5%, #F4F8FF 99%);
}

.blog-main-title {
    font-size: 56px;
    font-weight: 800;
    color: #0061AF;
    margin-bottom: 60px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 360px);
    gap: 30px;
    justify-content: center;
}

.blog-card {
    width: 360px;
    height: 610px;
    background: #EBF3FF;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 97, 175, 0.08);
    background: #FFFFFF;
}

.blog-card-img-wrapper {
    width: 360px;
    height: 241px;
    overflow: hidden;
}

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

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

.blog-card-body {
    padding: 40px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-size: 22px;
    font-weight: 800;
    color: #0061AF;
    line-height: 1.3;
    margin-bottom: 25px;
    height: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-text {
    font-size: 14px;
    color: #8C9BB4;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.blog-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFFFFF;
    color: #0061AF;
    font-size: 13px;
    font-weight: 800;
    padding: 12px 25px;
    border-radius: 120px;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.blog-card:hover .blog-card-btn {
    background: #0061AF;
    color: #FFFFFF;
}

/* Responsive Blog List */
@media (max-width: 1580px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    }
}

@media (max-width: 768px) {
    .blog-list-section {
        padding: 40px 15px 60px;
    }

    .blog-main-title {
        font-size: 36px;
        margin-bottom: 30px;
        text-align: center;
    }

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

    .blog-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: auto;
    }

    .blog-card-img-wrapper {
        width: 100%;
        height: 220px;
    }

    .blog-card-body {
        padding: 25px 20px;
    }

    .blog-card-title {
        font-size: 18px;
        height: auto;
        margin-bottom: 15px;
    }

    .blog-card-text {
        margin-bottom: 20px;
    }
}

/* =========================================
   CONTACT PAGE STYLES
========================================= */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FBFF 100%);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #FFFFFF;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 63, 122, 0.08);
    border: 1px solid rgba(0, 97, 175, 0.05);
}

.contact-item {
    padding: 80px;
    border-bottom: 1px solid #F0F4FA;
}

.contact-item:nth-child(odd) {
    border-right: 1px solid #F0F4FA;
}



.contact-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.contact-num-label {
    font-size: 11px;
    font-weight: 800;
    color: #0061AF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    display: block;
}

.contact-title-xl {
    font-size: 48px;
    font-weight: 800;
    color: #003F7A;
    line-height: 1.1;
    margin-bottom: 30px;
}

.contact-desc {
    font-size: 16px;
    color: #64748B;
    line-height: 1.8;
    max-width: 450px;
}

.contact-stat {
    margin-top: 50px;
}

.contact-stat-num {
    font-size: 28px;
    font-weight: 800;
    color: #0061AF;
    display: block;
    margin-bottom: 5px;
}

.contact-stat-label {
    font-size: 11px;
    font-weight: 800;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Map Section */
.contact-map-wrapper {
    width: 100%;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info-box {
    margin-top: 20px;
}

.contact-info-box h4 {
    font-size: 14px;
    font-weight: 800;
    color: #003F7A;
    margin-bottom: 12px;
}

.contact-info-box p {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
}

/* Direct Contact Info */
.contact-direct-item {
    margin-bottom: 30px;
}

.contact-direct-label {
    font-size: 10px;
    font-weight: 800;
    color: #94A3B8;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.contact-direct-value {
    font-size: 22px;
    font-weight: 700;
    color: #003F7A;
    text-decoration: none;
}

.contact-support-card {
    background: #F4F8FF;
    padding: 30px;
    border-radius: 20px;
    margin-top: 50px;
}

.contact-support-card h5 {
    font-size: 16px;
    font-weight: 800;
    color: #003F7A;
    margin-bottom: 12px;
}

.contact-support-card p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-support-link {
    font-size: 12px;
    font-weight: 800;
    color: #0061AF;
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Form Section */
.contact-form-title {
    font-size: 32px;
    font-weight: 800;
    color: #003F7A;
    margin-bottom: 40px;
}

.contact-form-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.contact-form-tab {
    padding: 15px 30px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #E2E8F0;
}

.contact-form-tab.active {
    background: #0057B8;
    color: #FFFFFF;
    border-color: #0057B8;
}

.contact-input-group {
    margin-bottom: 30px;
}

.contact-input-label {
    font-size: 10px;
    font-weight: 800;
    color: #94A3B8;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.contact-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #E2E8F0;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 500;
    color: #003F7A;
    background: transparent;
    outline: none;
}

.contact-input:focus {
    border-color: #0061AF;
}

.contact-form-note {
    font-size: 11px;
    color: #94A3B8;
    margin-top: 20px;
    margin-bottom: 30px;
}

.contact-recaptcha {
    margin-bottom: 30px;
}

.btn-contact-submit {
    background: #0057B8;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 800;
    padding: 18px 45px;
    border-radius: 100px;
    border: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-contact-submit:hover {
    background: #003F7A;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 87, 184, 0.2);
}

/* KVKK Checkbox */
.contact-kvkk-wrapper {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.contact-kvkk-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #E2E8F0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-kvkk-checkbox i {
    font-size: 14px;
    color: #FFFFFF;
    display: none;
}

#kvkk_check {
    display: none;
}

#kvkk_check:checked+.contact-kvkk-checkbox {
    background: #0057B8;
    border-color: #0057B8;
}

#kvkk_check:checked+.contact-kvkk-checkbox i {
    display: block;
}

.contact-kvkk-text {
    font-size: 13px;
    color: #64748B;
    line-height: 1.5;
}

.contact-kvkk-text a {
    color: #0061AF;
    font-weight: 700;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1200px) {
    .contact-item {
        padding: 50px 30px;
    }
}

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

    .contact-item:nth-child(odd) {
        border-right: none;
    }

    .contact-item {
        border-bottom: 1px solid #F0F4FA;
    }

    .contact-title-xl {
        font-size: 36px;
    }
}

/* =========================================
   LIGHTBOX MODAL STYLES
========================================= */
.mentis-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
}

.mentis-lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1100px;
    max-height: 85vh;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mentis-lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: -58px;
    right: -30px;
    width: 60px;
    height: 60px;
    background: #0061af63;
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.lightbox-close:hover {
    transform: scale(1.1) rotate(90deg);
    background: #FFFFFF;
    color: #0061AF;
}

.lightbox-close span {
    font-size: 32px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: -70px;
        right: 0;
        width: 50px;
        height: 50px;
    }
}

.lightbox-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.lightbox-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
}


/* =========================================
   GALLERY PAGE STYLES
========================================= */
.gallery-section {
    padding: 80px 0 0px;
    background: #FFFFFF;
}

.gallery-pre-title {
    font-size: 11px;
    font-weight: 800;
    color: #0061AF;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 15px;
    text-align: center;
}

.gallery-main-title {
    font-size: 48px;
    font-weight: 800;
    color: #003F7A;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.2;
}

.gallery-video-container {
    width: 100%;
    max-width: 1500px;
    height: 500px;
    margin: 0 auto 100px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
}

.gallery-video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0061AF;
    font-size: 40px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #FFFFFF;
    color: #003F7A;
}

.gallery-section-label {
    font-size: 11px;
    font-weight: 800;
    color: #0061AF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
    display: block;
}

.gallery-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 40px;
    margin-bottom: 120px;
}

.gallery-item-card {
    display: block;
    text-decoration: none !important;
}

.gallery-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 25px;
    background: #F4F8FF;
}

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

.gallery-item-card:hover .gallery-img-wrapper img {
    transform: scale(1.05);
}

.gallery-item-title {
    font-size: 24px;
    font-weight: 800;
    color: #003F7A;
    margin-bottom: 10px;
}

.gallery-item-meta {
    font-size: 10px;
    font-weight: 800;
    color: #0061AF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-horizontal-strip {
    display: flex;
    gap: 20px;
    margin-bottom: 120px;
    overflow-x: auto;
    padding-bottom: 30px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.gallery-horizontal-strip::-webkit-scrollbar {
    display: none;
}

.gallery-strip-item {
    flex: 0 0 320px;
    height: 200px;
    border-radius: 24px;
    overflow: hidden;
    background: #F4F8FF;
}

.gallery-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.gallery-info-pill {
    background: #F8FBFF;
    border-radius: 100px;
    padding: 30px 40px;
    text-align: center;
    text-decoration: none !important;
    transition: all 0.4s ease;
    border: 1px solid #EEF5FF;
    display: block;
}

.gallery-info-pill:hover {
    background: #FFFFFF;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 63, 122, 0.08);
    border-color: #EBF3FF;
}

.gallery-info-pill h4 {
    font-size: 22px;
    font-weight: 800;
    color: #003F7A;
    margin-bottom: 12px;
}

.gallery-info-pill span {
    font-size: 13px;
    font-weight: 800;
    color: #0061AF;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

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

    .gallery-footer-grid {
        grid-template-columns: 1fr;
    }

    .gallery-main-title {
        font-size: 34px;
        margin-bottom: 40px;
    }

    .gallery-video-container {
        aspect-ratio: 16 / 9;
    }

    .gallery-horizontal-strip {
        gap: 10px;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
    }

    .gallery-strip-item {
        flex: 0 0 calc(100% - 0px);
        scroll-snap-align: center;
        height: 250px;
    }
}

/* =========================================
   REFERENCES PAGE STYLES
========================================= */
.ref-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.ref-pre-title {
    font-size: 11px;
    font-weight: 800;
    color: #0061AF;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 15px;
}

.ref-main-title {
    font-size: 48px;
    font-weight: 800;
    color: #003F7A;
    margin-bottom: 15px;
}

.ref-desc {
    font-size: 18px;
    color: #64748B;
    margin-bottom: 50px;
}

/* Filters */
.ref-filters {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #F0F4FA;
    margin-bottom: 60px;
    overflow-x: auto;
    scrollbar-width: none;
}

.ref-filters::-webkit-scrollbar {
    display: none;
}

.ref-filter-item {
    font-size: 12px;
    font-weight: 800;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 20px 0;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.ref-filter-item.active {
    color: #0061AF;
}

.ref-filter-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #0061AF;
}

.ref-filter-item:hover {
    color: #003F7A;
}

/* Grid */
.ref-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 40px;
}

.ref-card {
    display: block;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.ref-card-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #F8FBFF;
}

.ref-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ref-card:hover .ref-card-img-wrapper img {
    transform: scale(1.05);
}

.ref-card-label {
    font-size: 10px;
    font-weight: 800;
    color: #0061AF;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.ref-card-title {
    font-size: 20px;
    font-weight: 800;
    color: #003F7A;
    margin-bottom: 8px;
    line-height: 1.3;
}

.ref-card-meta {
    font-size: 11px;
    font-weight: 600;
    color: #94A3B8;
    text-transform: uppercase;
}

/* Featured Card (Large) */
.ref-card.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.ref-card.featured .ref-card-img-wrapper {
    aspect-ratio: 16 / 11.5;
}

.ref-card.featured .ref-card-title {
    font-size: 26px;
}

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

    .ref-card.featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .ref-card.featured .ref-card-img-wrapper {
        aspect-ratio: 16 / 10;
    }
}

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

    .ref-card.featured {
        grid-column: span 1;
    }

    .ref-main-title {
        font-size: 34px;
    }
}

/* =========================================
   CAREER PAGE STYLES
========================================= */
.career-hero-section {
    padding: 30px 0 40px;
    background: #FFFFFF;
}

.career-hero-container {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.career-hero-svg-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.career-hero-svg-bg svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 40px 100px rgba(0, 97, 175, 0.05));
}

.career-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 80px;
    min-height: 500px;
}

.career-worker-col {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.career-worker-img {
    max-width: 100%;
    height: auto;
    margin-top: -80px;
    /* Overlap effect */
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.1));
}

.career-text-col {
    flex: 1;
}

.career-hero-title {
    font-size: 46px;
    font-weight: 300;
    line-height: 1.2;
    color: #0061AF;
    margin-bottom: 20px;
}

.career-hero-title b,
.career-hero-title strong {
    display: block;
    font-weight: 700;
    color: #0061AF;
    font-size: 42px;
}

.career-hero-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #64748B;
    max-width: 500px;
}

@media (max-width: 1199px) {
    .career-hero-inner {
        padding: 0 40px;
    }

    .career-hero-title {
        font-size: 38px;
    }

    .career-hero-title b {
        font-size: 36px;
    }


}

@media (max-width: 991px) {
    .career-hero-inner {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
        min-height: auto;
    }

    .career-worker-col {
        display: none;
    }

    .career-hero-desc {
        margin: 0 auto;
    }

    .career-hero-svg-bg {
        display: none;
    }

    .career-hero-inner {
        background: #EEF7FD;
        border-radius: 30px;
    }

    .career-hero-container {
        padding: 0;
    }

    .dealership-hero-container {
        padding: 0 !important;
    }

    .dealership-hero-title {
        font-size: 30px !important;
    }

}

.career-content-main {
    background: radial-gradient(circle at center, #FFFFFF 5%, #F4F8FF 99%);
}

/* Values Grid */
.career-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #F0F4FA;
    border-bottom: 1px solid #F0F4FA;
    margin-bottom: 30px;
}

.value-item {
    padding: 30px 25px;
    border-right: 1px solid #F0F4FA;
}

.value-item:last-child {
    border-right: none;
}

.value-label {
    font-size: 10px;
    font-weight: 800;
    color: #0061AF;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.value-title {
    font-size: 20px;
    font-weight: 800;
    color: #003F7A;
    margin-bottom: 15px;
}

.value-desc {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
}

/* Open Positions */
.open-positions-section {
    padding: 0 0 50px;
}

.positions-title {
    font-size: 32px;
    font-weight: 800;
    color: #003F7A;
    margin-bottom: 40px;
}

.positions-container {
    background: #F8FBFF;
    border-radius: 12px;
    overflow: hidden;
}

.position-row {
    display: flex;
    align-items: center;
    padding: 30px 40px;
    border-bottom: 1px solid #EBF1F9;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.position-row:last-child {
    border-bottom: none;
}

.position-row:hover {
    background: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 97, 175, 0.05);
}

.pos-dept {
    flex: 0 0 180px;
    font-size: 11px;
    font-weight: 800;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pos-title {
    flex: 1;
    font-size: 18px;
    font-weight: 800;
    color: #003F7A;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pos-location {
    flex: 0 0 250px;
    font-size: 14px;
    color: #64748B;
}

.pos-action {
    flex: 0 0 120px;
    text-align: right;
    font-size: 12px;
    font-weight: 800;
    color: #0061AF;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    transition: all 0.3s ease;
}

.position-row:hover .pos-action {
    gap: 10px;
}

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

    .value-item:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .career-values-grid {
        grid-template-columns: 1fr;
    }

    .value-item {
        border-right: none;
        border-bottom: 1px solid #F0F4FA;
    }

    .value-item:last-child {
        border-bottom: none;
    }

    .position-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .pos-dept,
    .pos-location,
    .pos-action {
        flex: none;
        width: 100%;
        text-align: left;
        justify-content: flex-start;
    }
}

/* Career Form */
.career-form-section {
    padding-bottom: 80px;
}

.career-form-card {
    background: #FFFFFF;
    border: 1px solid #F0F4FA;
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 40px 100px rgba(0, 97, 175, 0.05);
}

.career-form-card h2 {
    font-size: 32px;
    font-weight: 800;
    color: #003F7A;
    margin-bottom: 40px;
}

.career-input-group {
    margin-bottom: 25px;
}

.career-label {
    font-size: 10px;
    font-weight: 800;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.career-input,
.career-select {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 100px;
    padding: 15px 30px;
    font-size: 14px;
    color: #003F7A;
    transition: all 0.3s ease;
    outline: none;
}

.career-input:focus,
.career-select:focus {
    border-color: #0061AF;
    box-shadow: 0 0 0 4px rgba(0, 97, 175, 0.05);
}

/* File Upload */
.cv-upload-wrapper {
    margin-top: 10px;
}

.cv-dropzone {
    width: 100%;
    height: 140px;
    border: 2px dashed #E2E8F0;
    border-radius: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #FFFFFF;
}

.cv-dropzone:hover {
    border-color: #0061AF;
    background: #F8FBFF;
}

.cv-dropzone-text {
    font-size: 13px;
    font-weight: 800;
    color: #0061AF;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.cv-dropzone-subtext {
    font-size: 11px;
    color: #94A3B8;
}

.career-submit-btn {
    background: #0057B8;
    color: #FFFFFF;
    border: none;
    border-radius: 100px;
    padding: 18px 60px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 50px auto 0;
    display: block;
}

.career-submit-btn:hover {
    background: #003F7A;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 87, 184, 0.2);
}

.btn-error-shake {
    animation: shake 0.5s cubic-bezier(.36, .07, .19, .97) both;
}

@keyframes shake {

    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

@media (max-width: 768px) {
    .career-form-card {
        padding: 40px 25px;
        border-radius: 30px;
    }
}

/* =========================================
   DEALERSHIP PAGE STYLES
========================================= */
.dealership-hero-section {
    padding: 30px 0 50px;
    background: #FFFFFF;
}

.dealership-hero-container {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.dealership-hero-svg-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-47.5%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.dealership-hero-svg-bg svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 40px 100px rgba(0, 97, 175, 0.05));
}

.dealership-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 0px;
    min-height: 500px;
}

.dealership-globe-col {
    flex: 0 0 45%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.dealership-globe-img {
    max-width: 100%;
    height: auto;
    margin-bottom: -50px;
    filter: drop-shadow(0 20px 50px rgba(0, 97, 175, 0.1));
}

.dealership-text-col {
    flex: 1;
}

.dealership-hero-title {
    font-size: 60px;
    font-weight: 300;
    line-height: 1.1;
    color: #0061AF;
    margin-bottom: 20px;
}

.dealership-hero-title b,
.dealership-hero-title strong {
    display: block;
    font-weight: 700;
    color: #0061AF;
    font-size: 55px;
}

.dealership-hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #64748B;
    max-width: 550px;
}

.dealership-content-main {
    background: radial-gradient(circle at center, #FFFFFF 5%, #F4F8FF 99%);
    padding: 0 0 100px;
}

/* Dealership Process */
.process-section {
    padding: 20px 0 80px;
}

.process-title {
    font-size: 32px;
    font-weight: 800;
    color: #003F7A;
    margin-bottom: 40px;
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-item {
    display: flex;
    align-items: center;
    padding: 25px 0;
    border-top: 1px solid #EBF1F9;
    text-decoration: none !important;
}

.process-item:last-child {
    border-bottom: 1px solid #EBF1F9;
}

.process-number {
    flex: 0 0 60px;
    font-size: 14px;
    font-weight: 800;
    color: #0061AF;
}

.process-text {
    font-size: 20px;
    font-weight: 800;
    color: #003F7A;
}

@media (max-width: 991px) {
    .dealership-content-main {
        padding-bottom: 50px;
    }
}


@media (max-width: 991px) {
    .dealership-hero-inner {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
        min-height: auto;
    }

    .dealership-globe-col {
        display: none;
    }

    .dealership-hero-desc {
        margin: 0 auto;
    }

    .dealership-hero-svg-bg {
        display: none;
    }

    .dealership-hero-inner {
        background: #EEF7FD;
        border-radius: 30px;
    }
}

/* =========================================
   PRODUCTS PAGE STYLES
========================================= */
.products-section {
    padding: 60px 0 100px;
    background: #FFFFFF;
}

.products-header {
    margin-bottom: 50px;
}

.products-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #003F7A;
    margin-bottom: 10px;
}

.products-header p {
    font-size: 18px;
    color: #64748B;
}

.products-grid-container {
    border: 1px solid #F0F4FA;
    border-radius: 4px;
    overflow: hidden;
    background: #FFFFFF;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.product-card {
    padding: 50px 40px;
    border-right: 1px solid #F0F4FA;
    border-bottom: 1px solid #F0F4FA;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    max-height: 940px;
    transition: all 0.4s ease;
    text-decoration: none !important;
}

.product-card:nth-child(3n) {
    border-right: none;
}

.product-card:nth-last-child(-n+3) {
    border-bottom: none;
}

.product-card:hover {
    background: #F8FBFF;
}

.product-card-label {
    font-size: 10px;
    font-weight: 800;
    color: #0061AF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
    min-height: 14px;
    /* Ensure space even if empty */
}

.product-card-title {
    font-size: 28px;
    font-weight: 800;
    color: #003F7A;
    margin-top: 0;
    margin-bottom: 15px;
    min-height: 68px;
    /* For consistent start of description */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 2;
}

.product-card-desc {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 25px;
    min-height: 90px;
    /* For consistent start of link/image */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 4;
}

.product-card-link {
    font-size: 12px;
    font-weight: 800;
    color: #0061AF;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: auto;
}

.product-card-img-wrapper {
    margin-top: 40px;
    height: 400px;
    /* Büyütülmüş sabit yükseklik */
    display: flex;
    justify-content: right;
    align-items: flex-end;
}

.product-card-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

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

.coming-soon-placeholder {
    width: 100%;
    height: 100%;
    background: #f1f5f9;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px dashed #e2e8f0;
}

/* Landscape Product Card (Horizontal Layout) */
.landscape-card {
    grid-column: span 3;
    max-height: none !important;
    border-right: none !important;
}

.product-landscape-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

.product-text-box {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.landscape-card .product-card-img-wrapper {
    flex: 1.8;
    margin-top: 0;
    height: 520px;
    justify-content: center;
    align-items: center;
}

.landscape-card .product-card-title {
    min-height: auto;
    font-size: clamp(28px, 3vw, 42px);
    margin-bottom: 20px;
}

.landscape-card .product-card-desc {
    min-height: auto;
    font-size: 16px;
    max-width: 650px;
    -webkit-line-clamp: none;
    line-clamp: none;
}

.landscape-card .product-card-link {
    margin-bottom: 0;
    margin-top: 20px;
}

@media (max-width: 991px) {
    .landscape-card {
        grid-column: span 2;
    }
    .product-landscape-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    .landscape-card .product-card-link {
        justify-content: center;
    }
    .landscape-card .product-card-img-wrapper {
        height: 300px;
    }
}


@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card:nth-child(3n) {
        border-right: 1px solid #F0F4FA;
    }

    .product-card:nth-child(2n) {
        border-right: none;
    }
}

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

    .product-card {
        border-right: none !important;
        min-height: auto;
    }

    .products-header h2 {
        font-size: 32px;
    }
}

/* =========================================
   PRODUCT DETAIL PAGE STYLES
========================================= */
.product-detail-main {
    padding: 60px 0 100px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F4F8FF 100%);
}

.pd-hero-row {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 80px;
}

.pd-hero-text {
    flex: 1;
}

.pd-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #0061AF;
    /* Mentis Dark Blue */
    margin-bottom: 25px;
}

.pd-hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #64748B;
    margin-bottom: 40px;
    max-width: 500px;
}

.pd-btn-group {
    display: flex;
    gap: 20px;
}

.pd-btn-primary {
    background: #0057B8;
    color: #FFFFFF;
    padding: 15px 40px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.pd-btn-outline {
    border: 1.5px solid #0057B8;
    color: #0057B8;
    padding: 15px 40px;
    border-radius: 100px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.pd-btn-primary:hover {
    background: #003F7A;
    transform: translateY(-2px);
    color: white;
}

.pd-btn-outline:hover {
    background: rgba(0, 97, 175, 0.05);
    transform: translateY(-2px);
}

.pd-hero-img-col {
    flex: 0 0 50%;
    position: sticky;
    top: 130px;
}

.pd-hero-img-card {
    background: #F8FBFF;
    border-radius: 40px;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    overflow: hidden;
}

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

/* Stats Section */
.product-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 100px;
}

.stat-item h3 {
    font-size: 64px;
    font-weight: 700;
    color: #0061AF;
    margin-bottom: 15px;
}

.stat-item p {
    font-size: 16px;
    font-weight: 800;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-line {
    width: 60px;
    height: 4px;
    background: #0061AF;
    margin-top: 20px;
}

/* Technical Advantages */
.tech-advantages-section h2 {
    font-size: 32px;
    font-weight: 800;
    color: #003F7A;
    margin-bottom: 50px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.advantage-card {
    background: #FFFFFF;
    border: 1px solid #F0F0F0;
    padding: 40px;
    border-radius: 32px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 360px;
    height: 320px;
    margin: 0 auto;
}

.advantage-card:hover {
    box-shadow: 0 20px 50px rgba(0, 97, 175, 0.08);
    transform: translateY(-5px);
}

.adv-icon-box {
    width: 50px;
    height: 50px;
    background: #F0F7FF;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.adv-icon-box span {
    color: #55B3FF;
    font-size: 24px;
}

.advantage-card h4 {
    font-size: 18px;
    font-weight: 800;
    color: #003F7A;
    margin-bottom: 15px;
}

.advantage-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #64748B;
}

/* Technical Specifications */
.tech-specs-section {
    margin-top: 100px;
}

.tech-specs-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #002D5E;
    margin-bottom: 50px;
}

.specs-list {
    display: flex;
    flex-direction: column;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid #F0F0F0;
}

.spec-item:first-child {
    border-top: 1px solid #F0F0F0;
}

.spec-name {
    font-size: 16px;
    color: #64748B;
    font-weight: 500;
}

.spec-value {
    font-size: 16px;
    font-weight: 800;
    color: #003F7A;
}

@media (max-width: 991px) {
    .pd-hero-row {
        flex-direction: column-reverse;
        gap: 40px;
        text-align: center;
        align-items: center;
    }

    .pd-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .pd-btn-group {
        justify-content: center;
    }

    .pd-hero-img-col {
        width: 100%;
        position: relative;
        top: 0;
    }

    .pd-hero-img-card {
        height: 350px;
        padding: 30px;
    }

    .product-stats-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .stat-item {
        text-align: center;
    }

    .stat-line {
        margin-left: auto;
        margin-right: auto;
    }

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

    .tech-advantages-section {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .pd-hero-title {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .pd-btn-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .pd-btn-primary,
    .pd-btn-outline {
        width: 100%;
        text-align: center;
    }

    .stat-item h3 {
        font-size: 40px;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .advantage-card {
        padding: 25px 15px !important;
        height: auto !important;
        min-height: 240px !important;
        border-radius: 20px !important;
        width: 100% !important;
    }

    .advantage-card h4 {
        font-size: 16px !important;
        margin-bottom: 10px !important;
    }

    .pd-hero-img-card {
        height: 280px;
        padding: 20px;
        border-radius: 30px;
    }

    .advantage-card p {
        font-size: 13px !important;
    }

    .adv-icon-box {
        width: 40px !important;
        height: 40px !important;
        margin-bottom: 15px !important;
    }

    .spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 20px 0;
    }

    .spec-value {
        font-size: 15px;
    }
}

/* =========================================
   GENERAL PAGE WRAPPER (USED BY ROI, TOOLS, SERVICES)
========================================= */
.mentis-page-wrapper {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FBFF 100%);
    padding: 60px 0 100px;
}

.mentis-page-wrapper.services-bg {
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.roi-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #FFFFFF;
    border: 1px solid #E5EEFC;
    border-radius: 0;
    overflow: hidden;
}

.roi-box {
    padding: 60px;
    border: 1px solid #F0F4FA;
}

.roi-label-small {
    font-size: 11px;
    font-weight: 800;
    color: #0061AF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    display: block;
}

.roi-h2 {
    font-size: 34px;
    font-weight: 800;
    color: #002D5E;
    margin-bottom: 40px;
}

/* Inputs */
.roi-input-item {
    margin-bottom: 30px;
    border-bottom: 1px solid #F0F0F0;
    padding-bottom: 15px;
}

.roi-input-label {
    font-size: 10px;
    color: #94A3B8;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.roi-input-val {
    font-size: 24px;
    font-weight: 800;
    color: #002D5E;
    display: block;
}

.roi-link {
    font-size: 12px;
    font-weight: 800;
    color: #0061AF;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

/* Cost Boxes */
.cost-compare-card {
    padding: 25px 30px;
    border-radius: 40px;
    margin-bottom: 20px;
}

.cost-compare-card.existing {
    background: #F8FAFC;
}

.cost-compare-card.mentis {
    border: 1.5px solid #E0EEFF;
    background: #F5F9FF;
}

.compare-label {
    font-size: 10px;
    font-weight: 700;
    color: #94A3B8;
    display: block;
    margin-bottom: 5px;
}

.compare-price {
    font-size: 22px;
    font-weight: 800;
    color: #0061AF;
}

/* Stats */
.roi-stat-label {
    font-size: 14px;
    font-weight: 700;
    color: #002D5E;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.roi-stat-value {
    font-size: 64px;
    font-weight: 800;
    color: #0061AF;
    margin-bottom: 40px;
}

/* Payback Chart Area */
.payback-visual {
    position: relative;
    padding-top: 40px;
}

.chart-line-dashed {
    width: 100%;
    height: 120px;
    border-bottom: 1.5px dashed #0061AF;
    position: relative;
    margin-bottom: 20px;
}

.chart-line-dashed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top right, transparent 49%, #0061AF 50%, #0061AF 51%, transparent 52%);
    background-size: 100% 100%;
    border-bottom: 1.5px dashed #0061AF;
    transform: none;
    /* We'll use a real SVG for the line in HTML for better result */
}

/* =========================================
   UNIT CONVERTER STYLES
========================================= */
.converter-header {
    margin-bottom: 50px;
}

.converter-title {
    font-size: 32px;
    font-weight: 800;
    color: #002D5E;
    margin-bottom: 10px;
}

.converter-subtitle {
    font-size: 15px;
    color: #64748B;
    font-weight: 500;
}

.converter-tabs {
    display: flex;
    gap: 40px;
    border-bottom: 1px solid #EEF2F7;
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.converter-tab {
    font-size: 13px;
    font-weight: 800;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 0;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.converter-tab.active {
    color: #0061AF;
}

.converter-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #0061AF;
}

.converter-main-card {
    background: #FFFFFF;
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 97, 175, 0.03);
    border: 1px solid #F0F4FA;
    margin-bottom: 40px;
}

.converter-label {
    font-size: 10px;
    font-weight: 800;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    display: block;
}

.converter-input-large {
    font-size: 56px;
    font-weight: 800;
    color: #002D5E;
    border: none;
    border-bottom: 2px solid #0061AF;
    width: 250px;
    outline: none;
    padding: 0;
    margin-bottom: 40px;
    background: transparent;
}

.converter-select-wrap {
    position: relative;
    max-width: 250px;
}

.converter-select {
    font-size: 20px;
    font-weight: 800;
    color: #002D5E;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    width: 100%;
    outline: none;
    appearance: none;
}

.converter-select-wrap::after {
    content: 'expand_more';
    font-family: 'Material Symbols Outlined';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #0061AF;
    font-size: 24px;
}

.converter-results-box {
    background: #F8FBFF;
    border-radius: 20px;
    padding: 40px;
}

.results-title {
    font-size: 10px;
    font-weight: 800;
    color: #0061AF;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: block;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #EEF2F7;
}

.result-row:last-child {
    border-bottom: none;
}

.result-unit {
    font-size: 14px;
    font-weight: 500;
    color: #475569;
}

.result-value {
    font-size: 18px;
    font-weight: 800;
    color: #002D5E;
}

.contact-banner {
    background: #FFFFFF;
    border: 1px solid #0061AF;
    border-radius: 24px;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-text h3 {
    font-size: 24px;
    font-weight: 800;
    color: #002D5E;
    margin-bottom: 10px;
}

.contact-text p {
    font-size: 15px;
    color: #64748B;
    margin: 0;
}

@media (max-width: 991px) {
    .converter-main-card {
        padding: 30px;
    }

    .contact-banner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 30px;
    }

    .converter-input-large {
        width: 100%;
    }
}

/* Button */
.roi-btn-detailed {
    background: #005EAD;
    color: #FFFFFF;
    padding: 22px 45px;
    border-radius: 100px;
    /* Pill shape as in image */
    font-weight: 800;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.roi-btn-detailed:hover {
    background: #004D8C;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 94, 173, 0.2);
}

.roi-input-field {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 24px;
    font-weight: 800;
    color: #002D5E;
    padding: 5px 0;
    outline: none !important;
}

.roi-input-field:focus {
    color: #0061AF;
}

/* Remove arrows from number input */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.roi-input-field::placeholder {
    color: #94A3B8;
    font-weight: 500;
}

select.roi-input-field {
    appearance: none;
    cursor: pointer;
}

select.roi-input-field:invalid,
select.roi-input-field option:first-child {
    color: #94A3B8;
    font-weight: 500;
}

select.roi-input-field option {
    color: #002D5E;
    font-weight: 800;
}

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

    .roi-box {
        padding: 40px 25px;
    }

    .roi-stat-value {
        font-size: 48px;
    }
}

/* =========================================
   SERVICES (HIZMETLER) PAGE STYLES
========================================= */
.services-hero {
    margin-bottom: 80px;
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 120px;
}

.service-card {
    background: #F4F8FF;
    border: 1px solid #F0F4FA;
    border-radius: 32px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 480px;
    text-decoration: none !important;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 97, 175, 0.08);
}

.service-card.dark {
    background: #002D5E;
    border: none;
}

.service-card.dark .service-card-title,
.service-card.dark .service-card-desc {
    color: #FFFFFF;
}

.service-card.dark .service-card-num {
    color: rgba(255, 255, 255, 0.2);
}

.service-card-num {
    font-size: 10px;
    font-weight: 800;
    color: #CBD5E1;
    margin-bottom: 20px;
}

.service-card-title {
    font-size: 20px;
    font-weight: 800;
    color: #002D5E;
    margin-bottom: 15px;
    line-height: 1.2;
}

.service-card-desc {
    font-size: 14px;
    color: #64748B;
    font-weight: 500;
    margin-bottom: 40px;
}

.service-card-img {
    margin-top: auto;
    margin-left: auto;
    /* Push to the right */
    width: 90%;
    /* Scale slightly so it looks 'yarık' or aligned properly */
    height: 200px;
    object-fit: contain;
    display: block;
    margin-right: -20px;
    /* Slight overflow for 'yarık' effect if needed, adjust as per taste */
}

.service-card-btn {
    font-size: 10px;
    font-weight: 800;
    color: #0061AF;
    text-transform: uppercase;
    margin-top: 15px;
    display: none;
    /* Only show on hover or specific cards like design */
}

.service-card.dark .service-card-btn {
    display: block;
    color: #FFFFFF;
}

/* Utilities Layout */
.utility-section {
    margin-bottom: 120px;
}

.utility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.utility-card-title {
    font-size: 18px;
    font-weight: 800;
    color: #002D5E;
    margin-bottom: 12px;
}

.utility-card-desc {
    font-size: 14px;
    color: #64748B;
    margin-bottom: 25px;
    line-height: 1.6;
}

.utility-btn-outline {
    display: inline-flex;
    padding: 12px 35px;
    border: 1.5px solid #0061AF;
    border-radius: 100px;
    color: #0061AF;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.utility-btn-outline:hover {
    background: #0061AF;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 97, 175, 0.2);
}

@media (max-width: 1200px) {
    .service-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-card {
        padding: 30px 20px;
        min-height: 400px;
    }

    .service-card-title {
        font-size: 16px;
    }

    .service-card-desc {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .service-card-img {
        height: 150px;
    }

    .utility-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


/* =========================================
   DOCUMENTS (TEKNIK KUTUPHANE) STYLES
========================================= */
.doc-section-title {
    font-size: 20px;
    font-weight: 800;
    color: #002D5E;
    margin: 60px 0 30px;
}

.doc-row-item {
    padding: 25px 0;
    border-bottom: 1px solid #EEF2F7;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.doc-row-item:hover {
    background: rgba(248, 251, 255, 0.8);
    padding-left: 15px;
    padding-right: 15px;
}

.doc-type-label {
    font-size: 9px;
    font-weight: 800;
    color: #94A3B8;
    text-transform: uppercase;
    width: 120px;
    flex-shrink: 0;
}

.doc-name {
    font-size: 16px;
    font-weight: 800;
    color: #002D5E;
    flex-grow: 1;
}

.doc-action-link {
    font-size: 10px;
    font-weight: 800;
    color: #0061AF;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .doc-row-item {
        flex-wrap: wrap;
        gap: 10px;
    }

    .doc-type-label {
        width: 100%;
        margin-bottom: 5px;
    }

    .doc-name {
        width: 100%;
        margin-bottom: 10px;
        font-size: 14px;
    }
}

/* =========================================
   SECTOR DETAILS (SEKTOREL UYGULAMALAR)
========================================= */
.sector-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 780px);
    /* Desktop fixed width */
    justify-content: center;
    border-top: 1px solid #EEF2F7;
    background-color: white;
    margin-top: 60px;
}

.sector-detail-box {
    width: 780px;
    height: 780px;
    padding: 80px 100px;
    border-bottom: 1px solid #EEF2F7;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.sector-content-top {
    min-height: 300px;
    /* Reset to match user's latest edit */
}

.sector-detail-box:nth-child(even) {
    border-left: 1px solid #EEF2F7;
    margin-left: -1px;
    /* Avoid double borders */
}

/* V2 Alternating Layout Styles */
.sector-detail-box.illu-box {
    align-items: center;
    justify-content: center;
}

.sector-detail-box.illu-box .sector-illustration {
    margin: 0;
    align-self: center;
    max-width: 350px;
}

.sector-sub-section {
    margin-top: 30px;
}

.sector-sub-title {
    font-size: 20px;
    font-weight: 700;
    color: #002D5E;
    margin-bottom: 15px;
}

.sector-sub-desc {
    font-size: 14px;
    color: #666666;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #EEF2F7;
}

.sector-sub-desc:last-child {
    border-bottom: none;
}

/* V2 Specific (Smaller boxes for Support) */
.sector-detail-grid.v2-grid {
    grid-template-columns: repeat(2, 780px);
    /* Revert to standard width */
    margin-top: 40px;
}

.v2-grid .sector-detail-box {
    width: 780px;
    height: 450px;
    /* Shortened as requested */
    padding: 40px 100px;
}

.v2-grid .sector-detail-title {
    font-size: 28px;
    max-width: 100%;
}

.v2-grid .sector-detail-desc {
    font-size: 15px;
}

.v2-grid .sector-content-top {
    min-height: auto;
}

.v2-grid .sector-illustration {
    max-width: 320px;
    margin-top: auto;
}

@media (max-width: 992px) {
    .sector-detail-grid.v2-grid {
        display: flex;
        flex-direction: column;
    }

    .v2-grid .sector-detail-box {
        width: 100% !important;
        height: auto !important;
        padding: 40px 20px !important;
    }

    .v2-grid .sector-detail-box:nth-child(1) {
        order: 1;
    }

    .v2-grid .sector-detail-box:nth-child(2) {
        order: 2;
    }

    .v2-grid .sector-detail-box:nth-child(4) {
        order: 3;
    }

    .v2-grid .sector-detail-box:nth-child(3) {
        order: 4;
    }

    .v2-grid .sector-detail-box:nth-child(5) {
        order: 5;
    }

    .v2-grid .sector-detail-box:nth-child(6) {
        order: 6;
    }

    .v2-grid .sector-illustration {
        max-width: 200px !important;
        align-self: flex-start !important;
        margin-right: 0 !important;
    }
}

/* V3 Specific (Engineering Matrix) */
.sector-detail-grid.v3-grid {
    grid-template-columns: repeat(2, 780px);
    justify-content: center;
    background-color: white;
}

.v3-grid .sector-detail-box {
    width: 780px;
    height: 780px;
    padding: 80px 100px;
    display: flex;
    flex-direction: column;
}

.v3-grid .sector-illustration {
    max-width: 350px;
    margin-top: auto;
    align-self: flex-start;
    /* Sola yasladık */
    object-fit: contain;
}

.v3-grid .sector-content-top {
    min-height: 280px;
}

@media (max-width: 992px) {
    .sector-detail-grid.v3-grid {
        grid-template-columns: 1fr;
    }

    .v3-grid .sector-detail-box {
        width: 100% !important;
        height: auto !important;
        padding: 40px 20px !important;
    }

    .v3-grid .sector-illustration {
        max-width: 250px !important;
        align-self: flex-start !important;
        margin: 30px 0 0 !important;
        /* Ortalamayı kaldırdık */
    }

    .v3-grid .sector-content-top {
        min-height: auto !important;
    }
}

.sector-meta-top {
    font-size: 10px;
    font-weight: 800;
    color: #0061AF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.sector-detail-title {
    font-size: 36px;
    font-weight: 700;
    color: #002D5E;
    width: 100%;
    max-width: 460px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.sector-detail-desc {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 400px;
}

.sector-stats-row {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.sector-stat-item .val {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: #0057B8;
}

.sector-stat-item .lbl {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin-top: 5px;
}

.sector-illustration {
    width: 100%;
    max-width: 400px;
    align-self: flex-end;
    object-fit: contain;
    margin-right: -40px;
    margin-top: auto;
}

@media (max-width: 1600px) {
    .sector-detail-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }

    .sector-detail-box {
        width: 100%;
        height: auto;
        padding: 60px;
    }
}

@media (max-width: 992px) {
    .sector-detail-grid {
        grid-template-columns: 1fr;
    }

    .sector-detail-box {
        padding: 40px 20px;
        border-right: none !important;
        height: auto;
    }

    .sector-content-top {
        min-height: auto;
    }

    .sector-detail-title {
        font-size: 28px;
        max-width: 100%;
    }

    .sector-stats-row {
        gap: 20px;
        flex-wrap: wrap;
    }

    .sector-illustration {
        max-width: 280px;
        margin-right: 0;
        margin-top: 30px;
        align-self: flex-start;
    }
}

/* SERVICE HUB CARDS */
.service-hub-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #FFFFFF;
    border: 1px solid #E5EEFC;
    border-radius: 24px;
    padding: 60px;
    height: 100%;
    min-height: 400px;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

.service-hub-card.dark {
    background: #002D5E;
    border-color: #002D5E;
}

.service-hub-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 97, 175, 0.12);
    border-color: #0061AF;
}

.service-hub-card.dark:hover {
    box-shadow: 0 20px 40px rgba(0, 45, 94, 0.3);
}

.hub-num {
    font-size: 14px;
    font-weight: 800;
    color: #0061AF;
    display: block;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.service-hub-card.dark .hub-num {
    color: #3FA2F6;
}

.hub-title {
    font-size: 34px;
    font-weight: 800;
    color: #002D5E;
    margin-bottom: 20px;
    line-height: 1.1;
}

.service-hub-card.dark .hub-title {
    color: #FFFFFF;
}

.hub-desc {
    font-size: 16px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.service-hub-card.dark .hub-desc {
    color: #A3B3C9;
}

.hub-link-btn {
    font-size: 13px;
    font-weight: 800;
    color: #0061AF;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.service-hub-card.dark .hub-link-btn {
    color: #FFFFFF;
}

.service-hub-card:hover .hub-link-btn {
    letter-spacing: 2px;
}

@media (max-width: 992px) {
    .service-hub-card {
        padding: 40px;
        min-height: auto;
    }

    .hub-title {
        font-size: 28px;
    }
}

/* COOKIE CONSENT POPUP */
.cookie-consent-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 400px;
    max-width: calc(100vw - 60px);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 97, 175, 0.15);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 15px 35px rgba(0, 45, 94, 0.12);
    z-index: 9999;
    transform: translateY(120%);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.cookie-consent-popup.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.cookie-icon {
    width: 48px;
    height: 48px;
    background: #f0f7ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-icon span {
    color: #0061AF;
    font-size: 28px;
}

.cookie-text h5 {
    font-size: 16px;
    font-weight: 800;
    color: #002D5E;
    margin-bottom: 6px;
}

.cookie-text p {
    font-size: 13.5px;
    color: #64748B;
    line-height: 1.5;
    margin-bottom: 16px;
}

.cookie-text a {
    color: #0061AF;
    text-decoration: none;
    font-weight: 700;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-accept,
.btn-refuse {
    flex: 1;
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-accept {
    background: #0061AF;
    color: white;
}

.btn-accept:hover {
    background: #004a87;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 97, 175, 0.2);
}

.btn-refuse {
    background: #f1f5f9;
    color: #64748B;
}

.btn-refuse:hover {
    background: #e2e8f0;
    color: #475569;
}

@media (max-width: 576px) {
    .cookie-consent-popup {
        bottom: 20px;
        right: 20px;
        left: 20px;
        width: auto;
        max-width: none;
    }
}

/* =========================================
   CAREER DETAIL PAGE STYLES
========================================= */
.career-detail-section {
    padding: 60px 0 80px;
    background: radial-gradient(circle, #FFFFFF 5%, #F4F8FF 99%);
}

.career-detail-header {
    margin-bottom: 40px;
}

.career-detail-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.career-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'Mont', sans-serif;
}

.career-badge-dept {
    background: #0061AF;
    color: #fff;
}

.career-badge-type {
    background: #E8F4FD;
    color: #0061AF;
    border: 1px solid #B8DBEF;
}

.career-badge-loc {
    background: #F0F4F8;
    color: #475569;
    border: 1px solid #E2E8F0;
}

.career-detail-title {
    font-family: 'Mont', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 12px;
    line-height: 1.2;
}

.career-detail-subtitle {
    font-size: 16px;
    color: #64748B;
    line-height: 1.7;
    max-width: 680px;
}

.career-detail-block {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid #E5EEFC;
}

.career-detail-block:last-child {
    border-bottom: none;
}

.career-detail-block h3 {
    font-family: 'Mont', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 16px;
}

.career-detail-block p {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
}

.career-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.career-detail-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
}

.career-detail-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0061AF;
}

/* Summary Card */
.career-summary-card {
    background: #FFFFFF;
    border: 1px solid #E5EEFC;
    border-radius: 16px;
    padding: 32px;
    position: sticky;
    top: 100px;
}

.career-summary-card h4 {
    font-family: 'Mont', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #0061AF;
}

.career-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #F1F5F9;
}

.career-summary-label {
    font-size: 13px;
    color: #94A3B8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.career-summary-value {
    font-size: 14px;
    color: #0F172A;
    font-weight: 600;
}

.career-apply-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 24px;
    margin-top: 24px;
    background: #0061AF;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'Mont', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.career-apply-btn:hover {
    background: #004C8A;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 97, 175, 0.3);
}

@media (max-width: 768px) {
    .career-detail-title {
        font-size: 26px;
    }

    .career-summary-card {
        position: static;
        margin-top: 30px;
    }
}

/* =========================================
   LANGUAGE DROPDOWN STYLES
========================================= */
.lang-dropdown-toggle {
    cursor: pointer;
    user-select: none;
}

.lang-switcher-wrap {
    position: relative;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    border: 1px solid #E5EEFC;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 45, 94, 0.12);
    padding: 6px;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 9999;
    pointer-events: none;
}

.lang-switcher-wrap:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.lang-dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 700;
    color: #002D5E;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.lang-dropdown-item:hover {
    background: #F0F7FF;
    color: #0061AF;
    padding-left: 18px;
}

/* =========================================
   RTL (ARABIC) SUPPORT
========================================= */
html[dir="rtl"] .topbar .container {
    direction: rtl;
}

html[dir="rtl"] .hero-info-card,
html[dir="rtl"] .sequence-text-block,
html[dir="rtl"] .why-feature-card,
html[dir="rtl"] .split-section,
html[dir="rtl"] .hizmet-card,
html[dir="rtl"] .psa-text-content,
html[dir="rtl"] .footer-col {
    text-align: right;
}

html[dir="rtl"] .material-symbols-outlined.ms-1,
html[dir="rtl"] .material-symbols-outlined.ms-2 {
    margin-left: 0 !important;
    margin-right: 0.25rem !important;
}

html[dir="rtl"] .header-nav {
    direction: ltr;
}

html[dir="rtl"] .megamenu {
    text-align: right;
    left: 15px !important;
    right: auto !important;
}

html[dir="rtl"] .hizmetler-section,
html[dir="rtl"] .haberler-section {
    direction: ltr;
    text-align: left;
}

html[dir="rtl"] .lang-dropdown {
    right: auto;
    left: 0;
}

html[dir="rtl"] .menu-panel-body,
html[dir="rtl"] .menu-panel-footer {
    text-align: right;
}

/* =========================================
   TEKNOLOJİYA PAGE STYLES
   ========================================= */
.teknolojiya-section {
    background-color: #ffffff;
    font-family: inherit;
}

.teknolojiya-title {
    color: #0d2a4e;
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.teknolojiya-desc {
    color: #6c757d;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 90%;
}

.teknolojiya-divider {
    border: 0;
    border-top: 1px solid rgba(13, 42, 78, 0.1);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.teknolojiya-subtitle-tag {
    color: #0c54a0;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.teknolojiya-sub-heading {
    color: #0d2a4e;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.01em;
    margin-bottom: 0;
}

.teknolojiya-sub-desc {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
}

.teknolojiya-metric-val {
    color: #0d2a4e;
    font-weight: 800;
    font-size: 4rem;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.teknolojiya-metric-title {
    color: #0c54a0;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.teknolojiya-metric-desc {
    color: #99a1a8;
    font-size: 0.85rem;
    font-weight: 400;
}

.teknolojiya-pill {
    background-color: #f1f6fc;
    color: #0c54a0;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.teknolojiya-pill:hover {
    background-color: #e2effa;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .teknolojiya-title {
        font-size: 2.2rem;
    }

    .teknolojiya-desc {
        font-size: 1rem;
        max-width: 100%;
    }

    .teknolojiya-sub-heading {
        font-size: 1.5rem;
    }

    .teknolojiya-metric-val {
        font-size: 2.2rem;
        margin-bottom: 0.25rem;
    }

    .teknolojiya-metric-title {
        font-size: 0.7rem;
    }

    .teknolojiya-metric-desc {
        font-size: 0.75rem;
    }

    .teknolojiya-pill {
        font-size: 0.8rem;
        padding: 0.6rem 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 50px;
    }
}

/* =========================================
   7/24 DESTEK PAGE STYLES
   ========================================= */

.destek-hero {
    background-color: #ffffff;
    min-height: 500px;
}

.destek-watermark {
    position: absolute;
    top: 50px;
    left: 5%;
    font-size: 25vw;
    font-weight: 900;
    color: #f8f9fc;
    line-height: 0.8;
    z-index: 1;
    white-space: nowrap;
    user-select: none;
}

.destek-hero-title {
    color: #0c54a0;
    font-weight: 800;
    font-size: 4rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.destek-subtitle-tag {
    color: #0c54a0;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
}

.destek-btn {
    background-color: #0c54a0;
    border-color: #0c54a0;
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(12, 84, 160, 0.3);
}

.destek-btn:hover {
    background-color: #0a407b;
    border-color: #0a407b;
}

.destek-blue-section {
    position: relative;
    z-index: 2;
}

.destek-blue-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background-color: #0c54a0;
    z-index: 1;
}

html[dir="rtl"] .destek-blue-bg {
    left: auto;
    right: 0;
}

.destek-mavi-title {
    font-weight: 800;
    font-size: 2.2rem;
    line-height: 1.3;
}

.destek-mavi-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.9;
}

.destek-machine-img {
    max-height: 650px;
    object-fit: contain;
    position: relative;
}

.destek-eko-section {
    background-color: #ffffff;
    position: relative;
    z-index: 3;
    padding-top: 100px !important;
}

.destek-eko-title {
    color: #0d2a4e;
    font-weight: 800;
    font-size: 1.8rem;
}

.destek-ekobox {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #0061AF;
    transition: transform 0.3s ease;
}

.destek-ekobox:hover {
    transform: translateY(-5px);
}

.destek-ekobox-title {
    color: #0d2a4e;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.destek-ekobox-desc {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.destek-yuzde-box {
    background: #ffffff;
    border-radius: 50px;
    padding: 2.5rem 4rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
}

.destek-yuzde-val {
    color: #0c54a0;
    font-weight: 900;
    font-size: 5.5rem;
    line-height: 1;
    letter-spacing: -0.03em;
}

.destek-yuzde-title {
    color: #0d2a4e;
    font-weight: 800;
    font-size: 1.4rem;
}

.destek-yuzde-desc {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
}

@media (max-width: 991px) {
    .destek-blue-bg {
        width: 100%;
    }

    .destek-watermark {
        font-size: 40vw;
        top: 20px;
    }

    .destek-hero-title {
        font-size: 3rem;
    }

    .destek-machine-img {
        top: 0;
        margin-bottom: 0;
    }

    .destek-eko-section {
        padding-top: 50px !important;
    }
}

@media (max-width: 768px) {
    .destek-yuzde-box {
        border-radius: 30px;
        padding: 2rem;
        flex-direction: column;
        text-align: center;
    }

    .destek-yuzde-val {
        font-size: 4rem;
        margin-right: 0 !important;
        margin-bottom: 1rem !important;
    }
}

/* =========================================
   UZAKTAN DESTEK PAGE STYLES
   ========================================= */

.uzaktan-hero {
    background-color: #ffffff;
}

.uzaktan-hero-title {
    color: #0d2a4e;
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.uzaktan-hero-desc {
    color: #6c757d;
    font-size: 1.15rem;
    line-height: 1.6;
}

.uzaktan-btn {
    background-color: #0c54a0;
    border-color: #0c54a0;
    border-radius: 50px;
    padding: 0.8rem 2.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px rgba(12, 84, 160, 0.2);
}

.uzaktan-btn:hover {
    background-color: #0a407b;
    border-color: #0a407b;
}

.uzaktan-track-box {
    background-color: #f8fbfd;
    border-radius: 30px;
    padding: 4rem 2rem;
    max-width: 350px;
}

.uzaktan-track-title {
    color: #0c54a0;
    font-weight: 900;
    font-size: 4rem;
    line-height: 1;
}

.uzaktan-track-subtitle {
    color: #0d2a4e;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.uzaktan-sec2-svg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.uzaktan-sec2-svg-container svg {
    display: block;
    width: 100%;
    height: 100%;
}

.uzaktan-sec2-title {
    color: #0d2a4e;
    font-weight: 800;
    font-size: 2.2rem;
    line-height: 1.3;
}

.uzaktan-sec2-desc {
    color: #6c757d;
    font-size: 1.05rem;
    line-height: 1.6;
}

.uzaktan-card {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.uzaktan-card:hover {
    transform: translateY(-5px);
}

.uzaktan-card-title {
    color: #0d2a4e;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.uzaktan-card-desc {
    color: #6c757d;
    font-size: 0.85rem;
    line-height: 1.5;
}

.uzaktan-katman-box {
    background-color: #ffffff;
    border: 1px solid rgba(13, 42, 78, 0.1);
}

.uzaktan-katman-header {
    padding: 2.5rem 2.8rem;
    border-bottom: 1px solid rgba(13, 42, 78, 0.1);
}

.uzaktan-katman-title {
    color: #0d2a4e;
    font-weight: 800;
    font-size: 1.8rem;
    margin: 0;
}

.uzaktan-katman-col {
    padding: 3rem 2.8rem;
    border-right: 1px solid rgba(13, 42, 78, 0.1);
}

.katman-col-title {
    color: #0c54a0;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.katman-col-desc {
    color: #6c757d;
    font-size: 0.85rem;
    line-height: 1.5;
}

.uzaktan-yuzde-box {
    background-color: #ffffff;
    border-radius: 100px;
    padding: 2.5rem 4rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
}

.uzaktan-yuzde-val {
    color: #0c54a0;
    font-weight: 900;
    font-size: 5rem;
    line-height: 1;
    letter-spacing: -0.03em;
}

.uzaktan-yuzde-title {
    color: #0d2a4e;
    font-weight: 800;
    font-size: 1.4rem;
}

.uzaktan-yuzde-desc {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
}

@media (max-width: 991px) {
    .uzaktan-katman-col {
        border-right: none;
        border-bottom: 1px solid rgba(13, 42, 78, 0.1);
    }

    .uzaktan-katman-col:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .uzaktan-hero-title {
        font-size: 2.5rem;
    }

    .uzaktan-sec2-title {
        font-size: 1.8rem;
    }

    .uzaktan-katman-header,
    .uzaktan-katman-col {
        padding: 1.5rem !important;
    }

    .uzaktan-yuzde-box {
        border-radius: 30px;
        padding: 2rem;
        flex-direction: column;
        text-align: center;
    }

    .uzaktan-yuzde-val {
        font-size: 3.5rem;
        margin-right: 0 !important;
        margin-bottom: 1rem !important;
    }
}

/* =========================================
   TAVSIYE GORUS PAGE STYLES
   ========================================= */

.tavsiye-hero-section {
    padding-top: 60px;
    padding-bottom: 50px;
}

.tavsiye-hero-title {
    color: #0d2a4e;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.tavsiye-hero-subtitle {
    color: #0c54a0;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.tavsiye-hero-desc {
    color: #6c757d;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 600px;
}

.tavsiye-form-section {
    padding-top: 40px;
    padding-bottom: 60px;
}

.tavsiye-form-title {
    color: #0d2a4e;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.tavsiye-form-divider {
    border-top: 1px solid rgba(13, 42, 78, 0.1);
    margin-bottom: 3rem;
}

.tavsiye-form-label {
    display: block;
    color: #99a1a8;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.tavsiye-form-input {
    width: 100%;
    border: 1px solid rgba(13, 42, 78, 0.1);
    border-radius: 50px;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    color: #495057;
    transition: all 0.3s ease;
}

.tavsiye-form-input:focus {
    outline: none;
    border-color: #0061AF;
    box-shadow: 0 0 0 4px rgba(0, 97, 175, 0.1);
}

.tavsiye-form-btn-container {
    text-align: center;
    margin-top: 3rem;
}

.tavsiye-form-btn {
    background-color: #0c54a0;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 1rem 3rem;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.tavsiye-form-btn:hover {
    background-color: #0a407b;
    transform: translateY(-2px);
    color: #ffffff;
}

.tavsiye-cta-section {
    padding-top: 40px;
    padding-bottom: 80px;
}

.tavsiye-cta-box {
    border: 1px solid #0061AF;
    border-radius: 120px;
    padding: 4rem 5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 250px;
}

.tavsiye-cta-title {
    color: #0d2a4e;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.tavsiye-cta-desc {
    color: #6c757d;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.tavsiye-cta-btn {
    background-color: #0c54a0;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 0.9rem 2rem;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    width: max-content;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tavsiye-cta-btn:hover {
    background-color: #0a407b;
    color: #ffffff;
}

@media (max-width: 768px) {
    .tavsiye-hero-title {
        font-size: 2.5rem;
    }

    .tavsiye-cta-box {
        border-radius: 40px;
        padding: 3rem 2rem;
        text-align: center;
    }

    .tavsiye-cta-btn {
        margin: 0 auto;
    }
}

/* =========================================
   KESIF PAGE STYLES
   ========================================= */

.kesif-hero-section {
    background-color: #ffffff;
    background-image: linear-gradient(rgba(13, 42, 78, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 42, 78, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
}

.kesif-hero-title {
    color: #0d2a4e;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.kesif-hero-desc {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 90%;
}

.kesif-hero-metric {
    position: relative;
}

.kesif-hero-metric .metric-val {
    font-size: 10rem;
    font-weight: 900;
    color: #f4f8fb;
    line-height: 1;
    letter-spacing: -0.05em;
    user-select: none;
}

.kesif-hero-metric .metric-label {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    color: #0d2a4e;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.kesif-section-title {
    color: #0d2a4e;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.kesif-sectoral-box {
    position: relative;
    padding: 12rem 6rem;
}

.kesif-sectoral-svg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.kesif-sectoral-svg-container svg {
    width: 100%;
    height: 100%;
    display: block;
}

.kesif-sectoral-box .row {
    position: relative;
    z-index: 2;
}

.kesif-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 3.5rem 2.5rem;
    height: 100%;
    transition: transform 0.3s ease;
    border: 1px solid rgba(13, 42, 78, 0.03);
}

.kesif-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 42, 78, 0.05);
}

.kesif-card .card-title {
    color: #0d2a4e;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.kesif-card .card-desc {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
}

.kesif-checklist-box {
    background-color: #ffffff;
    border: 1px solid rgb(13 42 78 / 12%);
    border-radius: 40px;
    border-top-right-radius: 120px;
}

.kesif-checklist-box .checklist-title {
    color: #0d2a4e;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.kesif-checklist-box .checklist-label {
    color: #0c54a0;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.kesif-label {
    display: block;
    color: #99a1a8;
    font-size: 0.70rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.kesif-input,
.kesif-textarea {
    width: 100%;
    background-color: #f8fbff;
    border: 1px solid rgba(13, 42, 78, 0.05);
    border-radius: 50px;
    padding: 1.2rem 1.5rem;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.kesif-textarea {
    border-radius: 25px;
    resize: vertical;
}

.kesif-input:focus,
.kesif-textarea:focus {
    border-color: #0061AF;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 97, 175, 0.1);
}

.kesif-radio-pill {
    position: relative;
    display: inline-block;
}

.kesif-radio-pill input[type="radio"] {
    display: none;
}

.kesif-radio-pill label {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background-color: #f8fbff;
    border: 1px solid rgba(13, 42, 78, 0.05);
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 800;
    color: #0c54a0;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.kesif-radio-pill input[type="radio"]:checked+label {
    background-color: #e6f0fa;
    color: #0c54a0;
    border-color: #0c54a0;
}

.kesif-submit-btn {
    background-color: #0c54a0;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 1.2rem 4rem;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.kesif-submit-btn:hover {
    background-color: #0a407b;
    transform: translateY(-2px);
}

.kesif-hero-title {
    font-size: 2.5rem;
}

.kesif-sectoral-box {
    padding: 3rem 1.5rem !important;
    background-color: #f4f8fc !important;
    border-radius: 30px !important;
}

.kesif-sectoral-svg-container {
    display: none !important;
}

.kesif-card {
    padding: 1.5rem !important;
}

.kesif-card img {
    width: 150px !important;
    height: 150px !important;
}

.kesif-card .card-title {
    font-size: 1.1rem !important;
}

.kesif-card .card-desc {
    font-size: 0.85rem !important;
}

.kesif-checklist-box {
    padding: 2rem 1.5rem !important;
    border-top-right-radius: 40px !important;
}

/* =========================================
   YEDEK PARCA PAGE STYLES
   ========================================= */

.yp-hero-section {
    background-color: #ffffff;
}

.yp-hero-title {
    color: #0d2a4e;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.yp-hero-desc {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
}

.yp-section-title {
    color: #0d2a4e;
    font-size: 2.2rem;
    font-weight: 800;
}

.yp-section-subtitle {
    color: #6c757d;
    font-size: 1rem;
}

.yp-stats-card {
    background: #ffffff;
    border: 1px solid rgba(13, 42, 78, 0.05);
    border-radius: 30px;
    padding: 3rem 2rem;
    height: 100%;
}

.yp-stats-card.dark {
    background: #0d2a4e;
    color: #ffffff;
}

.yp-stats-val {
    color: #0c54a0;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.dark .yp-stats-val {
    color: #ffffff;
}

.yp-stats-title {
    color: #0d2a4e;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.dark .yp-stats-title {
    color: #ffffff;
}

.yp-stats-desc {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
}

.dark .yp-stats-desc {
    color: rgba(255, 255, 255, 0.7);
}

.yp-inventory-card {
    background: #ffffff;
    border: 1px solid rgba(13, 42, 78, 0.05);
    border-radius: 30px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.yp-ref {
    color: #0c54a0;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.yp-item-title {
    color: #0d2a4e;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0.8rem 0;
}

.yp-item-desc {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.yp-item-label {
    display: inline-block;
    background: #f4f8fc;
    color: #0c54a0;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
}

.yp-filter-card {
    border: 1px solid rgba(13, 42, 78, 0.05);
    border-radius: 30px;
    padding: 2rem;
    height: 100%;
}

.yp-filter-title {
    color: #0d2a4e;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.yp-filter-desc {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
}

.yp-form-box {
    background: #ffffff;
    border-radius: 40px;
    border: 1px solid rgba(13, 42, 78, 0.05);
    position: relative;
    overflow: hidden;
    /* Ensure image doesn't break rounded corners if it overflows slightly */
}

.yp-form-svg-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.yp-input {
    width: 100%;
    background: #f8fbff;
    border: 1px solid rgba(13, 42, 78, 0.05);
    border-radius: 50px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1.2rem;
    outline: none;
}

.yp-submit-btn {
    background: #0056b3;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 1.2rem 3rem;
    font-weight: 800;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .yp-hero-title {
        font-size: 2.5rem;
    }

    .yp-inventory-card {
        padding: 1.5rem 1rem !important;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .yp-inventory-card .row {
        margin: 0;
    }

    .yp-inventory-card .row>div {
        width: 100% !important;
        text-align: center;
        padding: 0;
    }

    .yp-inventory-card .col-7 {
        order: 1;
    }

    .yp-inventory-card .col-5 {
        order: 2;
        margin-top: 1rem;
    }

    .yp-inventory-card img {
        max-height: 100px !important;
        width: auto !important;
        margin: 0 auto;
    }

    .yp-item-title {
        font-size: 0.9rem !important;
        margin: 0.5rem 0 !important;
    }

    .yp-item-desc {
        font-size: 0.75rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .yp-item-label {
        font-size: 0.6rem !important;
        padding: 0.4rem 0.8rem !important;
    }

    .yp-filter-card {
        padding: 1rem !important;
        text-align: center;
    }

    .yp-filter-card img {
        width: 80px !important;
        height: 80px !important;
    }

    .yp-worker-col {
        display: none !important;
    }

    .yp-worker-img {
        display: none !important;
    }
}

.yp-worker-col {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.yp-worker-img {
    max-height: 550px;
    vertical-align: bottom;
    margin-bottom: -3rem;
    /* Overcome parent p-4/p-5 padding to touch bottom */
}

.yp-inventory-card img {
    height: 180px;
    width: 100%;
    object-fit: contain;
}

.yp-filter-card img {
    height: 100px;
    width: 100%;
    object-fit: contain;
}

/* Bakım Sayfası Styles */
.bakim-hero-section {
    padding: 100px 0 60px;
    background: #fff;
}

.bakim-tag {
    color: #00AEEF;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

.bakim-hero-title {
    color: #0D2A4E;
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.bakim-hero-desc {
    color: #6c757d;
    font-size: 18px;
    line-height: 1.6;
    max-width: 650px;
}

/* Advantages Section Refined */
.bakim-advantages-section {
    padding: 120px 0;
    background: #fff;
    position: relative;
    border-top: 1px solid #f0f4f8;
}

.bakim-advantages-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, #f8fafc 1.5px, transparent 1.5px);
    background-size: 20% 100%;
    z-index: 1;
    pointer-events: none;
}

.adv-flow-container {
    position: relative;
    padding: 60px 0;
    z-index: 2;
}

.adv-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
}

.adv-icon-box {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    border: 1px solid #0061AF44;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
}

.adv-icon-box.dashed {
    border-style: dashed;
    border-width: 1.5px;
    padding: 5px;
}

.adv-icon-box.dashed::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid #0061AF22;
    border-radius: 50%;
}

.adv-icon-box.dark {
    background: #002B5B;
    border-color: #002B5B;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 43, 91, 0.2);
}

.adv-tag-mini {
    font-size: 14px;
    font-weight: 800;
    color: #00AEEF;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
}

.adv-text h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0D2A4E;
    margin-bottom: 12px;
}

.adv-text p {
    font-size: 14px;
    color: #6c757d;
    max-width: 280px;
    margin: 0;
    line-height: 1.5;
}

/* Dotted Paths Refined */
.adv-path-1 {
    position: absolute;
    top: 182px;
    left: 32px;
    /* Center of MAX icon */
    width: 28%;
    height: 175px;
    /* Vertical distance to BOOST */
    border-left: 1.5px dashed #0061AF44;
    border-bottom: 1.5px dashed #0061AF44;
    border-radius: 0 0 0 60px;
    z-index: 1;
}

.adv-path-2 {
    position: absolute;
    top: 142px;
    /* Center of PURE icon */
    left: 35.5%;
    /* Center of BOOST icon column approx */
    width: 31%;
    height: 135px;
    /* Vertical distance up from BOOST */
    border-top: 1.5px dashed #0061AF44;
    border-left: 1.5px dashed #0061AF44;
    border-radius: 60px 0 0 0;
    z-index: 1;
}

/* Scope Section Refined */
.bakim-scope-section {
    padding: clamp(60px, 8vw, 120px) 0;
    background: #fff;
    overflow: hidden;
}

.scope-diagram-container {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
    height: 750px;
}

.scope-svg-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    max-width: 733px;
    z-index: 1;
}

.scope-item-ptr {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 15px;
}

.scope-item-ptr.p1 {
    top: 136px;
    /* 17.5px offset + 118.7px SVG Y */
    left: -15%;
    width: 35%;
}

.scope-item-ptr.p2 {
    top: 313px;
    /* 17.5px offset + 296px SVG Y */
    right: -25%;
    width: 38%;
    flex-direction: row-reverse;
    text-align: right;
}

.scope-item-ptr.p3 {
    top: 550px;
    /* 17.5px offset + 532.3px SVG Y */
    left: -15%;
    width: 35%;
}

@media (max-width: 1400px) {

    .scope-item-ptr.p1,
    .scope-item-ptr.p3 {
        left: -5%;
        width: 40%;
    }

    .scope-item-ptr.p2 {
        right: -10%;
        width: 45%;
    }
}

@media (max-width: 1200px) {
    .scope-item-ptr {
        width: 50% !important;
    }

    .scope-item-ptr.p1,
    .scope-item-ptr.p3 {
        left: 0;
    }

    .scope-item-ptr.p2 {
        right: 0;
    }
}

.scope-num {
    font-size: 22px;
    font-weight: 800;
    color: #004694;
    line-height: 1;
}

.scope-info h4 {
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 800;
    color: #0D2A4E;
    margin-bottom: 8px;
    line-height: 1.2;
}

.scope-info p {
    font-size: 13.5px;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
    max-width: 260px;
}

/* Why Mentis Circular Stat Refined */
.stat-circle-box {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
}

.circular-progress-wrap {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto;
}

.circular-progress-svg {
    transform: rotate(0deg);
    /* Adjust rotate as needed for paths */
}

.cp-outer-dash {
    fill: none;
    stroke: #00AEEF33;
    stroke-width: 1;
    stroke-dasharray: 4 4;
}

.cp-bar-segment {
    fill: none;
    stroke: #00AEEF;
    stroke-width: 8;
    stroke-linecap: round;
}

.side-dot-decorative {
    position: absolute;
    right: -20px;
    top: 50%;
    width: 10px;
    height: 10px;
    background: #00AEEF;
    border-radius: 50%;
    transform: translateY(-50%);
}

.cp-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.cp-val {
    font-size: 96px;
    font-weight: 800;
    color: #0D2A4E;
    line-height: 1;
    letter-spacing: -4px;
}

.cp-tag {
    font-size: 16px;
    font-weight: 800;
    color: #00AEEF;
    margin: 15px 0 10px;
    text-transform: uppercase;
}

.cp-desc {
    font-size: 14px;
    color: #6c757d;
    max-width: 220px;
    margin: 0 auto;
    line-height: 1.3;
    font-weight: 500;
}

.why-stat-item {
    text-align: left;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.why-stat-item h3 {
    font-size: 72px;
    font-weight: 800;
    color: #0D2A4E;
    margin-bottom: 5px;
    letter-spacing: -2px;
}

.why-stat-item h4 {
    font-size: 18px;
    font-weight: 800;
    color: #0061AF;
    margin-bottom: 8px;
    text-align: left;
}

.why-stat-item p {
    font-size: 13px;
    color: #6c757d;
    max-width: 220px;
    margin: 0;
    line-height: 1.4;
    text-align: left;
}

/* CTA Section */
.bakim-cta-box {
    background: #fff;
    border: 1px solid #0061AF33;
    border-radius: 150px;
    padding: 70px 100px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 97, 175, 0.05);
    margin: 100px 0;
}

.bakim-cta-box h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0D2A4E;
    margin-bottom: 40px;
}

.bakim-cta-link {
    background: #0061AF;
    color: #fff;
    padding: 18px 60px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.bakim-cta-link:hover {
    background: #0D2A4E;
    color: #fff;
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .bakim-hero-section {
        padding: 60px 0 40px;
        text-align: center;
    }

    .bakim-hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .bakim-hero-desc {
        margin: 0 auto;
        font-size: 16px;
    }

    .bakim-advantages-section {
        padding: 60px 0;
    }

    .adv-flow-container {
        padding: 20px 0;
    }

    .adv-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        margin-top: 0 !important;
        /* Reset zig-zag margin on mobile */
        margin-bottom: 40px;
    }

    .adv-text p {
        max-width: 100%;
    }

    .scope-diagram-container {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
    }

    .scope-svg-main {
        display: none;
    }

    .scope-item-ptr {
        position: static;
        width: 100% !important;
        border: none;
        padding: 20px 0;
        border-bottom: 1px solid #f0f4f8;
        text-align: left !important;
        flex-direction: row !important;
        gap: 15px;
    }

    .scope-item-ptr.p2 {
        flex-direction: row-reverse !important;
    }

    .scope-num {
        font-size: 18px;
        color: #00AEEF;
    }

    .why-stat-item {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .why-stat-item h3 {
        font-size: 48px;
    }

    .circular-progress-wrap {
        width: 220px;
        height: 220px;
    }

    .circular-progress-svg {
        width: 220px;
        height: 220px;
    }

    .circle-bg,
    .circle-progress,
    .cp-bg,
    .cp-bar {
        stroke-width: 4;
    }

    .cp-val {
        font-size: 56px;
    }

    .adv-path-1,
    .adv-path-2 {
        display: none;
    }

    .bakim-cta-box {
        border-radius: 40px;
        padding: 40px 20px;
        margin: 60px 0;
    }

    .bakim-cta-box h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .bakim-cta-link {
        width: 100%;
        padding: 15px 30px;
        font-size: 16px;
    }
}

/* Aksesuar Page Specific Styles */
.aksesuar-page-content {
    padding-top: 80px;
    padding-bottom: 100px;
    background: radial-gradient(circle at center, #FFFFFF 0%, #F4F8FF 100%);
}

.aks-hero-title {
    font-size: 64px;
    font-weight: 800;
    color: #0D2A4E;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.aks-hero-desc {
    font-size: 18px;
    color: #6c757d;
    max-width: 500px;
    line-height: 1.5;
    margin-bottom: 80px;
}

.aks-section-header {
    margin-bottom: 50px;
}

.aks-section-title {
    font-size: 32px;
    font-weight: 800;
    color: #0D2A4E;
    margin-bottom: 15px;
}

.aks-section-subtitle {
    font-size: 15px;
    color: #6c757d;
    max-width: 450px;
    line-height: 1.4;
}

.aks-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.aks-card {
    background: #fff;
    border: 1px solid #f0f4f8;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.aks-card:hover {
    box-shadow: 0 15px 40px rgba(0, 97, 175, 0.08);
    transform: translateY(-5px);
    border-color: #00AEEF33;
}

.aks-card-icon {
    width: 50px;
    height: 50px;
    border: 1px solid #00AEEF33;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #00AEEF;
}

.aks-card-title {
    font-size: 18px;
    font-weight: 800;
    color: #0D2A4E;
    margin-bottom: 12px;
    line-height: 1.3;
}

.aks-card-desc {
    font-size: 13.5px;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

/* Filtration & Sterilization Section */
.aks-filtration-wrapper {
    display: flex;
    align-items: stretch;
    margin-bottom: 80px;
    min-height: 600px;
    border-radius: 30px;
    overflow: hidden;
}

.aks-filtration-left {
    flex: 1.2;
    background: #F4F8FF;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aks-filtration-right {
    flex: 0.8;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.aks-filt-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.aks-filt-item h4 {
    font-size: 20px;
    font-weight: 800;
    color: #0D2A4E;
    margin-bottom: 12px;
}

.aks-filt-item p {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 0;
}

.aks-filt-item {
    padding: 24px;
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: default;
}

.aks-filt-item:hover {
    background: #002B5B;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 43, 91, 0.15);
}

.aks-filt-item:hover h4 {
    color: #fff;
}

.aks-filt-item:hover p {
    color: #fff;
    opacity: 0.7;
}

.aks-filt-item:hover div {
    background: #fff !important;
}

/* Storage Section Special Card */
.aks-card-icon-fill {
    width: 45px;
    height: 45px;
    border: 1px solid #00AEEF;
    border-radius: 50%;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00AEEF;
}

.aks-card:hover {
    background: #002B5B;
    border-color: #002B5B;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 43, 91, 0.2);
}

.aks-card:hover .aks-card-title {
    color: #fff;
}

.aks-card:hover .aks-card-desc {
    color: rgba(255, 255, 255, 0.7);
}

.aks-card:hover .aks-card-icon {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.aks-card:hover .aks-card-icon-fill {
    background: #fff !important;
    border-color: #fff !important;
    color: #002B5B;
}

.aks-card:hover .aks-tag-mini {
    color: #00AEEF;
}

.aks-tag-mini {
    font-size: 10px;
    font-weight: 800;
    color: #00AEEF;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: auto;
    padding-top: 20px;
}

/* Values Footer Grid */
.aks-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-top: 60px;
    border-top: 1px solid #f0f4f8;
}

.aks-val-item span {
    font-size: 10px;
    font-weight: 800;
    color: #00AEEF;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.aks-val-item h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0D2A4E;
    margin-bottom: 15px;
}

.aks-val-item p {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.5;
}

.aks-val-item p strong {
    color: #0061AF;
}

@media (max-width: 1200px) {

    .aks-card-grid,
    .aks-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .aks-hero-title {
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .aks-filtration-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .aks-filtration-left {
        padding: 40px 20px;
    }

    .aks-filtration-right {
        display: none;
    }
}

@media (max-width: 768px) {

    .aks-values-grid {
        grid-template-columns: 1fr;
    }

    .aks-card-grid,
    .aks-filt-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .aks-filt-item {
        padding: 15px;
    }

    .aks-filt-item h4 {
        font-size: 16px;
    }

    .aks-filt-item p {
        font-size: 13px;
    }

    .aks-hero-title {
        font-size: 36px;
    }
}

/* Applications (Uygulamalar) Page Specific Styles */
.uyg-page-content {
    background: radial-gradient(circle at center, #FFFFFF 0%, #F4F8FF 100%);
    padding-top: 60px;
    padding-bottom: 100px;
}

.uyg-main-title {
    font-size: 38px;
    font-weight: 800;
    color: #0D2A4E;
    margin-bottom: 50px;
    letter-spacing: -1px;
}

.uyg-sector-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 100px;
}

.uyg-sector-item {
    padding: 0 30px;
    border-left: 1px solid #0D2A4E;
}

.uyg-sector-item:first-child {
    border-left: 2px solid #00AEEF;
    /* First one has the blue highlight */
}

.uyg-sector-item h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0D2A4E;
    margin-bottom: 20px;
}

.uyg-sector-item p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
}

.uyg-tag-mini {
    font-size: 10px;
    font-weight: 800;
    color: #00AEEF;
    letter-spacing: 1px;
    display: block;
}

.uyg-featured-header {
    margin-bottom: 60px;
}

.uyg-featured-header .uyg-subtitle {
    font-size: 16px;
    color: #6c757d;
    margin-top: -30px;
}

.uyg-project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.uyg-project-card {
    padding: 50px;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 450px;
    position: relative;
    transition: transform 0.3s ease;
}

.uyg-project-card:hover {
    transform: translateY(-5px);
}

.uyg-project-card.light {
    background-color: #F4F8FF;
    color: #0D2A4E;
}

.uyg-project-card.dark {
    background-color: #032B5B;
    color: #fff;
}

.uyg-card-tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.light .uyg-card-tag {
    color: #00AEEF;
}

.dark .uyg-card-tag {
    color: #00AEEF;
}

.uyg-card-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.uyg-card-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.8;
}

.uyg-stat-box {
    margin-bottom: 20px;
}

.uyg-stat-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.uyg-stat-value {
    font-size: 54px;
    font-weight: 900;
    color: #00AEEF;
    line-height: 1;
}

.uyg-stat-sub {
    font-size: 12px;
    opacity: 0.7;
}

.uyg-card-link {
    align-self: flex-end;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 991px) {
    .uyg-sector-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .uyg-sector-item {
        border-bottom: 1px solid #f0f4f8;
        padding-bottom: 20px;
    }

    .uyg-project-grid {
        grid-template-columns: 1fr;
    }

    .uyg-project-card {
        padding: 30px;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .uyg-main-title {
        font-size: 28px;
    }

    .uyg-sector-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .uyg-sector-item {
        padding: 0 0 0 15px;
    }
}

/* Sozluk (Glossary) Page Specific Styles */
.sozluk-page-content {
    padding-top: 80px;
    padding-bottom: 100px;
    background: radial-gradient(circle at center, #FFFFFF 0%, #F4F8FF 100%);
}

.soz-hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #0D2A4E;
    margin-bottom: 50px;
    letter-spacing: -1.5px;
}

.soz-alphabet-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    border-bottom: 1px solid #f0f4f8;
    padding-bottom: 20px;
}

.soz-alpha-link {
    font-size: 14px;
    font-weight: 800;
    color: #0D2A4E;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 5px;
}

.soz-alpha-link:hover {
    color: #00AEEF;
}

.soz-blue-line-header {
    width: 40px;
    height: 4px;
    background: #00AEEF;
    margin-bottom: 80px;
}

.soz-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

/* Vertical grid lines using borders */
.soz-item {
    padding: 40px;
    border-left: 1px solid #f0f4f8;
    position: relative;
    transition: all 0.3s ease;
}

.soz-item:first-child {
    border-left: none;
}

.soz-item-letter {
    font-size: 120px;
    font-weight: 900;
    color: #f4f8ff;
    position: absolute;
    top: -20px;
    left: 40px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

.soz-item-content {
    position: relative;
    z-index: 1;
}

.soz-item-title {
    font-size: 28px;
    font-weight: 800;
    color: #0D2A4E;
    margin-bottom: 25px;
}

.soz-item-subtitle {
    font-size: 15px;
    font-weight: 700;
    color: #6c757d;
    margin-bottom: 20px;
    display: block;
}

.soz-item-desc {
    font-size: 13.5px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 30px;
}

.soz-item-line {
    width: 30px;
    height: 2px;
    background: #00AEEF;
}

@media (max-width: 1200px) {
    .soz-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .soz-item {
        border-bottom: 1px solid #f0f4f8;
    }

    .soz-item:nth-child(odd) {
        border-left: none;
    }
}

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

    .soz-item {
        border-left: none;
        padding: 30px 20px;
    }

    .soz-hero-title {
        font-size: 36px;
    }
}