/* =============================================
   DÜZGÜNLER OTOMATİV - MAIN STYLESHEET
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --dz-red: #d42027;
    --dz-dark: #1a1a1a;
    --font: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font);
    margin: 0;
    padding: 0;
    background: #000;
    color: var(--dz-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* =============================================
   HEADER
   ============================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 40px;
    transition: all 0.4s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.logo-img {
    height: 52px;
    width: auto;
    transition: all 0.4s ease;
}

.site-header.scrolled .logo-img {
    height: 42px;
}

.header-actions {
    gap: 15px !important;
}

.nav-menu-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    padding: 10px 5px;
    transition: color 0.4s;
}

.site-header.scrolled .nav-menu-btn {
    color: var(--dz-dark);
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 24px;
}

.hamburger-icon span {
    display: block;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

.site-header.scrolled .hamburger-icon span {
    background: var(--dz-dark);
}

.hamburger-icon span:first-child {
    width: 16px;
    align-self: flex-start;
}

.hamburger-icon span:last-child {
    width: 16px;
    align-self: flex-end;
}

.nav-menu-btn:hover .hamburger-icon span:first-child {
    width: 24px;
}

.nav-menu-btn:hover .hamburger-icon span:last-child {
    width: 24px;
}

/* ---- Inline Navigation ---- */

.header-inline-nav {
    display: flex;
}

.site-header.nav-overflow .header-inline-nav,
.site-header.nav-overflow .contact-pill,
.site-header.nav-overflow .lang-switcher {
    display: none !important;
}

.site-header.nav-overflow .nav-menu-btn {
    display: flex !important;
}

.inline-nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.site-header.scrolled .inline-nav-link {
    color: var(--dz-dark);
}

.inline-nav-link:hover {
    color: #fff;
}

.site-header.scrolled .inline-nav-link:hover {
    color: var(--dz-red);
}

/* Dropdown Menus */
.nav-dropdown {
    position: relative;
    padding: 15px 0;
    /* Creates an invisible hover bridge */
}

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 100;
}

.dropdown-menu-custom::before {
    content: '';
    position: absolute;
    bottom: calc(100% - 6px);
    left: 30px;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.98);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    transform: rotate(45deg);
    z-index: 1;
}

.nav-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-custom a {
    display: block;
    color: #4a4a4a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s;
}

.dropdown-menu-custom a:hover {
    color: var(--dz-red);
    background: rgba(0, 0, 0, 0.03);
    padding-left: 25px;
    /* Slight indent on hover */
}

.nav-pill {

    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 10px 22px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: background 0.3s;
}

.nav-pill:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

/* Contact Pill Special Styles */
.contact-pill {
    position: relative;
    background: transparent;
    padding: 0 10px 0 28px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 18px;
    isolation: isolate;
    transition: border-color 0.4s;
}

.site-header.scrolled .contact-pill {
    border-color: rgba(0, 0, 0, 0.1);
}

.contact-pill .hover-bg {
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%) scale(1);
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-pill:hover .hover-bg {
    transform: translateY(-50%) scale(10);
    /* Massively scale up the circle */
}

.contact-pill .pill-text {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled .pill-text {
    color: var(--dz-dark);
}

.contact-pill:hover .pill-text {
    color: var(--dz-red);
}

.contact-pill .pill-icon {
    position: relative;
    z-index: 2;
    color: var(--dz-red);
    font-size: 17px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icon-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 17px;
    cursor: pointer;
    padding: 10px 12px;
    opacity: 0.8;
}

.lang-switcher {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 5px;
    transition: color 0.4s;
}

.site-header.scrolled .lang-switcher {
    color: var(--dz-dark);
}

.lang-flag {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    z-index: 1;
}

/* Slides */
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(circle at 5% 5%, rgba(255, 255, 255, 0.35) 0%, transparent 50%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Align content to the bottom of the hero container */
    padding-bottom: 260px;
    /* Pushed up sufficiently to sit safely above the bottom-left next slider controls */
}

.hero-tagline {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
}

.hero-heading-group {
    display: none;
}

.hero-heading-group.active {
    display: block;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-heading {
    font-size: clamp(32px, 4vw, 54px);
    color: #fff;
    line-height: 1.2;
    max-width: 900px;
    letter-spacing: -0.5px;
}

.hero-heading em {
    font-style: normal;
    font-weight: 800;
    display: block;
}

.hero-heading-light {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    display: block;
    margin-top: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-action-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-btn-danger,
.hero-btn-outline {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 14px 28px !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-btn-danger {
    background-color: var(--dz-red) !important;
}

.hero-btn-danger:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 20px rgba(212, 32, 39, 0.3) !important;
}

.hero-btn-outline {
    border-width: 2px !important;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.05) !important;
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 1) !important;
    color: #000 !important;
    transform: translateY(-3px) !important;
}

/* ---- Slider Controls (Bottom Left) ---- */

.hero-next {
    position: absolute;
    bottom: 50px;
    left: 50px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-next-top {
    display: flex;
    align-items: center;
    gap: 25px;
}

.hero-next-label {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
}

.hero-next-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: #fff;
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.hero-next-btn:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.dot::before {
    content: '';
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: all 0.3s;
}

.dot.active::before {
    background: #fff;
    transform: scale(1.2);
}

.dot.active::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: conic-gradient(#fff var(--progress, 0%), transparent 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: dotProgress 8s linear forwards;
}

@keyframes dotProgress {
    0% {
        --progress: 0%;
    }

    100% {
        --progress: 100%;
    }
}

@property --progress {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 0%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 991px) {
    .site-header {
        padding: 22px 12px !important;
    }

    .site-header.scrolled {
        padding: 14px 12px !important;
    }

    .site-header .container-fluid {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .logo-img {
        height: 38px !important;
    }

    .site-header.scrolled .logo-img {
        height: 32px !important;
    }

    .hero-content {
        padding: 0 25px 135px 25px;
    }

    .hero-action-buttons {
        gap: 14px;
    }

    .hero-btn-danger,
    .hero-btn-outline {
        padding: 10px 16px !important;
        font-size: 13px !important;
        letter-spacing: 0px !important;
        gap: 6px;
    }

    .hero-next {
        left: 25px;
        bottom: 35px;
    }

    .hero-next-label {
        display: none !important;
        /* Hide 'SIRADAKİNİ GÖR' text on mobile */
    }

    .hero-next-btn {
        width: 18px;
        height: 18px;
        font-size: 8px;
    }

    .dot {
        width: 18px;
        height: 18px;
        border-width: 1.5px;
    }

    .dot::before {
        width: 3px;
        height: 3px;
    }

    .hero-heading {
        font-size: clamp(25px, 6.5vw, 36px);
        line-height: 1.25;
    }

    .hero-heading-light {
        font-size: clamp(24px, 6vw, 32px);
        margin-top: 8px;
    }

    .nav-pill,
    .nav-icon-btn,
    .lang-switcher {
        display: none !important;
    }
}

/* =============================================
   ABOUT SECTION
   ============================================= */

.about-reference {
    position: relative;
    background-color: #ffffff;
    color: var(--dz-dark);
    padding: 50px 0;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.1);
}

.min-vh-75 {
    min-height: 75vh;
}

.ref-content {
    max-width: 650px;
}

.ref-subtitle {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.ref-title {
    font-size: clamp(38px, 4.8vw, 62px);
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -2px;
    color: var(--dz-red);
    /* Both lines are now Düzgünler Red! */
}

.ref-title-bold {
    font-weight: 800;
    display: inline-block;
}

.ref-title-thin {
    font-weight: 500;
    /* Increased to medium weight for perfect optical balance kanka! */
}

.ref-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 50px;
    font-weight: 400;
}

.ref-btn {
    position: relative;
    background: transparent;
    padding: 0 10px 0 28px;
    height: 54px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 50px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    isolation: isolate;
    text-decoration: none;
    transition: border-color 0.4s;
}

.ref-btn:hover {
    border-color: var(--dz-red);
}

.ref-btn .hover-bg {
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%) scale(1);
    width: 40px;
    height: 40px;
    background: var(--dz-red);
    border-radius: 50%;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ref-btn:hover .hover-bg {
    transform: translateY(-50%) scale(10);
}

.ref-btn .btn-text {
    position: relative;
    z-index: 2;
    color: var(--dz-dark);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ref-btn:hover .btn-text {
    color: #fff;
}

.ref-btn .btn-icon {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 15px;
    width: 40px;
    height: 40px;
    background: var(--dz-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ref-btn:hover .btn-icon {
    background: #fff;
    color: var(--dz-red);
}

/* Natural Uncropped Split Screen Wallpaper Image */
.ref-image-wrap {
    width: 100%;
}

.ref-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ref-image-wrap img:hover {
    transform: translateY(-8px);
}

@media (max-width: 991px) {
    .ref-content {
        margin-bottom: 0px;
        position: relative;
        z-index: 2;
    }

    .about-reference .col-lg-6.mt-5.mt-lg-0 {
        margin-top: 0 !important;
        position: static;
    }

    .ref-image-wrap {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        z-index: 1 !important;
        opacity: 0.12 !important;
        /* Clean premium watermark background kanka */
        pointer-events: none;
        transform: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .ref-image-wrap img {
        width: 70% !important;
        height: auto !important;
        object-fit: contain !important;
        border-radius: 24px !important;
        transform: none !important;
    }
}

/* =============================================
   WHATSAPP BUTTON
   ============================================= */

.whatsapp-btn {
    position: fixed;
    bottom: 90px;
    right: 40px;
    z-index: 1000;
    width: 65px;
    height: 65px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.whatsapp-pulse {
    position: absolute;
    inset: 0;
    background: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: wpPulse 2s infinite;
}

@keyframes wpPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

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

@media (max-width: 767px) {
    .whatsapp-btn {
        bottom: 75px;
        right: 25px;
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
}

/* =============================================
   OFF-CANVAS MENU SIDEBAR
   ============================================= */

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    visibility: hidden;
    display: flex;
    justify-content: flex-end;
}

.menu-overlay.active {
    visibility: visible;
}

.menu-overlay-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-overlay.active .menu-overlay-bg {
    opacity: 1;
}

.menu-panel {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background: #f4f5f7;
    border-radius: 40px 0 0 40px;
    display: flex;
    flex-direction: column;
    padding: 50px;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.menu-overlay.active .menu-panel {
    transform: translateX(0);
}

.menu-header {
    width: 100%;
}

.menu-logo-img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.menu-close-btn {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #1a1a1a;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-close-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.menu-close-btn:hover {
    border-color: var(--dz-red);
    color: var(--dz-red);
}

.menu-close-btn:hover i {
    transform: rotate(90deg);
}

.menu-body {
    position: relative;
    flex-grow: 1;
    overflow: hidden;
    width: 100%;
}

.menu-slider {
    display: flex;
    width: 300%;
    /* 3 slides: Main, Kurumsal, Urunler */
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.menu-slide {
    width: 33.333%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 20px;
}

.menu-slider.show-kurumsal {
    transform: translateX(-33.333%);
}

.menu-slider.show-urunler {
    transform: translateX(-66.666%);
}

.submenu-back-btn {
    background: transparent;
    border: none;
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    transition: color 0.3s, transform 0.3s;
    padding: 0;
    width: fit-content;
}

.submenu-back-btn:hover {
    color: var(--dz-red);
    transform: translateX(-3px);
}

.submenu-title {
    font-size: 11px;
    font-weight: 800;
    color: #b5b5b5;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.menu-link {
    font-size: 22px;
    font-weight: 500;
    color: #4a4a4a;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.menu-link:hover {
    color: #1a1a1a;
    transform: translateX(10px);
}

.submenu-nav {
    gap: 18px !important;
}

.menu-submenu-link {
    font-size: 20px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.menu-submenu-link:hover {
    color: var(--dz-red);
    transform: translateX(8px);
}

.menu-brand-intro {
    margin-top: 25px;
    margin-bottom: 25px;
    padding-right: 10px;
}

.menu-brand-intro p {
    font-size: 13.5px;
    color: #777;
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
}

.menu-utilities {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.utility-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--dz-red);
    color: #fff !important;
    text-decoration: none;
    padding: 13px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid var(--dz-red);
    width: 100%;
}

.utility-btn:hover {
    background: #e02424;
    border-color: #e02424;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(224, 36, 36, 0.15);
}

.utility-btn.outline {
    background: transparent;
    color: #1a1a1a !important;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.utility-btn.outline:hover {
    background: rgba(0, 0, 0, 0.03);
    border-color: #1a1a1a;
    box-shadow: none;
}

.menu-language-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.menu-language-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 46px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #1a1a1a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.8px;
    background: rgba(255, 255, 255, 0.45);
    transition: all 0.25s ease;
}

.menu-language-item:hover,
.menu-language-item.active {
    border-color: var(--dz-red);
    color: var(--dz-red);
    background: rgba(212, 32, 39, 0.06);
}

.menu-contact-info {
    margin-top: 40px;
}

.menu-contact-info h5 {
    font-size: 11px;
    font-weight: 800;
    color: #999;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.menu-contact-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-contact-info p i {
    color: var(--dz-red);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.menu-footer {
    margin-top: auto;
    padding-top: 40px;
}

.menu-legal {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.menu-legal a {
    font-size: 14px;
    font-weight: 600;
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.menu-legal a:hover {
    color: #1a1a1a;
}

.menu-social {
    display: flex;
    gap: 15px;
}

.menu-social a {
    color: #a0a0a0;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s;
}

.menu-social a:hover {
    color: #1a1a1a;
}

@media (max-width: 576px) {
    .menu-panel {
        max-width: calc(100% - 20px);
        width: calc(100% - 20px);
        height: 100dvh;
        max-height: 100dvh;
        border-radius: 24px 0 0 24px;
        padding: 22px 20px;
        overflow: hidden;
    }

    .menu-header {
        margin-bottom: 14px;
    }

    .menu-logo-img {
        height: 30px;
    }

    .menu-close-btn {
        width: 38px;
        height: 38px;
    }

    .menu-body {
        flex: 0 0 auto;
        overflow: hidden;
    }

    .menu-slider,
    .menu-slide {
        height: auto;
        min-height: 0;
    }

    .menu-slide {
        padding-top: 8px;
        padding-left: 4px;
        padding-right: 8px;
    }

    .menu-nav {
        gap: 13px;
    }

    .menu-link {
        font-size: 21px;
        line-height: 1.15;
    }

    .submenu-title {
        margin-bottom: 18px;
    }

    .submenu-back-btn {
        margin-bottom: 16px;
    }

    .menu-submenu-link {
        font-size: 18px;
    }

    .menu-utilities {
        margin-top: 14px;
        gap: 8px;
    }

    .menu-language-item {
        height: 40px;
        font-size: 12px;
    }

    .menu-contact-info {
        margin-top: 18px;
        padding-top: 16px;
    }

    .menu-contact-info h5 {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .menu-contact-info p {
        font-size: 12px;
        line-height: 1.35;
        margin-bottom: 7px;
        gap: 8px;
    }

    .menu-contact-info p i {
        font-size: 13px;
        width: 16px;
    }

    .menu-footer {
        margin-top: 0;
        padding-top: 12px;
    }

    .menu-social {
        gap: 11px;
    }

    .menu-social a {
        font-size: 16px;
    }

    .menu-link {
        font-size: 21px;
        line-height: 1.15;
    }
}

/* =============================================
   DISTRIBUTORS SECTION
   ============================================= */

.distributors-section {
    position: relative;
    background-color: #ffffff;
    padding: 120px 0;
    z-index: 2;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

@media (min-width: 992px) {

    .about-reference .container-fluid,
    .distributors-section .container-fluid,
    .capability-section .container-fluid {
        padding-left: 55px !important;
        padding-right: 55px !important;
    }
}

.dist-tag-vertical {
    border-left: 3px solid var(--dz-red);
    /* Solid red accent line */
    padding-left: 14px;
    margin-bottom: 20px;
    line-height: 1.1;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.dist-tag-vertical span {
    font-size: 11px;
    /* Uniform clean layout sizing */
    font-weight: 800;
    color: var(--dz-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.dist-tag-vertical:hover {
    padding-left: 20px;
    /* Micro-interactive hover push */
}

.dist-title {
    font-size: clamp(35px, 4vw, 50px);
    font-weight: 800;
    color: var(--dz-dark);
    line-height: 1.2;
    letter-spacing: -1.5px;
}

.dist-lead {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    max-width: 550px;
    margin-left: auto;
}

/* =============================================
   BENTO GRID SYSTEM
   ============================================= */

.bento-grid {
    margin-top: 30px;
}

.bento-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 28px;
    padding: 45px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
}

/* Individual Brand Glows & Borders on Hover */
.bento-mf:hover {
    border-color: rgba(212, 32, 39, 0.18);
    background: linear-gradient(135deg, #ffffff, #fffcfc);
}

.bento-ptx:hover {
    border-color: rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #ffffff, #fafafa);
}

.bento-kverneland:hover {
    border-color: rgba(0, 51, 153, 0.12);
    background: linear-gradient(135deg, #ffffff, #fbfcfe);
}

.bento-kayhan:hover {
    border-color: rgba(0, 122, 62, 0.12);
    background: linear-gradient(135deg, #ffffff, #fbfefc);
}

.bento-logo-wrap {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.bento-item:hover .bento-logo-wrap {
    transform: scale(1.05);
}

.brand-img {
    max-width: 90%;
    max-height: 55px;
    object-fit: contain;
    filter: none;
    opacity: 1;
}

.brand-name {
    font-size: 13px;
    font-weight: 800;
    color: var(--dz-dark);
    text-align: center;
    letter-spacing: 2px;
    margin-top: 10px;
    display: block;
    text-transform: uppercase;
}

.bento-content-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bento-text {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

.bento-md {
    min-height: 240px;
}

@media (max-width: 991px) {
    .distributors-section {
        padding: 80px 0;
    }

    .dist-lead {
        margin-left: 0;
        margin-top: 20px;
        text-align: left;
    }

    .bento-item {
        padding: 30px;
        min-height: auto !important;
    }

    .bento-logo-wrap {
        height: 60px;
    }

    .brand-img {
        max-height: 45px;
    }
}

/* =============================================
   PRODUCTS SECTION
   ============================================= */

.products-section {
    position: relative;
    background-color: #f6f7f9;
    padding: 120px 0;
    z-index: 2;
}

@media (min-width: 992px) {
    .products-section .container-fluid {
        padding-left: 55px !important;
        padding-right: 55px !important;
    }
}

.prod-tag-vertical {
    border-left: 3px solid var(--dz-red);
    /* Solid red accent line */
    padding-left: 14px;
    margin-bottom: 20px;
    line-height: 1.1;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.prod-tag-vertical span {
    font-size: 11px;
    /* Uniform clean layout sizing */
    font-weight: 800;
    color: var(--dz-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.prod-tag-vertical:hover {
    padding-left: 20px;
    /* Micro-interactive hover push */
}

.prod-title {
    font-size: clamp(35px, 4vw, 50px);
    font-weight: 800;
    color: var(--dz-dark);
    line-height: 1.2;
    letter-spacing: -1.5px;
}

.prod-lead {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    max-width: 550px;
    margin-left: auto;
}

/* =============================================
   MINIMALIST EXUNAY PRODUCT STYLE
   ============================================= */

.products-section {
    background-color: #f6f7f9;
    padding: 120px 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(0, 0, 0, 0.02);
}

.minimal-prod-card {
    background-color: #eef1f4;
    border-radius: 12px;
    padding: 45px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    height: 460px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    position: relative;
    overflow: hidden;
}

.minimal-prod-card:hover {
    transform: translateY(-8px);
    background-color: #ffffff;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.min-card-top {
    margin-bottom: 15px;
}

.min-brand {
    font-size: 22px;
    font-weight: 800;
    color: #4a5568;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.min-sub {
    font-size: 11px;
    color: #9ab0c3;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.min-card-img {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 20px 0;
    background-color: transparent;
}

.min-card-img img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.minimal-prod-card:hover .min-card-img img {
    transform: scale(1.06);
}

.min-card-bottom {
    width: 100%;
}

.min-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: #8fa0ad;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.minimal-prod-card:hover .min-link {
    color: var(--dz-dark);
}

.min-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 10px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.minimal-prod-card:hover .min-arrow {
    background-color: var(--dz-red);
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .products-section {
        padding: 80px 0;
    }

    .minimal-prod-card {
        height: 420px;
        padding: 30px 20px;
        margin-bottom: 10px;
    }

    .min-brand {
        font-size: 18px;
    }
}

/* =============================================
   AWWWARDS HORIZONTAL EXPANDING LIST
   ============================================= */
.capability-section {
    position: relative;
    z-index: 2;
    background-color: #f6f7f9;
    /* Light minimalist Awwwards grey */
    padding: 120px 0;
    border-top: 1px solid rgba(9, 9, 11, 0.05);
    border-bottom: 1px solid rgba(9, 9, 11, 0.05);
}

/* Awwwards Asymmetric Bento Grid Card Styles */
.aww-bento-card {
    padding: 45px 35px;
    border-radius: 28px;
    height: 100%;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

/* Light Bento Theme */
.aww-bento-card.light-bento {
    background-color: #ffffff;
    border: 1px solid rgba(24, 24, 27, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.aww-bento-card.light-bento:hover {
    background: radial-gradient(circle at 10% 10%, rgba(212, 32, 39, 0.01) 0%, #ffffff 100%);
    box-shadow: 0 30px 60px rgba(212, 32, 39, 0.03), inset 0 0 0 1.5px rgba(212, 32, 39, 0.25);
    transform: translateY(-8px);
    border-color: rgba(212, 32, 39, 0.35) !important;
}

/* Dark Bento Theme - Extremely premium contrast! */
.aww-bento-card.dark-bento {
    background-color: #18181b;
    border: 1px solid rgba(255, 255, 255, 0.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.aww-bento-card.dark-bento:hover {
    background: radial-gradient(circle at 10% 10%, #27272a 0%, #18181b 100%);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), inset 0 0 0 1.5px rgba(212, 32, 39, 0.45);
    transform: translateY(-8px);
    border-color: rgba(212, 32, 39, 0.55) !important;
}

/* Watermark Ring for Light Bento */
.aww-bento-card.light-bento::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border: 1px dashed rgba(212, 32, 39, 0.06);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(0.8) rotate(0deg);
}

.aww-bento-card.light-bento:hover::before {
    transform: scale(1.2) rotate(45deg);
    border-color: rgba(212, 32, 39, 0.15);
}

/* Watermark Ring for Dark Bento */
.aww-bento-card.dark-bento::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border: 1px dashed rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(0.8) rotate(0deg);
}

.aww-bento-card.dark-bento:hover::before {
    transform: scale(1.2) rotate(45deg);
    border-color: rgba(212, 32, 39, 0.3);
}

/* Premium Pill Tag Styling for Bento Card Numbers */
.aww-bento-card .aww-stat-num {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 100px;
    background-color: rgba(24, 24, 27, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 9px;
    letter-spacing: 1.5px;
}

.aww-bento-card.dark-bento .aww-stat-num {
    background-color: rgba(255, 255, 255, 0.05);
    color: #a1a1aa;
}

.aww-bento-card:hover .aww-stat-num {
    background-color: var(--dz-red) !important;
    color: #ffffff !important;
    letter-spacing: 2px;
}

.aww-bento-card:hover .stat-icon {
    color: var(--dz-red) !important;
    transform: rotate(15deg) scale(1.2);
}

.aww-bento-card.dark-bento:hover .stat-icon {
    color: var(--dz-red) !important;
}

.aww-stat-num {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #a1a1aa;
    font-family: 'Outfit', sans-serif;
}

.stat-huge {
    font-size: 52px;
    font-weight: 900;
    color: #18181b;
    line-height: 1;
    letter-spacing: -2px;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 12px;
    transition: color 0.3s ease, transform 0.4s ease;
}

.aww-bento-card.light-bento:hover .stat-huge {
    color: var(--dz-red);
    transform: scale(1.02);
}

.aww-bento-card.dark-bento:hover .stat-huge {
    transform: scale(1.02);
}

.stat-name {
    font-size: 15px;
    font-weight: 700;
    color: #18181b;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.aww-bento-card.light-bento:hover .stat-name {
    color: var(--dz-red);
}

.stat-desc {
    font-size: 13.5px;
    line-height: 1.6;
    font-weight: 450;
    transition: color 0.4s ease;
}

/* Light Card Legibility */
.aww-bento-card.light-bento .stat-desc {
    color: #4b5563 !important;
    /* Rich Slate Grey for clean reading */
}

.aww-bento-card.light-bento:hover .stat-desc {
    color: #1f2937 !important;
    /* Even darker on hover */
}

/* Dark Card Legibility */
.aww-bento-card.dark-bento .stat-desc {
    color: #cbd5e1 !important;
    /* Clear Soft Silver Grey */
}

.aww-bento-card.dark-bento:hover .stat-desc {
    color: #f8fafc !important;
    /* Almost white on hover */
}

@media (max-width: 767px) {
    .aww-bento-card {
        padding: 35px 25px;
        min-height: 270px;
    }

    .stat-huge {
        font-size: 42px;
    }
}

.map-section-tag-vertical {
    border-left: 3px solid var(--dz-red);
    /* Solid bold red accent line */
    padding-left: 14px;
    margin-bottom: 20px;
    line-height: 1.1;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.map-section-tag-vertical span {
    font-size: 11px;
    font-weight: 800;
    color: var(--dz-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.map-section-tag-vertical:hover {
    padding-left: 20px;
    /* Micro-interactive hover push */
}

.map-section-title {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a !important;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.map-section-lead {
    font-size: 16px;
    color: #475569 !important;
    line-height: 1.7;
    margin-bottom: 40px;
}

.aww-expanding-list {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
}

.aww-list-row {
    border-top: 1px solid rgba(9, 9, 11, 0.08);
    padding: 35px 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.aww-list-row:last-child {
    border-bottom: 1px solid rgba(9, 9, 11, 0.08);
}

.aww-row-header {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.aww-row-num {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #a1a1aa;
    font-family: 'Outfit', sans-serif;
}

.aww-row-title {
    font-size: 26px;
    font-weight: 800;
    color: #18181b;
    letter-spacing: -0.5px;
    margin: 0;
    transition: color 0.3s ease;
}

.aww-icon-trigger {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(9, 9, 11, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #18181b;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

.aww-row-expanded-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Active Hover / Interaction States */
.aww-list-row:hover,
.aww-list-row.active {
    background-color: rgba(9, 9, 11, 0.02);
}

.aww-list-row.active .aww-row-title {
    color: var(--dz-red);
}

.aww-list-row.active .aww-icon-trigger {
    transform: rotate(45deg);
    background: var(--dz-red);
    border-color: var(--dz-red);
    color: #ffffff;
}

.aww-list-row.active .aww-row-expanded-content {
    max-height: 500px;
    opacity: 1;
    padding-top: 30px;
}

/* Inside Content Styling */
.aww-stats-highlight {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(9, 9, 11, 0.04);
}

.stat-big {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: #18181b;
    letter-spacing: -1.5px;
    font-family: 'Outfit', sans-serif;
    line-height: 1.1;
    margin-bottom: 6px;
}

.aww-branch-quick-list {
    padding: 0 10px;
}

.branch-quick-item {
    font-size: 14.5px;
    color: #52525b;
}

.branch-quick-item strong {
    color: #18181b;
}

.branch-quick-item a {
    color: var(--dz-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.branch-quick-item a:hover {
    color: var(--dz-dark);
}

.aww-minimal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #18181b;
    text-decoration: none;
    border-bottom: 2px solid #18181b;
    padding-bottom: 4px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.aww-minimal-btn:hover {
    color: var(--dz-red);
    border-color: var(--dz-red);
}

.emergency-text {
    color: var(--dz-red);
    border-color: var(--dz-red);
}

.emergency-text:hover {
    color: #18181b;
    border-color: #18181b;
}

.whatsapp-text {
    color: #128c7e;
    border-color: #128c7e;
}

.whatsapp-text:hover {
    color: #075e54;
    border-color: #075e54;
}

@media (max-width: 991px) {
    .aww-row-title {
        font-size: 20px;
    }

    .stat-big {
        font-size: 34px;
    }
}

/* =============================================
   BOTTOM HERO WALLPAPER SHOWCASE
   ============================================= */
.dz-bottom-wallpaper-section {
    position: relative;
    width: 100%;
    padding: 120px 0;
    background-color: #ffffff;
    z-index: 2;
}

.dz-bottom-wallpaper-section .container-fluid {
    padding-left: 24px !important;
    padding-right: 24px !important;
}

.wp-banner-card {
    position: relative;
    width: 100%;
    min-height: 650px;
    height: auto;
    border-radius: 24px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 80px;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
    .wp-banner-card {
        min-height: auto !important;
        height: auto !important;
        background-size: 100% 240px !important;
        background-repeat: no-repeat !important;
        background-position: top center !important;
        background-color: #111111 !important;
        padding: 280px 20px 40px 20px !important;
        position: relative;
    }

    .wp-banner-card::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        border-radius: 28px;
    }

    .wp-cinematic-overlay {
        display: none !important;
    }
}

.wp-cinematic-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Floating Glassmorphic Text Capsule */
.wp-glass-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.03);
    /* Transparent - NO background color tint kanka! */
    backdrop-filter: blur(24px) saturate(120%);
    -webkit-backdrop-filter: blur(24px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    /* Clean glowing border */
    border-radius: 32px;
    padding: 50px 55px;
    max-width: 720px;
    text-align: left;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    animation: cardFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium Headline Intro Prefix */
.wp-title-intro {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--dz-red);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.wp-direct-title {
    font-size: clamp(30px, 4.50vw, 47px);
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -2px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.wp-direct-title .wp-title-bold {
    font-weight: 800;
    display: inline-block;
}

.wp-direct-title .wp-title-thin {
    font-weight: 300;
    opacity: 0.9;
}

/* Premium Borderless Action Button */
/* Premium Pill Action Button (Inspired by Header Contact Pill) */
.wp-direct-btn {
    position: relative;
    background: var(--dz-red);
    /* Solid Düzgünler Red by default for maximum visibility! */
    padding: 0 10px 0 32px;
    height: 60px;
    border: 1px solid var(--dz-red);
    /* Solid red border kanka! */
    border-radius: 50px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    isolation: isolate;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wp-direct-btn .btn-hover-bg {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%) scale(1);
    width: 44px;
    height: 44px;
    background: #ffffff;
    /* White circle expansion! */
    border-radius: 50%;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.wp-direct-btn:hover {
    border-color: #ffffff;
}

.wp-direct-btn:hover .btn-hover-bg {
    transform: translateY(-50%) scale(25);
    /* Massively scale up to cover 100% of this wide button! */
}

.wp-direct-btn .btn-text {
    position: relative;
    z-index: 2;
    color: #ffffff;
    /* Crisp high-contrast white text by default! */
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
    transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.wp-direct-btn:hover .btn-text {
    color: var(--dz-red);
    /* Transitions to red inside the white bubble! */
}

.wp-direct-btn .btn-arrow {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #ffffff;
    /* Solid white background by default! */
    color: var(--dz-red);
    /* Red phone icon by default! */
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.wp-direct-btn:hover .btn-arrow {
    background: var(--dz-red);
    /* Arrow circle turns red on hover! */
    color: #ffffff;
    /* Phone icon turns white! */
    transform: rotate(-45deg);
}

.wp-direct-btn .btn-arrow i {
    font-size: 14px;
}

/* ==========================================================================
   BLOG & NEWS SECTION (PREMIUM EDITORIAL STYLE)
   ========================================================================== */
.blog-section {
    position: relative;
    width: 100%;
    padding: 120px 0;
    background-color: #f6f7f9;
    /* Soft gray background to alternate! */
    z-index: 2;
}

@media (min-width: 992px) {
    .blog-section .container-fluid {
        padding-left: 55px !important;
        padding-right: 55px !important;
    }
}

/* Vertical Tag */
.blog-tag-vertical {
    border-left: 3px solid var(--dz-red);
    padding-left: 14px;
    margin-bottom: 20px;
    line-height: 1.1;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-tag-vertical span {
    font-size: 11px;
    font-weight: 800;
    color: var(--dz-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.blog-tag-vertical:hover {
    padding-left: 20px;
}

/* Title & Lead */
.blog-title {
    font-size: clamp(38px, 4.8vw, 62px);
    line-height: 1.1;
    margin-bottom: 0;
    letter-spacing: -2px;
}

.blog-title-bold {
    font-weight: 800;
    color: var(--dz-red);
    display: inline-block;
}

.blog-title-thin {
    font-weight: 500;
    color: var(--dz-dark);
}

.blog-lead {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    max-width: 520px;
    font-weight: 400;
    margin-bottom: 0;
    margin-left: auto;
    text-align: right;
}

/* Blog Section (Premium Asymmetric Editorial Layout kanka!) */
.blog-section {
    background: #f6f7f9;
    padding: 100px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-tag-vertical {
    border-left: 3px solid var(--dz-red);
    padding-left: 15px;
    margin-bottom: 20px;
}

.blog-tag-vertical span {
    color: var(--dz-red);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 3px;
    display: inline-block;
}

.blog-featured-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    height: 460px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.blog-featured-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.07);
    border-color: rgba(212, 32, 39, 0.15);
}

.featured-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

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

.blog-date-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.blog-card-category {
    font-size: 10px;
    font-weight: 800;
    color: var(--dz-red);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.featured-title {
    font-size: clamp(20px, 2.2vw, 24px);
    font-weight: 700;
    color: var(--dz-dark);
    line-height: 1.35;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    transition: color 0.4s ease;
}

.blog-featured-card:hover .featured-title {
    color: var(--dz-red);
}

.featured-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.65;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    color: var(--dz-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    transition: color 0.4s ease;
}

.blog-card-btn i {
    font-size: 12px;
    transition: transform 0.4s ease;
}

.blog-card-btn:hover {
    color: var(--dz-red);
}

.blog-card-btn:hover i {
    transform: translateX(5px);
}

.blog-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 2px solid rgba(20, 20, 20, 0.16);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.55);
    color: var(--dz-dark);
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.blog-all-btn:hover {
    background: var(--dz-dark);
    border-color: var(--dz-dark);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.blog-all-btn i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.blog-all-btn:hover i {
    transform: translateX(4px);
}

/* Stacked Side Cards */
.blog-stacked-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    height: 218px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 16px;
}

.blog-stacked-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(212, 32, 39, 0.15);
}

.stacked-img-wrap {
    width: 180px;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    flex-shrink: 0;
}

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

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

.stacked-content {
    padding: 0 0 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    flex-grow: 1;
}

.stacked-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.stacked-date {
    font-size: 10px;
    font-weight: 600;
    color: #777;
}

.stacked-title {
    font-size: clamp(15px, 1.8vw, 17px);
    font-weight: 700;
    color: var(--dz-dark);
    line-height: 1.4;
    margin-bottom: 12px;
    transition: color 0.4s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-stacked-card:hover .stacked-title {
    color: var(--dz-red);
}

.blog-card-btn.mini {
    font-size: 10px;
    letter-spacing: 1px;
    margin-top: 0;
}

@media (max-width: 991px) {
    .wp-banner-card {
        min-height: auto !important;
        height: auto !important;
        padding: 60px 45px !important;
    }

    .wp-glass-card {
        padding: 40px 45px;
        border-radius: 28px;
    }

    .blog-section {
        padding: 80px 0 !important;
    }

    .blog-title {
        margin-bottom: 20px !important;
    }

    .blog-lead {
        font-size: 15px !important;
        text-align: left !important;
        margin-bottom: 10px !important;
    }
}

@media (max-width: 575px) {
    .wp-banner-card {
        min-height: auto !important;
        height: auto !important;
        background-size: 100% 200px !important;
        background-repeat: no-repeat !important;
        background-position: top center !important;
        background-color: #111111 !important;
        padding: 240px 16px 30px 16px !important;
        border-radius: 28px;
        position: relative;
    }

    .wp-banner-card::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        border-radius: 28px;
    }

    .wp-cinematic-overlay {
        display: none !important;
    }

    .wp-glass-card {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .wp-title-intro {
        font-size: 10px !important;
        letter-spacing: 2px !important;
        margin-bottom: 6px !important;
    }

    .wp-direct-title {
        font-size: 24px !important;
        line-height: 1.2 !important;
        letter-spacing: -1px !important;
        margin-bottom: 15px !important;
    }

    .wp-direct-btn {
        height: 52px !important;
        padding: 0 6px 0 24px !important;
        gap: 12px !important;
    }

    .wp-direct-btn .btn-hover-bg {
        width: 38px !important;
        height: 38px !important;
        right: 6px !important;
    }

    .wp-direct-btn .btn-text {
        font-size: 11px !important;
        letter-spacing: 1px !important;
    }

    .wp-direct-btn .btn-arrow {
        width: 38px !important;
        height: 38px !important;
    }

    .wp-direct-btn .btn-arrow i {
        font-size: 10px !important;
    }

    .blog-section {
        padding: 60px 0 !important;
    }

    .blog-featured-card {
        height: auto !important;
    }

    .featured-img-wrap {
        height: 240px !important;
    }

    .featured-content {
        padding: 30px 20px !important;
    }

    .blog-stacked-card {
        height: auto !important;
        padding: 16px !important;
    }

    .blog-stacked-card .d-flex {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .stacked-img-wrap {
        width: 100% !important;
        height: 180px !important;
        margin-bottom: 16px !important;
    }

    .stacked-content {
        padding: 0 !important;
    }

    .map-section-tag-vertical,
    .dist-tag-vertical,
    .prod-tag-vertical,
    .blog-tag-vertical {
        border-left-width: 2px !important;
        padding-left: 10px !important;
        margin-bottom: 15px !important;
    }

    .map-section-tag-vertical span,
    .dist-tag-vertical span,
    .prod-tag-vertical span,
    .blog-tag-vertical span {
        font-size: 9px !important;
        letter-spacing: 2px !important;
    }
}

/* ==========================================================================
   PREMIUM CONVERTED SITE FOOTER
   ========================================================================== */
.site-footer {
    background: #f9f9f9;
    color: #1c1c1c;
    border-top: 1px solid #e5e5ea;
}

.footer-cta-banner {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footer-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 43, 135, 0.93) 0%, rgba(26, 43, 135, 0.78) 50%, rgba(26, 43, 135, 0.93) 100%);
    z-index: 1;
}

.footer-cta-depth {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.footer-cta-title {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -1px;
}

.text-blue-light {
    color: #93c5fd;
}

.footer-cta-desc {
    font-size: clamp(15px, 1.8vw, 17px);
    opacity: 0.85;
    max-width: 650px;
    line-height: 1.6;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 42px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none !important;
    transition: all 0.30s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-cta-btn:hover {
    background: #ffffff;
    color: var(--dz-red) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px);
}

.footer-logo-img {
    height: 46px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s ease;
}

.footer-slogan-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    max-width: 100%;
}

.footer-divider {
    height: 1px;
    background: #e5e5ea;
    width: 100%;
}

.footer-contact-link {
    text-decoration: none !important;
    color: #1c1c1c;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-contact-link:hover {
    color: var(--dz-red);
}

.contact-icon {
    color: #8e8e93;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.contact-text {
    font-size: 15px;
    color: #3a3a3c;
    line-height: 1.5;
}

.social-title {
    font-size: 12px;
    font-weight: 800;
    color: #8e8e93;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e5e5ea;
    color: #555;
    text-decoration: none !important;
    transition: all 0.30s ease;
    font-size: 14px;
}

.footer-social-btn:hover {
    background: var(--dz-red);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid #e5e5ea;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none !important;
    color: #1c1c1c;
    font-weight: 700;
    transition: all 0.30s ease;
}

.footer-map-btn:hover {
    border-color: var(--dz-red);
    color: var(--dz-red);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.map-icon-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(212, 32, 39, 0.1);
    color: var(--dz-red);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.30s ease;
}

.footer-map-btn:hover .map-icon-dot {
    background: var(--dz-red);
    color: #ffffff;
}

.footer-menu-title {
    font-size: 16px;
    font-weight: 700;
    color: #1c1c1c;
}

.footer-menu-list li {
    margin-bottom: 12px;
}

.footer-menu-list a {
    font-size: 14.5px;
    color: #666;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu-list a:hover {
    color: var(--dz-red);
    transform: translateX(4px);
}

.text-muted-text {
    color: #8e8e93;
    font-size: 13.5px;
}

.relative-footer-bottom {
    position: relative;
}

.scroll-top-btn {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    background: #ffffff;
    border: 1px solid #e5e5ea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1c1c1c;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.30s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
}

.scroll-top-btn:hover {
    background: var(--dz-red);
    color: #ffffff;
    transform: translate(-50%, -60%);
    box-shadow: 0 10px 25px rgba(212, 32, 39, 0.2);
}

.bottom-link {
    text-decoration: none !important;
    color: #8e8e93;
    transition: color 0.3s ease;
}

.bottom-link:hover {
    color: var(--dz-red);
}

@media (max-width: 991px) {
    .footer-cta-banner {
        height: 340px;
    }
}

@media (max-width: 767px) {
    .footer-cta-banner {
        height: 300px;
    }

    .scroll-top-btn {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin: 10px auto;
    }

    .scroll-top-btn:hover {
        transform: translateY(-4px);
    }
}

.footer-agency-logo {
    height: 45px;
    width: auto;
    opacity: 0.5;
    transition: all 0.3s ease;
    mix-blend-mode: multiply;
}

.footer-agency-logo:hover {
    opacity: 0.9;
}

.footer-map-backdrop img {
    -webkit-mask-image: radial-gradient(closest-side, black 40%, transparent 100%);
    mask-image: radial-gradient(closest-side, black 40%, transparent 100%);
}

.bottom-brand-link {
    display: inline-flex;
    align-items: center;
}

.footer-middle {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
    margin-top: 1.5rem;
}

/* =============================================
   MOBILE RESPONSIVE BLOG CAROUSEL
   ============================================= */
@media (max-width: 767px) {
    .blog-slider-nav {
        display: flex !important;
        justify-content: flex-start !important;
        margin-top: 15px !important;
        margin-bottom: 25px !important;
    }

    .blog-section .row.g-4 {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -ms-overflow-style: none !important;
        scrollbar-width: none !important;
        gap: 0 !important;
        margin-left: -15px !important;
        margin-right: -15px !important;
        padding-bottom: 24px !important;
    }

    .blog-section .row.g-4::-webkit-scrollbar {
        display: none !important;
    }

    .blog-section .col-lg-7 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        scroll-snap-align: center !important;
        padding: 0 15px !important;
    }

    .blog-section .col-lg-5 {
        flex: 0 0 200% !important;
        max-width: 200% !important;
        width: 200% !important;
        display: flex !important;
        flex-direction: row !important;
        padding: 0 !important;
    }

    .blog-section .col-lg-5>.d-flex {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        gap: 0 !important;
    }

    .blog-section .col-lg-5>.d-flex .blog-stacked-card {
        flex: 0 0 50% !important;
        width: 50% !important;
        max-width: 50% !important;
        scroll-snap-align: center !important;
        padding: 0 15px !important;
    }

    .blog-featured-card,
    .blog-stacked-card {
        height: 100% !important;
        min-height: 480px !important;
        display: flex !important;
        flex-direction: column !important;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04) !important;
    }

    .blog-featured-card .row.g-0 {
        flex-direction: column !important;
        height: 100% !important;
    }

    .blog-featured-card .col-md-6 {
        height: auto !important;
    }

    .featured-img-wrap {
        height: 200px !important;
    }

    .featured-content {
        padding: 24px 20px !important;
        display: flex !important;
        flex-direction: column !important;
        flex-grow: 1 !important;
        justify-content: space-between !important;
    }

    .blog-stacked-card .d-flex {
        flex-direction: column !important;
        align-items: flex-start !important;
        height: 100% !important;
    }

    .stacked-img-wrap {
        width: 100% !important;
        height: 200px !important;
        margin-bottom: 16px !important;
        flex-shrink: 0 !important;
    }

    .stacked-content {
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        flex-grow: 1 !important;
        justify-content: space-between !important;
    }
}

/* =============================================
   PREMIUM MOCKUP PRODUCTS STYLE
   ============================================= */
.products-section {
    padding: 80px 0 !important;
    background-color: #ffffff !important;
}

.products-container-premium {
    background-color: #f5f5f7 !important;
    border-radius: 36px !important;
    padding: 80px 60px !important;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.premium-brand-title {
    font-size: clamp(32px, 3.5vw, 44px) !important;
    font-weight: 700 !important;
    color: #333333 !important;
    line-height: 1.15 !important;
    margin-bottom: 20px !important;
    letter-spacing: -1px !important;
}

.premium-brand-desc {
    font-size: 14px !important;
    color: #7d7e80 !important;
    line-height: 1.7 !important;
    margin-bottom: 30px !important;
}

.premium-btn-incele {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1.5px solid #c2b6a6 !important;
    border-radius: 30px !important;
    padding: 10px 24px !important;
    color: #6b6359 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.premium-btn-incele:hover {
    background-color: #6b6359 !important;
    color: #ffffff !important;
    border-color: #6b6359 !important;
    transform: translateY(-2px);
}

.premium-section-title {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #8d8e90 !important;
    margin: 0 !important;
}

.premium-nav-btn {
    width: 40px !important;
    height: 40px !important;
    border: 1.5px solid #dcdce0 !important;
    background: transparent !important;
    color: #8d8e90 !important;
    transition: all 0.3s ease !important;
    cursor: pointer;
}

.premium-nav-btn:hover {
    background-color: #6b6359 !important;
    color: #ffffff !important;
    border-color: #6b6359 !important;
}

.premium-prod-card {
    background: #ffffff !important;
    border-radius: 24px !important;
    position: relative !important;
    overflow: hidden !important;
    color: inherit !important;
    text-decoration: none !important;
    height: 380px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015) !important;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    border: 1px solid rgba(0, 0, 0, 0.02) !important;
}

.blog-title-link {
    color: inherit !important;
    text-decoration: none !important;
}

.premium-prod-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08) !important;
}

.premium-prod-img-wrap {
    width: 90% !important;
    height: 250px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 25px !important;
}

.premium-prod-img {
    max-width: 96% !important;
    max-height: 96% !important;
    object-fit: contain !important;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.06));
}

.premium-prod-card:hover .premium-prod-img {
    transform: scale(1.08) rotate(-1deg) !important;
}

.premium-prod-overlay {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 30%, rgba(0, 0, 0, 0.65) 100%) !important;
    padding: 24px 20px !important;
    display: flex !important;
    align-items: flex-end !important;
    height: 45% !important;
    pointer-events: none !important;
    transition: all 0.3s ease !important;
}

.premium-prod-card:hover .premium-prod-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 20%, rgba(0, 0, 0, 0.75) 100%) !important;
}

.premium-prod-title {
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    margin: 0 !important;
    text-align: left !important;
    letter-spacing: -0.2px !important;
}

@media (max-width: 991px) {
    .products-container-premium {
        padding: 50px 30px !important;
    }

    .premium-brand-title {
        text-align: left !important;
    }

    .premium-prod-card {
        height: 350px !important;
    }
}

/* =============================================
   LANGUAGE SWITCHER HOVER DROPDOWN (GLASSMORPHIC REDESIGN)
   ============================================= */
.lang-switcher {
    position: relative !important;
    padding: 6px 14px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
}

.lang-switcher:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
}

.site-header.scrolled .lang-switcher {
    color: var(--dz-dark) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    background: rgba(0, 0, 0, 0.02) !important;
}

.site-header.scrolled .lang-switcher:hover {
    background: rgba(0, 0, 0, 0.05) !important;
    border-color: rgba(0, 0, 0, 0.15) !important;
}

.lang-dropdown-menu {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    right: 0 !important;
    background: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01), 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    min-width: 100px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(12px) scale(0.96) !important;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    transform-origin: top right !important;
    z-index: 1000 !important;
    padding: 8px 0 !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

/* Elegant Indicator Arrow */
.lang-dropdown-menu::before {
    content: '' !important;
    position: absolute !important;
    top: -6px !important;
    right: 22px !important;
    width: 12px !important;
    height: 12px !important;
    background: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    transform: rotate(45deg) !important;
    border-left: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
    z-index: -1 !important;
}

.lang-switcher:hover .lang-dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
}

.lang-dropdown-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px 16px !important;
    color: #333333 !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    transition: all 0.25s ease !important;
    border-radius: 8px !important;
    margin: 2px 6px !important;
}

.lang-dropdown-item:hover {
    background-color: rgba(212, 32, 39, 0.06) !important;
    color: var(--dz-red) !important;
}

.lang-dropdown-item.active {
    background-color: rgba(212, 32, 39, 0.04) !important;
    color: var(--dz-red) !important;
}

.lang-dropdown-item .active-check {
    font-size: 10px !important;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.lang-dropdown-item.active .active-check {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.lang-flag-sm {
    width: 18px !important;
    height: 13px !important;
    object-fit: cover !important;
    border-radius: 2px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

/* =============================================
   PREMIUM BILINGUAL ABOUT PAGE STYLE
   ============================================= */
.about-page-main {
    background-color: #ffffff !important;
    color: #333333 !important;
    padding-top: 130px !important;
}

/* Breadcrumbs tag above sidebar */
.top-breadcrumb-tag {
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
}

/* Sidebar sub-navigation */
.sticky-sidebar-menu {
    position: relative !important;
    background: #f8f9fa !important;
    border-radius: 24px !important;
    padding: 24px !important;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    z-index: 10 !important;
    max-width: 450px !important;
}

.sidebar-menu-item {
    display: flex !important;
    align-items: center !important;
    padding: 6px 20px !important;
    border-radius: 12px !important;
    color: #888888 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
}

.sidebar-menu-item:hover {
    color: var(--dz-red) !important;
    background: rgba(212, 32, 39, 0.04) !important;
}

.sidebar-menu-item.active {
    color: var(--dz-red) !important;
}

/* Fluid Horizontal wrap tab navigation on Mobile screen sizes */
@media (max-width: 991px) {
    .sticky-sidebar-menu {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        max-width: 100% !important;
        padding: 10px 16px !important;
        border-radius: 16px !important;
        background: #ffffff !important;
        border: 1px solid rgba(0, 0, 0, 0.05) !important;
        gap: 8px !important;
        margin-bottom: 20px !important;
    }

    .sticky-sidebar-menu::-webkit-scrollbar {
        display: none !important;
    }

    .sidebar-menu-item {
        padding: 8px 16px !important;
        font-size: 13px !important;
        border-radius: 10px !important;
        display: inline-flex !important;
    }
}

/* Premium Visual Banner */
.premium-about-banner {
    position: relative !important;
    min-height: 500px !important;
    border-radius: 36px !important;
    overflow: hidden !important;
    background-position: right 34% !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    padding: 60px !important;
    width: 100% !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06) !important;
}

.banner-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0.45) 100%) !important;
    backdrop-filter: blur(0.5px) !important;
    -webkit-backdrop-filter: blur(0.5px) !important;
    z-index: 1 !important;
}

.banner-inner-title {
    position: relative !important;
    z-index: 2 !important;
}

.banner-inner-title h2 {
    font-size: 42px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 0 0 10px 0 !important;
    letter-spacing: -1px !important;
}

.banner-breadcrumbs {
    display: flex !important;
    align-items: center !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

.banner-breadcrumbs span {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Overlapping dynamic content card with centered bottom blueprint background */
.about-premium-content-card {
    position: relative !important;
    z-index: 10 !important;
    background-color: #ffffff !important;
    background-image: url('img/kurumsal-arkaplan.png') !important;
    background-position: center bottom -40px !important;
    background-repeat: no-repeat !important;
    background-size: 100% auto !important;
    border-radius: 36px !important;
    padding: 60px 80px 260px 80px !important;
    /* Massive bottom padding so drawing sits majestic and uncropped below all text */
    width: 100% !important;
    margin-top: 40px !important;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(0, 0, 0, 0.02) !important;
    overflow: hidden !important;
}

@media (max-width: 768px) {
    .about-premium-content-card {
        padding: 45px 25px 130px 25px !important;
        background-position: center bottom -15px !important;
    }
}

/* Ensure card children stack above the watermark */
.about-premium-content-card>* {
    position: relative !important;
    z-index: 2 !important;
}

/* Viewport Breakout to touch absolute right edge of the monitor */
@media (min-width: 992px) {
    .premium-about-banner {
        width: calc(100% + 3rem) !important;
        margin-right: -3rem !important;
        border-radius: 36px 0 0 36px !important;
    }

    .about-premium-content-card {
        width: calc(100% + 3rem) !important;
        margin-right: -3rem !important;
        border-radius: 36px 0 0 36px !important;
    }
}

.overlapping-logo {
    height: 42px !important;
    object-fit: contain !important;
    margin-bottom: 30px !important;
}

.overlapping-title {
    font-size: 38px !important;
    font-weight: 800 !important;
    color: #222222 !important;
    margin-bottom: 15px !important;
    letter-spacing: -1px !important;
}

.overlapping-subtitle {
    font-size: 15px !important;
    color: #888888 !important;
    margin: 0 !important;
    line-height: 1.6 !important;
}

.overlapping-body-content p {
    font-size: 16px !important;
    color: #444444 !important;
    line-height: 1.8 !important;
    margin-bottom: 20px !important;
}

/* Tab panes fade & slide transition */
.about-tab-pane {
    display: none !important;
    opacity: 0 !important;
    transform: translateY(15px) !important;
    transition: all 0.4s ease !important;
}

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

@media (max-width: 991px) {
    .premium-about-banner {
        padding: 30px !important;
        min-height: 230px !important;
        border-radius: 24px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
        /* Texts sit at the very bottom! */
        background-position: 60% center !important;
        /* Centered but shifted to show more of the right side! */
    }

    .banner-breadcrumbs {
        justify-content: flex-start !important;
    }

    .about-premium-content-card {
        width: 100% !important;
        margin-top: 25px !important;
        /* Starts from its normal flow position without negative overlap! */
        padding: 40px 25px !important;
        border-radius: 24px !important;
    }

    .overlapping-title {
        font-size: 26px !important;
    }
}

/* History Story Section */
.ref-tag-vertical {
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 2px !important;
    color: var(--dz-red) !important;
}

.premium-story-title {
    font-size: clamp(28px, 3.5vw, 42px) !important;
    font-weight: 300 !important;
    color: #333333 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.5px !important;
}

.premium-story-title strong {
    font-weight: 800 !important;
}

.premium-story-desc {
    font-size: 15px !important;
    color: #666666 !important;
    line-height: 1.8 !important;
}

.story-stat-card {
    background-color: #f8f9fa !important;
    border-radius: 16px !important;
    padding: 24px !important;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    transition: all 0.3s ease !important;
}

.story-stat-card:hover {
    background-color: #ffffff !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05) !important;
    border-color: rgba(0, 0, 0, 0.05) !important;
}

.story-stat-card h3 {
    font-size: 32px !important;
    font-weight: 800 !important;
    color: var(--dz-red) !important;
    margin-bottom: 5px !important;
}

.story-stat-card p {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #666666 !important;
    margin: 0 !important;
}

/* Story Image Graphic Card */
.about-image-card {
    position: relative !important;
    padding: 20px !important;
}

.about-image-badge {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    background: #ffffff !important;
    border-radius: 30px !important;
    padding: 10px 20px !important;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06) !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #333333 !important;
    z-index: 10 !important;
    border: 1px solid rgba(0, 0, 0, 0.02) !important;
}

.about-image-badge i {
    color: var(--dz-red) !important;
}

.about-image-glow {
    position: absolute !important;
    inset: -10px !important;
    background: radial-gradient(circle, rgba(212, 32, 39, 0.04) 0%, transparent 70%) !important;
    z-index: 1 !important;
    pointer-events: none;
}

.about-image-wrap {
    border-radius: 30px !important;
    overflow: hidden !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    position: relative !important;
    z-index: 2 !important;
}

.about-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.8s ease !important;
}

.about-image-wrap:hover .about-img {
    transform: scale(1.04) !important;
}

/* Bento Cards */
.bento-tag {
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 2px !important;
    color: var(--dz-red) !important;
}

.bento-main-title {
    font-size: 36px !important;
    font-weight: 800 !important;
    color: #333333 !important;
    letter-spacing: -1px !important;
}

.about-bento-card {
    background: #ffffff !important;
    border-radius: 24px !important;
    padding: 40px !important;
    height: 100% !important;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.about-bento-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 4px !important;
    height: 0 !important;
    background: var(--dz-red) !important;
    transition: height 0.4s ease !important;
}

.about-bento-card:hover::before {
    height: 100% !important;
}

.about-bento-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04) !important;
    border-color: rgba(0, 0, 0, 0.05) !important;
}

.about-bento-card.highlighted {
    background: linear-gradient(135deg, #1e1e24 0%, #111115 100%) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.03) !important;
}

.about-bento-card.highlighted::before {
    background: var(--dz-red) !important;
}

.about-bento-card.highlighted h3 {
    color: #ffffff !important;
}

.about-bento-card.highlighted p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.bento-card-icon {
    width: 60px !important;
    height: 60px !important;
    background: #f8f9fa !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
    color: var(--dz-red) !important;
    margin-bottom: 30px !important;
    transition: all 0.3s ease !important;
}

.about-bento-card.highlighted .bento-card-icon {
    background: rgba(255, 255, 255, 0.06) !important;
    color: var(--dz-red) !important;
}

.about-bento-card:hover .bento-card-icon {
    background: var(--dz-red) !important;
    color: #ffffff !important;
}

.about-bento-card h3 {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #333333 !important;
    margin-bottom: 15px !important;
}

.about-bento-card p {
    font-size: 14px !important;
    color: #666666 !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}

/* Timeline Style */
.timeline-main-title {
    font-size: clamp(28px, 3.5vw, 42px) !important;
    font-weight: 800 !important;
    color: #333333 !important;
    letter-spacing: -1px !important;
}

.timeline-flow {
    position: relative !important;
}

.timeline-milestone-card {
    background: #ffffff !important;
    padding: 30px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    position: relative !important;
    height: 100% !important;
    transition: all 0.3s ease !important;
}

.timeline-milestone-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04) !important;
}

.milestone-year {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: rgba(0, 0, 0, 0.15) !important;
    margin-bottom: 20px !important;
    transition: color 0.3s ease !important;
}

.timeline-milestone-card.active .milestone-year,
.timeline-milestone-card:hover .milestone-year {
    color: var(--dz-red) !important;
}

.milestone-line {
    width: 100% !important;
    height: 3px !important;
    background: #e9ecef !important;
    margin-bottom: 20px !important;
    position: relative !important;
    transition: background 0.3s ease !important;
}

.milestone-line::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    background: #ced4da !important;
    transition: all 0.3s ease !important;
}

.timeline-milestone-card.active .milestone-line::before,
.timeline-milestone-card:hover .milestone-line::before {
    background: var(--dz-red) !important;
    transform: translateY(-50%) scale(1.3) !important;
}

.timeline-milestone-card.active .milestone-line,
.timeline-milestone-card:hover .milestone-line {
    background: var(--dz-red) !important;
}

.timeline-milestone-card h4 {
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #333333 !important;
    margin-bottom: 10px !important;
}

.timeline-milestone-card p {
    font-size: 13px !important;
    color: #666666 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.history-story-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
    gap: 28px;
    align-items: stretch;
    background: #f6f7f9;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    overflow: hidden;
}

.history-story-copy {
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.history-kicker {
    display: inline-flex;
    width: fit-content;
    color: var(--dz-red);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.7px;
    margin-bottom: 14px;
}

.history-story-copy h4 {
    color: #111827;
    font-size: clamp(24px, 2.6vw, 34px);
    font-weight: 850;
    line-height: 1.16;
    margin-bottom: 16px;
}

.history-story-copy p {
    color: #4b5563;
    font-size: 14.5px;
    line-height: 1.75;
    margin: 0;
}

.history-story-media {
    position: relative;
    min-height: 270px;
    overflow: hidden;
    background: #111827;
}

.history-story-media img {
    width: 100%;
    height: 100%;
    min-height: 270px;
    object-fit: cover;
    display: block;
}

.history-media-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.history-media-badge strong {
    color: var(--dz-red);
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

.history-media-badge span {
    color: #111827;
    font-size: 10.5px;
    font-weight: 800;
    line-height: 1.25;
    max-width: 78px;
    margin-top: 6px;
    text-transform: uppercase;
}

.history-rail {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.history-rail::before {
    content: '';
    position: absolute;
    left: 155px;
    top: 14px;
    bottom: 14px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(212, 32, 39, 0.12), rgba(212, 32, 39, 0.9), rgba(212, 32, 39, 0.12));
}

.history-rail-item {
    position: relative;
    display: grid;
    grid-template-columns: 120px 70px minmax(0, 1fr);
    gap: 0;
    align-items: center;
    padding: 12px 0;
}

.history-rail-year {
    color: #111827;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.5px;
    text-align: right;
    padding-right: 22px;
}

.history-rail-node {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.history-rail-node span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    border: 5px solid #d1d5db;
    box-shadow: 0 0 0 8px #ffffff;
    transition: all 0.25s ease;
}

.history-rail-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 24px 26px;
    transition: all 0.25s ease;
}

.history-rail-card::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 50%;
    width: 18px;
    height: 18px;
    background: #ffffff;
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transform: translateY(-50%) rotate(45deg);
}

.history-rail-meta {
    color: var(--dz-red);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.history-rail-card h4 {
    color: #111827;
    font-size: 19px;
    font-weight: 850;
    margin-bottom: 9px;
}

.history-rail-card p {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.history-rail-item:hover .history-rail-card,
.history-rail-item.active .history-rail-card {
    border-color: rgba(212, 32, 39, 0.2);
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.07);
    transform: translateX(6px);
}

.history-rail-item:hover .history-rail-node span,
.history-rail-item.active .history-rail-node span {
    border-color: var(--dz-red);
    box-shadow: 0 0 0 8px rgba(212, 32, 39, 0.08);
}

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

    .history-story-copy {
        padding: 26px;
    }

    .history-rail::before {
        left: 20px;
    }

    .history-rail-item {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 14px;
        align-items: flex-start;
    }

    .history-rail-year {
        grid-column: 2;
        text-align: left;
        padding-right: 0;
        font-size: 22px;
        margin-bottom: -4px;
    }

    .history-rail-node {
        grid-column: 1;
        grid-row: 1 / span 2;
        padding-top: 6px;
    }

    .history-rail-card {
        grid-column: 2;
        padding: 20px;
    }

    .history-rail-card::before {
        display: none;
    }

    .history-rail-item:hover .history-rail-card,
    .history-rail-item.active .history-rail-card {
        transform: none;
    }
}

@media (max-width: 575px) {
    .history-story-copy {
        padding: 22px;
    }

    .history-story-media,
    .history-story-media img {
        min-height: 210px;
    }

    .history-media-badge {
        width: 104px;
        height: 104px;
    }

    .history-media-badge strong {
        font-size: 26px;
    }

    .history-rail-card h4 {
        font-size: 17px;
    }
}

.history-intro-row {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
    gap: 32px;
    align-items: end;
    padding: 8px 0 30px;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.history-eyebrow {
    display: inline-block;
    color: var(--dz-red);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.8px;
    margin-bottom: 12px;
}

.history-intro-row h4 {
    color: #111827;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 850;
    line-height: 1.12;
    margin: 0;
}

.history-intro-row p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
}

.history-clean-timeline {
    position: relative;
    margin-top: 14px;
}

.history-clean-timeline::before {
    content: '';
    position: absolute;
    left: 188px;
    top: 28px;
    bottom: 28px;
    width: 1px;
    background: rgba(17, 24, 39, 0.14);
}

.history-clean-item {
    position: relative;
    display: grid;
    grid-template-columns: 150px 76px minmax(0, 1fr);
    align-items: start;
    padding: 30px 0;
}

.history-clean-year {
    color: #111827;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -0.8px;
    line-height: 1;
    padding-top: 4px;
}

.history-clean-marker {
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.history-clean-marker span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.16);
    color: #6b7280;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.history-clean-content {
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.history-clean-item:last-child .history-clean-content {
    border-bottom: 0;
}

.history-clean-content h4 {
    color: #111827;
    font-size: 22px;
    font-weight: 850;
    margin: 0 0 10px;
}

.history-clean-content p {
    color: #4b5563;
    font-size: 14.5px;
    line-height: 1.75;
    max-width: 760px;
    margin: 0;
}

.history-clean-item.is-current .history-clean-year,
.history-clean-item:hover .history-clean-year {
    color: var(--dz-red);
}

.history-clean-item.is-current .history-clean-marker span,
.history-clean-item:hover .history-clean-marker span {
    background: var(--dz-red);
    border-color: var(--dz-red);
    color: #ffffff;
}

@media (max-width: 991px) {
    .history-intro-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .history-clean-timeline::before {
        left: 20px;
    }

    .history-clean-item {
        grid-template-columns: 52px minmax(0, 1fr);
        padding: 24px 0;
    }

    .history-clean-year {
        grid-column: 2;
        font-size: 26px;
        margin-bottom: 10px;
    }

    .history-clean-marker {
        grid-column: 1;
        grid-row: 1 / span 2;
        justify-content: flex-start;
    }

    .history-clean-marker span {
        width: 40px;
        height: 40px;
    }

    .history-clean-content {
        grid-column: 2;
    }
}

@media (max-width: 575px) {
    .history-intro-row {
        padding-bottom: 22px;
    }

    .history-clean-content h4 {
        font-size: 19px;
    }

    .history-clean-content p {
        font-size: 14px;
    }
}

.history-route-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
    gap: 30px;
    align-items: end;
    margin-bottom: 34px;
}

.history-route-kicker {
    display: inline-block;
    color: var(--dz-red);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.8px;
    margin-bottom: 12px;
}

.history-route-intro h4 {
    color: #111827;
    font-size: clamp(27px, 3.2vw, 42px);
    font-weight: 850;
    line-height: 1.12;
    margin: 0;
}

.history-route-intro p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
}

.history-roadmap {
    position: relative;
    min-height: 520px;
    padding: 34px 18px 28px;
    border-radius: 18px;

    background-size: 42px 42px;
    overflow: hidden;
}

.history-roadmap-path {
    position: absolute;
    inset: 46px 22px 42px;
    width: calc(100% - 44px);
    height: calc(100% - 88px);
    pointer-events: none;
}

.history-road-shadow,
.history-road-line {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.history-road-shadow {
    stroke: #d42027;
    stroke-width: 20;
}

.history-road-line {
    stroke-width: 12;
    stroke-dasharray: 26 18;
}

.history-road-stop {
    position: absolute;
    width: min(285px, 31%);
    z-index: 2;
}

.history-road-stop-1 {
    left: 4%;
    bottom: 38px;
}

.history-road-stop-2 {
    left: 25%;
    top: 30px;
}

.history-road-stop-3 {
    left: 47%;
    bottom: 46px;
}

.history-road-stop-4 {
    right: 4%;
    top: 72px;
}

.history-road-pin {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dz-red);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px rgba(212, 32, 39, 0.12), 0 14px 26px rgba(212, 32, 39, 0.22);
    margin-bottom: 12px;
}

.history-road-pin span {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.8px;
}

.history-road-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 14px;
    padding: 18px 19px;
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.history-road-year {
    color: var(--dz-red);
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -0.4px;
    margin-bottom: 7px;
}

.history-road-card h4 {
    color: #111827;
    font-size: 17px;
    font-weight: 850;
    margin: 0 0 8px;
}

.history-road-card p {
    color: #4b5563;
    font-size: 13.5px;
    line-height: 1.62;
    margin: 0;
}

.history-road-stop.is-current .history-road-card {
    border-color: rgba(212, 32, 39, 0.24);
}

.history-road-stop.is-current .history-road-pin {
    background: #111827;
    box-shadow: 0 0 0 8px rgba(17, 24, 39, 0.1), 0 14px 26px rgba(17, 24, 39, 0.18);
}

@media (max-width: 991px) {
    .history-route-intro {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .history-roadmap {
        min-height: 0;
        padding: 22px;
        background-size: 36px 36px;
    }

    .history-roadmap::before {
        content: '';
        position: absolute;
        left: 43px;
        top: 36px;
        bottom: 36px;
        width: 12px;
        border-radius: 999px;
        background: #ffffff;
        box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.12);
    }

    .history-roadmap-path {
        display: none;
    }

    .history-road-stop {
        position: relative;
        width: 100%;
        inset: auto;
        display: grid;
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 14px;
        align-items: start;
        margin-bottom: 18px;
    }

    .history-road-stop:last-child {
        margin-bottom: 0;
    }

    .history-road-pin {
        margin: 0;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 575px) {
    .history-roadmap {
        padding: 18px;
    }

    .history-roadmap::before {
        left: 38px;
    }

    .history-road-stop {
        grid-template-columns: 50px minmax(0, 1fr);
    }

    .history-road-card {
        padding: 16px;
    }
}

@media (max-width: 991px) {
    .about-hero {
        min-height: 350px !important;
    }
}

/* =============================================
   SUBPAGE HEADER WHITE STYLE
   ============================================= */
.site-header.subpage-header {
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03) !important;
}

.site-header.subpage-header .inline-nav-link {
    color: #333333 !important;
}

.site-header.subpage-header .inline-nav-link:hover {
    color: var(--dz-red) !important;
}

.site-header.subpage-header .nav-menu-btn {
    border-color: rgba(0, 0, 0, 0.1) !important;
    color: #333333 !important;
}

.site-header.subpage-header .nav-menu-btn span {
    color: #333333 !important;
}

.site-header.subpage-header .hamburger-icon span {
    background: #333333 !important;
}

.site-header.subpage-header .lang-switcher {
    color: #333333 !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

.site-header.subpage-header .contact-pill {
    border-color: rgba(0, 0, 0, 0.1) !important;
}

.site-header.subpage-header .pill-text {
    color: var(--dz-dark) !important;
}

.site-header.subpage-header .contact-pill:hover .pill-text {
    color: var(--dz-red) !important;
}

.header-actions .contact-pill,
.header-actions .lang-switcher {
    height: 54px !important;
    min-height: 54px !important;
    border-radius: 50px !important;
    box-sizing: border-box !important;
    display: inline-flex !important;
    align-items: center !important;
}

.header-actions .lang-switcher {
    padding: 0 18px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    background: transparent !important;
}

.site-header.scrolled .header-actions .lang-switcher,
.site-header.subpage-header .header-actions .lang-switcher {
    border-color: rgba(0, 0, 0, 0.1) !important;
}

@media (max-width: 991px) {

    .header-actions .contact-pill,
    .header-actions .lang-switcher {
        display: none !important;
    }

    .menu-utilities {
        display: flex !important;
    }
}

/* Modern social media links (from contact page) */
.social-btn {
    width: 44px !important;
    height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 14px !important;
    color: #ffffff !important;
    font-size: 18px !important;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    text-decoration: none !important;
}

.social-btn.facebook {
    background: #3b5998 !important;
}

.social-btn.instagram {
    background: #833ab4 !important;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
}

.social-btn.twitter {
    background: #1da1f2 !important;
}

.social-btn.youtube {
    background: #cd201f !important;
}

.social-btn.sahibinden {
    background: #fff200 !important;
    color: #000000 !important;
    font-weight: 900 !important;
}

.social-btn.sahibinden .s-logo-bold {
    font-family: 'Outfit', 'Inter', sans-serif !important;
    font-size: 20px !important;
    line-height: 1 !important;
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.12) rotate(4deg) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12) !important;
    color: #ffffff !important;
}

.social-btn.sahibinden:hover {
    color: #000000 !important;
}

/* =============================================
   COOKIE CONSENT BANNER
   ============================================= */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 440px;
    background: rgba(22, 22, 22, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    font-family: 'Manrope', 'Inter', sans-serif;
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: none;
}

.cookie-banner.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.cookie-content h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: #ffffff;
}

.cookie-content p {
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.cookie-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.btn-cookie-accept {
    background: #d42027; /* Kurumsal Kırmızı */
    color: #ffffff !important;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 32, 39, 0.4);
}

.btn-cookie-accept:hover {
    background: #b31a20;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 32, 39, 0.5);
}

.btn-cookie-reject {
    background: transparent;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

.cookie-settings-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
    font-size: 13px;
    transition: color 0.2s;
    font-weight: 500;
}

.cookie-settings-link:hover {
    color: #ffffff;
}

@media (max-width: 576px) {
    .cookie-banner {
        bottom: 20px;
        left: 20px;
        right: 20px;
        max-width: none;
        padding: 20px;
    }
    
    .cookie-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        text-align: center;
    }
    
    .btn-cookie-accept, .btn-cookie-reject {
        width: 100%;
    }
    
    .cookie-settings-link {
        order: 3;
        margin-top: 5px;
    }
}