@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #fecc00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}

html {
    scroll-behavior: smooth;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    scroll-margin-top: 120px;
}

/* CONTENT WRAPPER START */

.content-wrapper {
    padding: 20px 0px;
}

.content-wrapper ul,
.content-wrapper ol {
    padding-left: 40px !important;
    margin-bottom: 20px !important;
}

.content-wrapper ul li,
.content-wrapper ol li {
    list-style: disc;
    margin-bottom: 10px;
    word-break: break-word;
    overflow-wrap: break-word;
    position: relative;
}

.content-wrapper p {
    margin-bottom: 16px;
}

.content-wrapper h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.content-wrapper h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.content-wrapper h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.content-wrapper h5 {
    font-size: 18px;
    margin-bottom: 20px;
}

.content-wrapper h6 {
    font-size: 17px;
    margin-bottom: 20px;
}

.content-wrapper img {
    max-width: 100%;
    object-fit: contain;
    height: auto;
    margin: 20px 0;
}

.content-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.content-wrapper table th,
.content-wrapper table td {
    border: 1px solid #eee !important;
    padding: 10px;
    text-align: left;
}

/* CONTENT WRAPPER END */

/*DESKTOP HEADER START*/

.desktop-header {
    width: 100%;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    border-bottom: none;
    z-index: 100;
    padding: 20px 0;
    align-items: center;
    transition:
        background-color 0.5s ease,
        box-shadow 0.5s ease,
        padding 0.3s ease;
}

.desktop-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.desktop-header.scrolled {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.desktop-header.scrolled nav ul li a {
    color: #000 !important;
}

.desktop-header.scrolled .phone {
    color: black;
}

.desktop-header.scrolled .phone i {
    color: black !important;
}


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

.container-fluid {
    max-width: 95%;
    margin: 0 auto;
}

nav ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


nav ul li a {
    color: white;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li {
    position: relative;
    display: block;
    width: 100%;
}

nav ul li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    border-radius: 30px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

nav ul li:hover::after {
    width: 100%;
}

/*DROPDOWN START*/

nav ul li .dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: var(--primary-color);
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 99;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

nav ul li .dropdown-menu a {
    color: #222;
    width: 100%;
}


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

.dropdown-toggle {
    display: none;
}

.has-dropdown .dropdown-menu .has-dropdown .dropdown-menu {
    left: 100%;
    top: 0;
}

.has-dropdown ul li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    border-radius: 30px;
    background-color: white;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {

    .mobile-menu .menu-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-menu .dropdown-toggle {
        display: inline-flex;
        background: none;
        border: none;
        font-size: 14px;
        cursor: pointer;
    }

    .mobile-menu .dropdown-menu {
        position: static;
        max-height: 0;
        overflow: hidden;
        padding: 0 0 0 15px;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        opacity: 0;
        transform: translateY(-5px);
        transition:
            max-height 0.4s ease,
            opacity 0.3s ease,
            transform 0.3s ease;
    }

    .mobile-menu li.open>.dropdown-menu {
        max-height: 500px;
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-menu .dropdown-toggle i {
        transition: transform 0.3s ease;
        transform: rotate(0deg);
    }

    .mobile-menu li.open .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .mobile-menu .dropdown-menu a {
        color: #222;
        padding: 8px 0;
        display: block;
    }
}

/*DROPDOWN END*/

.white-logo {
    display: block;
    width: 200px;
    height: auto;
}

.black-logo {
    display: none;
}

.scrolled .white-logo {
    display: none;
}

.scrolled .black-logo {
    display: block;
    width: 200px;
    height: auto;
}

.logo-mobile .logo-black {
    display: none;
}

.scrolled .logo-mobile .logo-white {
    display: none;
}

.scrolled .logo-mobile .logo-black {
    display: block;
    width: 200px;
    height: auto;
}

.phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    color: white;
    background-color: transparent;
    font-weight: 500;
    transition: all 0.3s ease;
}

.phone i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    background-color: var(--primary-color);
}

.phone:hover {
    color: var(--primary-color);
}

@media (max-width: 1300px) {
    nav ul {
        gap: 10px;
    }

    .phone {
        padding: 0;
        gap: 5px;
        font-size: 14px;
    }

    .phone i {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }

}

@media (max-width: 1140px) {
    nav ul li a {
        font-size: 13px;
    }
}


/*DESKTOP HEADER END*/
/*MOBİLE HEADER START*/


.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 30px;
    background: transparent;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

.mobile-header.scrolled {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-mobile img {
    max-width: 180px;
    height: auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-right span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.hamburger {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
}

body.menu-open .hamburger {
    display: none !important;
}

body.menu-open .header-right {
    display: none !important;
}



.hamburger i {
    font-size: 24px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.mobile-header.scrolled .header-right span,
.mobile-header.scrolled .hamburger i {
    color: black;
}

body.menu-open {
    overflow: hidden;
}

.mobile-slide {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2000;
}

.mobile-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 56px;
    height: 56px;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    z-index: 2200;
}



.mobile-slide-content {
    position: absolute;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100%;
    padding: 30px 25px;
    background-color: var(--primary-color);
    transition: left 0.3s ease;
    overflow-y: auto;
    z-index: 2100;
}

.mobile-slide.active .mobile-slide-content {
    left: 0;
}

.mobile-slide-content .logo-mobile img {
    max-width: 160px;
    margin-bottom: 30px;
}


.mobile-menu {
    margin-top: 30px !important;
}

.mobile-menu,
.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    color: black;
    border-bottom: 1px solid black;
    width: 100%;
}

@media (max-width: 992px) {
    .mobile-header {
        display: flex !important;
    }

    .desktop-header {
        display: none !important;
    }
}

/*MOBİLE HEADER END*/
/*SLİDER START*/
.slider {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-bottom: 90px;
    position: relative;
    object-fit: cover;
}

.heroSlider {
    position: relative;
    width: 100%;
    height: 100%;
}

.heroSlider .swiper-wrapper {
    width: 100%;
    height: 100%;
}



.hero-item {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}

.heroSlider .hero-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.6) 100%);
}

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

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 50px) !important;
    left: 95% !important;
    top: var(--swiper-pagination-top, auto);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;

}


.heroSlider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #a7a7a7;
    opacity: 0.4;
    border-radius: 50%;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.heroSlider .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    opacity: 1;
    transform: scale(1.2);
}

.hero-content {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    color: white;
    display: flex;
    flex-direction: column;
    left: 50%;
}

.hero-content .hero-title {
    display: inline-block;
    background: var(--primary-color);
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    max-width: 300px;
}

.hero-content .hero-subtitle {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
    text-transform: uppercase;
    max-width: 560px;
}

.hero-content .hero-text {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 700px;
}

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

.hero-content .hero-btn-left {
    background: var(--primary-color);
    padding: 16px 38px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: black;
    border: none;
    cursor: pointer;
}

.hero-content .hero-btn-left:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(253, 197, 2, 0.3);
}


.hero-content .hero-btn-right {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 14px 36px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    background-color: transparent;
    cursor: pointer;
}

.hero-content .hero-btn-right:hover {
    background-color: white;
    border-color: white;
    color: black;
}

.hero-bottom-text {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-bottom-text span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.7;
}

.hero-bottom-text i {
    animation: bounceDown 1.5s infinite;
    font-size: 24px;
}

@keyframes bounceDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}


@media (max-width: 992px) {
    .hero-content .hero-title {
        padding: 6px 16px;
        font-size: 11px;
        margin-bottom: 15px;
    }

    .hero-content .hero-subtitle {
        font-size: 36px;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .hero-content .hero-text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .hero-content .hero-btns {
        gap: 10px;
    }

    .hero-content .hero-btn-left {
        padding: 8px 20px;
        font-size: 14px;
        cursor: pointer;
    }

    .hero-content .hero-btn-right {
        padding: 8px 20px;
        font-size: 14px;
        cursor: pointer;
    }
}

/*SLİDER END*/
/*PRODUCT START*/

.products-top {
    text-align: center;
    margin-bottom: 50px;
}

.products-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.products-subtitle {
    font-size: 16px;
    color: #666;
}

.products .container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.products-card {
    width: calc(33.333% - 20px);
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .3s;
}

.products-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.products-card img {
    width: 120px;
    object-fit: contain;
}

.products-card-contact {
    display: flex;
    flex-direction: column;
}

.products-card-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 6px;
    color: #222;
}

.products-card-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

@media(max-width:992px) {
    .products-card {
        width: calc(50% - 15px);
    }
}

@media(max-width:576px) {
    .products-card {
        width: 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}



/*PRODUCT END*/
/*DETAY PRODUCT START*/
.page-products {
    margin-bottom: 50px;
}

.page-products-title {
    display: block;
    text-align: center;
    font-size: 60px;
    font-weight: 600;
    margin: 60px 0;
}

.page-products .container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}


/*DETAY PRODUCT END*/
/*PRODUCT ALT KATEGORİ START*/

.product-top-category {
    padding: 90px 0;
}

.product-top-category .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.top-category-content {
    height: auto;
    min-height: 160px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.top-category-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}


.top-category-content img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    flex-shrink: 0;
}

.product-top-category-contents {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-top-category-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 6px;
    color: #222;
}

.product-top-category-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}


/*PRODUCT ALT KATEGORİ END*/
/*PRODUCT DETAY START*/

.product-detail .container-fluid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 30px;
    padding-top: 60px;
}

.product-detail-left {
    grid-column: span 8;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.product-thumbs {
    width: 100%;
    max-width: 100%;
    margin-top: 16px;
}

.product-thumbs .swiper-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.product-thumbs .swiper-slide {
    opacity: 0.5;
    cursor: pointer;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.product-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
}

.product-thumbs {
    max-width: 100%;
    height: auto;
}

.product-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.product-main {
    width: 100%;
    height: auto;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

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

.product-main .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.product-detail-left .swiper-button-next,
.product-detail-left .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    color: #111 !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
}

.product-detail-left .swiper-button-next::after,
.product-detail-left .swiper-button-prev::after {
    font-size: 17px;
    font-weight: 600;
}


.product-detail-left .swiper-button-prev {
    left: 40px;
}

.product-detail-left .swiper-button-next {
    right: 40px;
}



.product-detail-right {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
}

.product-detail-right-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #222;
    position: relative;
    padding-bottom: 10px;
}

.product-detail-right-title::after {
    content: "";
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    position: absolute;
    left: 0;
    bottom: 0;
}

.product-detail-right-subtitle {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #222;
    position: relative;
    padding-bottom: 10px;
}


.product-detail-right-substances {
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
}

.substance-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8px 12px;
    background: #f7f7f7;
    border-radius: 6px;
    font-size: 14px;
}

.substance-title {
    font-weight: 600;
    color: #222;
    margin-right: 8px;
    flex-shrink: 0;
}

.substance-value {
    color: #666;
    text-align: right;
    word-break: break-word;
    max-width: 70%;
}

.product-action-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.product-detail-right .pdf-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: linear-gradient(135deg, #f7c600, var(--primary-color));
    color: #222;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow:
        0 8px 20px rgba(246, 194, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.product-detail-right .pdf-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.product-detail-right .pdf-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 14px 30px rgba(246, 194, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.product-detail-right .pdf-btn:active {
    transform: translateY(0);
    box-shadow:
        0 6px 14px rgba(246, 194, 0, 0.45),
        inset 0 3px 6px rgba(0, 0, 0, 0.15);
}

.product-detail-right .offer-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: linear-gradient(135deg, #ff4d4d, #c62828);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow:
        0 8px 20px rgba(198, 40, 40, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transition: all 0.3s ease;
    text-decoration: none;
}

.product-detail-right .offer-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 14px 30px rgba(198, 40, 40, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.product-detail-right .offer-btn:active {
    transform: translateY(0);
    box-shadow:
        0 6px 14px rgba(198, 40, 40, 0.45),
        inset 0 3px 6px rgba(0, 0, 0, 0.2);
}



.tab-contents .tab-container {
    display: none;
}

.tab-contents .tab-container.active {
    display: block;
}

.detail-tab button.active {
    font-weight: bold;
    border-bottom: 2px solid #000;
}

.product-tab {
    margin-bottom: 90px;
}

.product-tab-wrapper {
    display: flex;
    gap: 12px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 10px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    margin-bottom: 15px;
}

.detail-tab button {
    background: white;
    border: none;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    cursor: pointer;
}

.detail-tab button:hover {
    color: black;
}

.detail-tab button.active {
    background: white;
    border-bottom: 2px solid var(--primary-color);
    color: #222;
}

.tab-contents {
    max-width: 1320px;
    margin: 0 auto;
}

.tab-container {
    display: none;
    animation: fadeIn 0.35s ease;
}

.tab-container.active {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 460px;
    gap: 56px;
    align-items: flex-start;
}

.tab-contents .content-wrapper {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 32px;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.04),
        0 1px 2px rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
}

.tab-contents .content-wrapper table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.tab-contents .content-wrapper table tr:has(td strong) {
    border-bottom: 1px solid #e5e5e5;
}

.tab-contents .content-wrapper table td strong {
    font-weight: 700;
    padding: 16px 4px;
    color: #222;
    vertical-align: top;
}

.tab-contents .content-wrapper table td {
    padding: 16px 4px;
    color: #666;
}

.tab-container img {
    border-radius: 20px;
    object-fit: cover;
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.08);
    width: 250px;
    margin-left: 15px;
}

@media (max-width: 1200px) {
    .product-detail-left {
        grid-column: span 6;
    }

    .product-detail-right {
        grid-column: span 6;
    }

    .tab-container.active {
        grid-template-columns: 1fr 360px;
        gap: 32px;
    }
}

@media (max-width: 992px) {
    .product-detail .container-fluid {
        display: flex;
        flex-direction: column;
    }

    .product-detail-left,
    .product-detail-right {
        width: 100%;
    }

    .product-detail-right {
        margin-top: 30px;
    }

    .product-detail-left .swiper-button-next,
    .product-detail-left .swiper-button-prev {
        display: none;
    }

    .product-main {
        max-width: 100%;
    }

    .product-thumbs .swiper-slide {
        width: 80px;
        height: 130px;
    }

    .tab-container.active {
        display: block;
    }

    .tab-container img {
        display: block;
        width: 70%;
        margin: 0 auto;
        margin-bottom: 15px;
    }

    .content-wrapper table {
        min-width: 600px;
    }

    .product-tab-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .detail-tab {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .product-tab-wrapper::-webkit-scrollbar {
        display: none;
    }

    .product-tab-wrapper {
        scrollbar-width: none;
    }
}

@media (max-width: 576px) {
    .product-detail-right-title {
        font-size: 22px;
    }

    .product-detail-right-subtitle {
        font-size: 16px;
    }

    .product-thumbs .swiper-slide {
        width: 64px;
        height: 64px;
    }

    .tab-contents .content-wrapper {
        padding: 20px;
    }

    .content-wrapper {
        overflow-x: auto;
    }
}



/*PRODUCT DETAY END*/
/*REFERENCES START*/

.tab {
    padding: 80px 0;
}

.tab .container {
    max-width: 1320px;
    margin: 0 auto;
}

.tab-nav-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}

.tab-nav button {
    padding: 10px 20px;
    border: none;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    color: black;
    cursor: pointer;
    border-radius: 5px;
}

.tab-nav button.active {
    background: var(--primary-color);
    color: black;
}

.tab-contents {
    display: block;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 80px 0;
    justify-content: center;
}


.referans .tab-contents .galeri-item img {
    width: 250px;
    height: auto;
    display: block;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.referans .tab-contents .galeri-item img:hover {
    opacity: 1;
    filter: none;
}

@media (max-width: 992px) {

    .tab-content.active {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 40px 0;
    }

    .referans .tab-contents .galeri-item img {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
        filter: grayscale(100%);
        opacity: 0.6;
        transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    }

    .tab-nav-wrapper {
        flex-wrap: nowrap;
    }

    .tab-nav {
        display: flex;
        gap: 8px;
    }

    .tab-nav button {
        white-space: nowrap;
        padding: 8px 10px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .tab-nav button {
        padding: 6px 8px;
        font-size: 12px;
    }
}



/*REFERENCES END*/
/*REFERANCES DETAY START*/
.referans {
    padding: 60px 0;
}

.referans-top {
    text-align: center;
    margin-bottom: 60px;
}

.referans-title {
    display: inline-block;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
}

.referans-subtitle {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

/*REFERENCES DETAY END*/
/*ABOUT START*/

.about {
    background-color: #f8f8f8;
    padding: 100px 0;
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-left {
    display: flex;
    flex-direction: column;

}

.about-left-top {
    display: flex;
    flex-direction: column;

}

.about-title {
    display: inline-block;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 50px;
}

.about-title::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.about-subtitle {
    font-size: 40px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-full-bottom {
    position: relative;
    padding-left: 30px;
}

.about-full-bottom::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 16px;
    bottom: 60px;
    width: 2px;
    background: #e5e5e5;
}

.about-bottom {
    position: relative;
    padding-bottom: 30px;
    padding-left: 30px;
}

.about-bottom::after {
    content: "";
    position: absolute;
    left: -35px;
    top: 5px;
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary-color);
    z-index: 9;
}

.about-bottom-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #222;
}

.about-bottom-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.about-right {
    position: relative;
}

.about-right .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;

}

.about-right img {
    border-radius: 12px;
    overflow: hidden;
}

.about-right .first-img {
    height: 420px;
    grid-row: span 2;
    object-fit: cover;
}

.about-right-box {
    height: max-content;
    position: absolute;
    bottom: 30px;
    left: -40px;
    background: var(--primary-color);
    color: #222;
    padding: 25px 35px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(253, 197, 2, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-right-top {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.about-right-bottom {
    font-size: 13px;
    font-weight: 600;
}

@media (max-width:1340px) {
    .about .container {
        display: grid;
        grid-template-columns: 1fr;
    }

    .about-right .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .about-right-box {
        left: 25px;
    }
}

@media (max-width:850px) {
    .about-right .container {
        display: flex;
        flex-direction: column;
    }

    .about-right img {
        height: 420px;
        object-fit: cover;
    }

    .about-right-box {
        left: 0px;
        top: 285px;
        align-self: flex-start;
    }
}

/*ABOUT END*/
/*ABOUT DETAY START*/

.page-about {
    padding: 80px 0;
    text-align: center;
}

.page-about .container {
    margin-bottom: 90px;
}

.page-about-left,
.page-about-right {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-direction: row;
    grid-column: span 12;
    box-sizing: border-box;
    margin-bottom: 60px;
}


.page-about-left .content-box,
.page-about-right .content-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.page-about-left:nth-child(odd),
.page-about-right:nth-child(odd) {
    flex-direction: row;
}

.page-about-left:nth-child(even),
.page-about-right:nth-child(even) {
    flex-direction: row-reverse;
}

.page-about-left .image-box,
.page-about-right .image-box {
    flex: 0 0 50%;
    position: relative;
}

.page-about-left .content-box,
.page-about-right .content-box {
    flex: 0 0 45%;
}

.page-about-left .image-box::before,
.page-about-right .image-box::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 12px;
    z-index: 0;
}

.page-about-left:nth-child(odd) .image-box::before,
.page-about-right:nth-child(odd) .image-box::before {
    top: 25px;
    left: 15px;
}

.page-about-left:nth-child(even) .image-box::before,
.page-about-right:nth-child(even) .image-box::before {
    top: 25px;
    right: 15px;
}

.page-about-left .image-box img,
.page-about-right .image-box img {
    width: 80%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.page-about-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.page-about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.about-btn-wrapper {
    margin-top: 15px;
    text-align: center;
}

.about-btn-wrapper a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background-color: var(--primary-color);
    color: black;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    font-weight: 500;
}

.about-btn-wrapper a i {
    transition: transform .3s ease;
}

.about-btn-wrapper a:hover i {
    transform: translateX(5px);
}




@media (max-width: 992px) {

    .page-about-left,
    .page-about-right {
        flex-direction: column !important;
        align-items: center;
        gap: 20px;
    }

    .page-about-left .image-box img,
    .page-about-right .image-box img {
        max-height: 400px;
    }

    .page-about-left:nth-child(even),
    .page-about-right:nth-child(even) {
        flex-direction: column !important;
    }
}

.page-about-video img {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    display: block;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin-bottom: 90px;
}

.page-about-video img:hover {
    box-shadow: red 1px 5px 15px;
}

@media (max-width: 992px) {
    .page-about-video {
        width: 90%;
    }
}

/*SLOGAN*/
.page-about .slogan {
    max-width: 100%;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f6f6f6;
    gap: 30px;
    margin-bottom: 90px;
}

.page-about .colourful {
    color: var(--primary-color);
    font-size: 120px;
    font-weight: bold;

}

.page-about .colorless {
    color: #666;
    font-size: 120px;
    font-weight: bold;
}

.page-about .colorless i {
    color: var(--primary-color);
    font-size: 40px;
    transform: translateY(-5px);
}

@media(max-width: 992px) {
    .page-about .slogan {
        gap: 5px;
    }

    .page-about .colorless,
    .page-about .colourful {
        font-size: 30px;
    }

    .page-about .colorless i {
        display: none;
    }
}


/*KART*/
.page-about-bottom-title {
    display: inline-block;
    color: var(--primary-color);
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    position: relative;
}

.page-about-bottom-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    max-width: 1320px;
    margin: 0 auto;
}

.page-about-bottom {
    grid-column: span 3;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: transform 0.3s;
    cursor: pointer;
}

.page-about-bottom:hover {
    transform: translateY(-5px);
    border: 1px solid var(--primary-color);
}

.page-about-bottom-subtitle {
    display: block;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
    color: #222;
}

.page-about-bottom-text {
    display: block;
    font-size: 14px;
    color: #666;
}

@media(max-width: 992px) {

    .page-about-bottom {
        grid-column: span 6;
    }

    .page-about-bottom-container {
        width: 90%;
    }


}

/*ABOUT DETAY END*/
/*APPS START*/

.apps {
    padding: 90px 0;
}

.apps-top {
    text-align: center;
    margin-bottom: 60px;
}

.apps-title {
    display: inline-block;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
}

.apps-subtitle {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.apps-text {
    font-size: 17px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.apps .container {
    position: relative;
}

.apps-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    text-align: center;
    border-right: 1px solid #e5e5e5;
    transition: background-color 0.3s ease;
}

.apps-card:last-child {
    border-right: none;
}


.apps-card img {
    max-height: 110px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.apps-card .card-title {
    color: #666;
    transition: color 0.3s ease;
}

.apps-card:hover {
    background-color: #f8f8f8;
}

.apps-card:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

.apps-card:hover .card-title {
    color: var(--primary-color);
}

.card-title {
    font-size: 14px;
    color: #555;
}

.apps .container .swiper-button-prev {
    color: var(--primary-color);
    z-index: 10;
    left: var(--swiper-navigation-sides-offset, -60px);
}


.apps .container .swiper-button-next {
    color: var(--primary-color);
    z-index: 10;
    right: var(--swiper-navigation-sides-offset, -60px);
}

.apps .swiper-button-prev::after,
.apps .swiper-button-next::after {
    font-size: 20px;
}


@media (max-width: 992px) {
    .apps .container {
        flex-wrap: wrap;
    }

    .apps-card {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        border-right: 1px solid #e5e5e5;
        border-bottom: 1px solid #e5e5e5;
    }

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

    .apps-card:last-child {
        border-bottom: none;
        border-right: 1px solid #e5e5e5;
    }

    .apps .swiper-button-prev,
    .apps .swiper-button-next {
        display: none;
    }
}

/*APPS END*/
/*APPS DETAY START*/

.page-apps {
    padding: 80px 0;
}

.apps-nav-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.page-apps .tab-content img {
    border-radius: 5px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.page-apps .tab-content img:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}




/*APPS DETAY END*/
/*PROCESS START*/
.process {
    padding: 100px 0;
    background-color: #f8f8f8;

}

.process-top {
    text-align: center;
    margin-bottom: 60px;
}

.process-title {
    display: inline-block;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
}

.process-subtitle {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.process-text {
    font-size: 17px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.process .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.process-card::after {
    content: "";
    position: absolute;
    top: 40px;
    left: calc(50% + 17px);
    width: calc(100% - 15px);
    height: 2px;
    background: #e5e5e5;
}

.process-card:nth-child(4)::after {
    display: none;
}

.process-no {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 auto 20px;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

.process-card:hover .process-no {
    background-color: var(--primary-color);
    color: #222;
    transform: scale(1.1);
}

.process-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.process-card-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

@media (max-width:992px) {
    .process .container {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px 30px;
        flex-direction: column;
        align-items: center;
    }

    .process-card-title,
    .process-card-text {
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .process-card::after {
        display: none;
    }

    .process-subtitle {
        font-size: 30px;
    }
}

/*PROCESS END*/
/*SOURCES START*/
.sources {
    padding-bottom: 80px;
    background: white;
}

.sources-top {
    text-align: center;
    margin-bottom: 60px;
}

.sources-title {
    display: inline-block;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
}

.sources-subtitle {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.sources .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.sources-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 40px;
    background: #f8f8f8;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

.sources-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.sources-card .sources-left {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #222;
    flex-shrink: 0;
}

.sources-left i {
    font-size: xx-large;
}

.sources-card .sources-right {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.sources-right .sources-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.sources-right .sources-card-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.sources-right button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    border: none;
    background: #f8f8f8;
}

.sources-right i {
    transition: transform 0.3s;
}

.sources-card:hover .sources-right i {
    transform: translateX(5px);
}

@media (max-width:992px) {
    .sources .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sources-card {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sources-right {
        display: flex;
        flex-direction: column;
        align-items: center !important;
    }
}

/*SOURCES END*/
/*CTA START*/

.cta {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background: fixed;
    padding: 60px 0;
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(26, 26, 26, 0.95) 0%,
            rgba(26, 26, 26, 0.8) 100%);
    z-index: 1;
}

.cta .container {
    position: relative;
    z-index: 2;
}



.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    color: white;
}


.cta-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.25;
}

.cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.cta-right {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: large;
}

.cta-right i {
    font-size: large;
}

.cta-l-btn {
    background: var(--primary-color);
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: black;
    border: none;
}

.cta-l-btn:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(253, 197, 2, 0.3);
}

.cta-r-btn {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 14px 36px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    background-color: transparent;
}

.cta-r-btn:hover {
    background-color: white;
    border-color: white;
    color: black;
}

@media (max-width:992px) {
    .cta-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }


}

/*CTA END*/
/*FOOTER START*/
footer {
    background: #e8e8e8;
    color: #222;
    padding: 60px 0 30px;
    font-size: 14px;
}

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

footer .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

footer .container .row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo img {
    width: 300px;
    height: auto;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-start span {
    display: block;
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 450px;
    color: #666;
}

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

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid black;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

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

.footer-links span,
.footer-services span {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: black;
}

.footer-links a,
.footer-services a {
    color: #666;
}

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

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 14px;
    transition: transform 0.3s ease;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--primary-color);
}


.footer-links ul li:hover,
.footer-services ul li:hover {

    transform: translateX(5px);
}


.footer-end {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-end span {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: black;
}

.footer-end a {
    padding-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #666;
    transition: all 0.3s ease;
}

.footer-end a:last-child {
    margin-left: 10px;
}



.footer-end a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-end i {
    width: 25px;
    height: auto;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: black;
}

.footer-span {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: block;
    text-align: center;
    font-size: 13px;
    opacity: 0.7;
}

@media (max-width: 992px) {
    footer .container .row {
        grid-template-columns: 1fr;
        gap: 40px;
        justify-content: center;
    }

    .footer-logo img {
        width: 220px;
    }
}

/* FOOTER STICKY MENU START */

.footer-sticky {
    display: none;
    align-items: center;
    justify-content: space-between;
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: fixed;
    z-index: 999999;
    width: 100%;
    bottom: 0;
    padding: 0 0.5rem 1.15rem 0.5rem;
    border-top-left-radius: 2.15rem;
    border-top-right-radius: 2.15rem;
    border-top: 6px solid var(--primary-color);
}


@media (max-width: 992px) {
    .footer-sticky {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.footer-sticky .sticky-box {
    width: 20%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
}

.footer-sticky .sticky-box .icon {
    height: 48px;
    width: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: transparent;
}

.footer-sticky .sticky-box .text {
    font-size: 14px;
    color: black;
    text-align: center;
}

@media (max-width: 568px) {
    .footer-sticky .sticky-box .text {
        font-size: 10px;
    }
}

.footer-sticky .top-box .icon::before {
    content: "";
    position: absolute;
    height: 66px;
    width: 66px;
    border: 1px solid black;
    border-radius: 50%;
    opacity: 0.5;
}

.footer-sticky .top-box .icon::after {
    content: "";
    position: absolute;
    height: 56px;
    width: 56px;
    border: 1px solid black;
    border-radius: 50%;
    opacity: 0.75;
}

.footer-sticky .sticky-box .icon i {
    font-size: 22px;
    color: black;
}

.footer-sticky .top-box .icon i {
    font-size: 22px;
    color: var(--primary-color);
}

.footer-sticky .top-box {
    -webkit-transform: translateY(-1.5rem);
    transform: translateY(-1.5rem);
}

.footer-sticky .top-box .text {
    -webkit-transform: translateY(1.5rem);
    transform: translateY(1.5rem);
    text-align: center;
}

.footer-sticky .top-box .icon {
    background: black;
    border-radius: 50%;
    position: relative;
}

/* FOOTER STICKY BUTTON END */
/* BREADCRUMB START */

.breadcrumb-container {
    position: relative;
    height: 200px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 20px;
}


.breadcrumb-container .bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}


.breadcrumb-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.breadcrumb-container .container {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: center;
}

.breadcrumb-container .links {
    display: flex;
    align-items: center;
    gap: 30px;
    color: white;
}

.breadcrumb-container .links li {
    position: relative;
    white-space: nowrap;
    color: white;
    font-weight: 500;
}

.breadcrumb-container .links li:not(:last-child)::after {
    content: "/";
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color) !important;
}

.breadcrumb-container .links a {
    color: white;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .breadcrumb-container {
        background-attachment: scroll;
        padding: 70px 0 25px;
    }

    .breadcrumb-container .links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .breadcrumb-container .links li:not(:last-child)::after {
        right: -10px;
    }

    .breadcrumb-container .links li,
    .breadcrumb-container .links a {
        font-size: 13px;
    }
}

/* BREADCRUMB END */
/* CAREER FORM START */

.career-form {
    padding: 60px 0;
}

.career-form-row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.career-form-row>.career-form {
    grid-column: span 6;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.career-form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.career-form-left-bold {
    font-weight: 500;
    margin-top: 10px;
}

.career-form a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #222;
}

.career-form i {
    color: var(--primary-color);
}

.maps {
    grid-column: span 6;
}

.maps iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 8px;
}

.career-form-bottom {
    max-width: 1320px;
    margin: 0 auto 60px auto;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: #fff;
    border-radius: 8px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.career-bottom-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.career-form-bottom input {
    border: none;
    padding: 18px 20px;
    font-size: 15px;
    border-radius: 6px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 6px 20px;
}

.career-form-bottom textarea {
    border: none;
    padding: 18px 20px;
    font-size: 15px;
    border-radius: 6px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 6px 20px;
}

.career-form-bottom .g-recaptcha {
    margin-top: 10px;
}

.career-form-bottom button {
    margin-top: 10px;
    background: var(--primary-color);
    padding: 14px 30px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    border: none;
    width: fit-content;
    cursor: pointer;
    transition: all 0.3s;
}

.career-form-bottom button:hover {
    box-shadow: rgba(149, 157, 165, 0.25) 0px 8px 20px;
}

@media (max-width: 992px) {
    .career-form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .career-form-row>.career-form,
    .maps {
        grid-column: span 12;
    }

    .maps iframe {
        min-height: 300px;
    }

    .career-form-bottom {
        max-width: 100%;
        padding: 30px 20px;
        margin: 60px 15px;
    }

    .career-form-bottom button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .career-form-title {
        font-size: 22px;
    }

    .career-bottom-title {
        font-size: 20px;
    }

    .career-form {
        padding: 40px 0;
    }
}

/* CAREER FORM END */
/*OFFER START*/
.page-offer {
    padding: 30px;
}

.page-offer-title {
    display: block;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 400;
    color: #1f2937;
    text-align: start;
    position: relative;
    padding-bottom: 10px;
}

.page-offer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);
}

/* OFFER END /*
/*DEALERS START*/

.dealers-tabs {
    padding: 60px 0;
}

.dealers-tabs-select {
    max-width: 1320px;
    margin: 0 auto 40px;
}

.dealers-tab-select {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    border: 1px solid #ddd;
    background-color: white;
    color: #222;
    cursor: pointer;
    transition: border-color .2s ease;
}

.dealers-tab-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.dealers-tab-contents {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dealers-tab-content {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all .25s ease;
}

.dealers-tab-content:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
    transform: translateY(-3px);
}

.dealers-tab-text {
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.dealer-map {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
}

.dealer-map iframe {
    width: 100%;
    height: 220px;
    border: 0;
}

.dealer-address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

.dealer-address i {
    color: var(--primary-color);
    margin-top: 3px;
}

.dealer-address span {
    font-weight: 600;
}

.dealer-phones {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dealer-phones a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #222;
    text-decoration: none;
    transition: color .2s ease;
}

.dealer-phones a i {
    color: var(--primary-color);
}

.dealer-phones a span {
    font-weight: 600;
}

.dealer-phones a:hover {
    color: var(--primary-color);
}

.dealer-fax {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.dealer-fax i {
    color: var(--primary-color);
}

.dealer-fax-label {
    font-weight: 600;
}

.dealer-fax-number {
    color: inherit;
    text-decoration: none;
}

.dealer-fax-number:hover {
    text-decoration: underline;
}

.dealer-authorized {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #444;
}

.dealer-authorized i {
    color: var(--primary-color);
}

.dealer-authorized span {
    font-weight: 600;
}

@media (max-width: 768px) {
    .dealers-tabs {
        padding: 40px 0;
    }

    .dealers-tab-contents {
        grid-template-columns: 1fr;
    }

    .dealer-map iframe {
        height: 200px;
    }
}

/*DEALERS END*/
/*DOCUMENTS START*/
.documents {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.documents .container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.documents a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #fff;
    border-radius: 5px;
    padding: 50px;
    text-decoration: none;
    color: #222;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.documents a:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.documents a img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 12px;
}

.documents a i {
    font-size: 90px;
    margin-bottom: 40px;
}

.documents a span {
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

/*DOCUMENTS END*/
/* PAGE DOCUMENTS START */
.page-documents {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-documents .container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.page-documents a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #fff;
    border-radius: 5px;
    padding: 15px;
    text-decoration: none;
    color: #222;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-documents a:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.page-documents a img {
    width: 300px;
    height: auto;
    object-fit: contain;
    margin-bottom: 12px;
}

.page-documents a i {
    font-size: 90px;
    margin-bottom: 40px;
}

.page-documents a span {
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

/* PAGE DOCUMENTS END */
/*HR START*/
.hr-section {
    padding: 80px 20px;
    background-color: #f7f9fc;
}

.hr-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 5px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    width: 100%;
}

.hr-title {
    font-size: 32px;
    font-weight: 600;
    color: #222;
    text-align: center;
    margin-bottom: 40px;
}

.hr-form {
    width: 100%;
}

.hr-form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.hr-form-item input,
.hr-form-item-full textarea,
.hr-file-upload input[type="file"] {
    width: 100%;
    max-width: 100%;
    padding: 14px 16px;
    border-radius: 5px;
    border: 1px solid #d1d5db;
    font-size: 15px;
    color: #222;
    background-color: white;
}

.hr-file-control {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    padding: 8px 12px;
    border-radius: 5px;
    border: 1px solid #d1d5db;
    font-size: 15px;
    color: #222;
    background-color: white;
    cursor: pointer;
    box-sizing: border-box;
}

.hr-file-control input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hr-file-btn {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 3px;
    border: 1px solid #c5c5c5;
    background: #efefef;
    color: #222;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
}

.hr-file-name {
    flex: 1;
    color: #555;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hr-form-item-full {
    grid-column: span 3;
}

.hr-file-upload {
    grid-column: span 3;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.hr-form-bottom {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.hr-recaptcha {
    transform: scale(0.95);
    transform-origin: left;
    max-width: 100%;
}

.hr-submit-btn {
    padding: 14px 36px;
    border-radius: 5px;
    border: none;
    background: var(--primary-color);
    color: white;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

@media (max-width: 992px) {
    .hr-section {
        padding: 60px 16px;
    }

    .hr-container {
        max-width: 100%;
        padding: 24px 16px;
    }

    .hr-form-grid {
        grid-template-columns: 1fr;
    }

    .hr-form-item-full,
    .hr-file-upload {
        grid-column: span 1;
    }

    .hr-form-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .hr-recaptcha {
        transform: scale(0.85);
        transform-origin: left;
    }

    .hr-submit-btn {
        width: 100%;
    }
}

/*HR END*/
/*BLOG START*/

.blog {
    padding: 90px 0;
}

.blog .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.blog-card {
    width: calc(25% - 30px);
    min-width: 350px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-radius: 5px;
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all .4s ease;
    text-decoration: none;
}

.blog-card:hover {
    transform: scale(1.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
}

.blog-card span {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    padding-bottom: 8px;
    border-bottom: 3px solid var(--primary-color);
}

/*BLOG END*/
/*BLOG DETAY START*/

.page-blog {
    padding: 60px 0;
}

.page-blog .container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}

.page-blog-left {
    grid-column: span 8;
    padding: 30px;
}

.page-blog-left img {
    max-width: 100%;
    height: auto;
    margin-bottom: 25px;
    border-radius: 5px;
}

.page-blog-text {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.page-blog-text * {
    max-width: 100%;
}

.page-blog-right {
    grid-column: span 4;
    position: sticky;
    top: 100px;
    align-self: start;
    border-radius: 5px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.page-blog-right form {
    padding: 25px;
}

.right-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
    color: var(--primary-color);

}

.right-text,
.right-message {
    width: 100%;
    padding: 12px;
    margin-bottom: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.right-text:focus,
.right-message:focus {
    outline: none;
    border-color: var(--primary-color);
}

.page-blog-right button {
    width: 100%;
    padding: 14px;
    border: 0;
    border-radius: 6px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    cursor: pointer;
}

.page-blog-right .g-recaptcha {
    margin-bottom: 15px;
}

@media (max-width: 992px) {
    .page-blog {
        padding: 40px 0;
    }

    .page-blog .container {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }

    .page-blog-left,
    .page-blog-right {
        grid-column: span 1;
        padding: 0;
    }

    .page-blog-right {
        position: static;
    }
}


/*BLOG DETAY END*/
/*BRANDS START*/
.brands {
    padding: 60px 0;
    background: #f9f9f9;
}

.brands .container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.brands-card {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    padding: 35px 30px;
    border-radius: 6px;
    text-decoration: none;
    color: #222;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brands-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
}

.brands-card img {
    width: 120px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.brands-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.brands-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .brands {
        padding: 40px 0;
    }

    .brands .container {
        gap: 20px;
        padding: 0 16px;
    }

    .brands-card {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 28px 20px;
    }

    .brands-card img {
        width: 100px;
        height: 70px;
    }
}

/*BRANDS END*/
/* /EDGE-WİDGET START/ */

.edge-widget img {
    display: none;
}

.edge-widget.active img {
    display: block;
}

.edge-widget {
    position: fixed;
    z-index: 9999;
}

.img-wrapper {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 5px;
    position: fixed;
    top: 0;
    height: 100vh;
    right: 0;
    width: 420px;
    object-fit: cover;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 3;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.edge-widget-title {
    font-size: 27px;
    font-weight: 500;
    color: white;
}

.img-wrapper .desc {
    font-size: 14px;
    color: white;
}

.edge-widget button {
    width: 150px;
    height: 40px;
    border: none;
    background: var(--primary-color);
    color: white;
    cursor: pointer;
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(37%) rotate(-90deg);
    z-index: 3;
    transition: right 0.3s ease, background 0.3s ease;
    border-radius: 5px;
}


.edge-widget.active .img-wrapper {
    transform: translateX(0);
}

.edge-widget.active body {
    overflow: hidden;
}

.edge-widget.active button {
    right: 420px;
}

.edge-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 2;
}

.edge-overlay.active {
    opacity: 1;
    visibility: visible;
}



@media(max-width:992px) {
    .edge-widget.active .img-wrapper {
        width: 75%;
    }

    .edge-widget.active button {
        right: 172px;
    }
}

/* /EDNGE-WİDGET END/ */
/*PRODUCTS DETAİL START*/

.tabs .tab-nav {
    padding-top: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-bottom: 1px solid #929292;
}

.tabs .tab-nav li {
    cursor: pointer;
    font-size: 20px;
    position: relative;
    border-bottom: 3px solid #929292;
}

.tabs .tab-nav li.active {
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.tabs .tab-row {
    padding: 60px 0;
}

.tab-item {
    display: none;
}

.tab-item.active {
    display: block;
}

.column-reverse {
    display: flex;
    align-items: center;
}

.column-reverse-left,
.column-reverse-right {
    flex: 0 0 50%;
    width: 50%;
}

.reverse-wrapper .content-wrapper {
    padding: 30px;
    text-align: center;
}

.column-reverse:not(:last-child) {
    margin-bottom: 30px;
}

.column-reverse:nth-child(even) {
    flex-direction: row-reverse;
}

.column-reverse .title {
    font-size: 27px;
    font-weight: bold;
    text-align: center;
}

@media (max-width: 992px) {
    .tabs .tab-nav li.active {
        font-weight: bold;
        border: none;
        color: #222;
    }

    .tabs .tab-nav {
        flex-direction: column;
        justify-content: center;
        border-bottom: none;
        text-align: center;
        padding: 30px 0;
    }

    .tabs .tab-nav li {
        width: 100%;
        background-color: rgba(0, 0, 0, 0.1);
        border-bottom: none;
        font-size: 16px;
        margin-bottom: 5px;
        padding: 10px;
        border-radius: 5px;
    }

    .tabs .tab-row {
        padding: 30px 0;
    }

    .column-reverse {
        flex-direction: column !important;
    }

    .column-reverse-left,
    .column-reverse-right {
        width: 100%;
        flex: 0 0 100%;
    }

    .reverse-wrapper .content-wrapper {
        padding: 20px;
    }

    .column-reverse .title {
        font-size: 22px;
    }
}

#video .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

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

.video-wrapper:hover {
    transform: scale(1.02);
    transition: 0.3s ease;
}

@media (max-width: 992px) {
    #video .row {
        grid-template-columns: 1fr;
    }
}


#docs .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.pdf-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #222;
    font-weight: 500;
    font-size: 14px;
}

.pdf-box img {
    width: 140px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 8px;
    border-radius: 10px;
}


@media (max-width: 992px) {
    #docs .row {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* SEARCH BOX - START */

.searchBox {
    position: absolute;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    display: flex;
    align-items: center;
    background-color: white;
    gap: 10px;
    padding: 200px 60px;
    transition: 0.5s ease-in-out;
}

.searchBox input {
    width: 100%;
    border: none;
    outline: none;
    height: 50px;
    font-size: 32px;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}


.searchBox input::placeholder {
    font-size: 32px;
}


.searchBox.active {
    top: 0;
}

.searchOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 98;
}

.searchOverlay.active {
    visibility: visible;
    opacity: 1;
}

.searchSubmit {
    background: none;
    border: none;
}

.searchSubmit i {
    font-size: 50px;
}

.searchBtn {
    padding: 10px;
    border-radius: 10px;
}

.searchBtn i {
    color: white;
    font-size: 22px;
}

.desktop-header.scrolled .searchBtn i {
    color: #222;
}

.closeBtn {
    position: absolute;
    top: 20px;
    right: 20px;
}

.closeBtn i {
    font-size: 42px;
    color: black;
}

.mobile-search {
    position: absolute;
    top: 20px;
    right: 120px;
    background-color: transparent;
    padding: 0px;
}

.no-scroll {
    overflow: hidden;
}

@media (max-width:565px) {
    .searchBox {
        height: 100vh;
    }

    .searchBox input {
        font-size: 18px;
    }

    .searchBox input::placeholder {
        font-size: 18px;
    }

    .searchSubmit i {
        font-size: 22px;
    }

    .closeBtn i {
        font-size: 27px;
    }
}

/* SEARCH BOX - END */
/* MOBILE SEARCH BUTTON */
.mobile-search {
    position: absolute;
    right: 16px;
    background-color: transparent;
    padding: 8px;
}

.mobile-search i {
    font-size: 22px;
    color: #222;
    margin-left: auto;
}

.mobile-header.scrolled .mobile-search i {
    color: #222;
}

.searchBox {
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 3000;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 120px 20px;
    transition: top 0.4s ease;
}

.searchBox input {
    width: 100%;
    height: 45px;
    border: none;
    outline: none;
    font-size: 18px;
    border-bottom: 1px solid #ccc;
}

.searchSubmit {
    background: none;
    border: none;
}

.searchSubmit i {
    font-size: 22px;
}

.closeBtn {
    position: absolute;
    top: 20px;
    right: 20px;
}

.closeBtn i {
    font-size: 26px;
    color: #222;
}

.searchBox.active {
    top: 0;
}

.no-scroll {
    overflow: hidden;
}

/* MOBILE SEARCH BUTTON */
/*404 SART*/
.mistake {
    padding: 80px 0;
}

.mistake .container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 50px;
    align-items: center;
}

.mistake .container .left {
    grid-column: span 6;
}

.mistake .container .right {
    grid-column: span 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.mistake .container .right .title {
    font-size: 32px;
    font-weight: 600;
    color: #222;
}

.mistake .container .right .text {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.mistake .container .right a {
    background: var(--primary-color);
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: black;
    border: none;

}

/*404 END*/
/* DEALERS FORM START */

.dealers-section {
    padding: 80px 20px;
}

.dealers-section .container {
    background: #fff;
    border-radius: 15px;
    padding: 50px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    width: 100%;
}

.dealers-title {
    font-size: 32px;
    font-weight: 600;
    color: #1f2937;
    text-align: center;
    margin-bottom: 40px;
}

.dealers-form {
    width: 100%;
}

.dealers-form-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.dealers-form-item {
    grid-column: span 2;
}

.dealers-form-item:nth-child(4),
.dealers-form-item:nth-child(5) {
    grid-column: span 3;
}

.dealers-form-item-full {
    grid-column: 1 / -1;
}

.dealers-form-item input,
.dealers-form-item-full textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    font-size: 15px;
    color: #111827;
    background-color: #fff;
    transition: all .25s ease;
}

.dealers-form-item input:hover,
.dealers-form-item-full textarea:hover {
    border-color: #cbd5e1;
}

.dealers-form-item input:focus,
.dealers-form-item-full textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
    outline: none;
}

.dealers-form-bottom {
    margin-top: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.dealers-recaptcha {
    transform: scale(0.95);
    transform-origin: left;
}


.dealers-submit-btn {
    padding: 14px 36px;
    border-radius: 6px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
}

.dealers-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.dealers-submit-btn:active {
    transform: translateY(0);
}

.dealers-section span {
    font-size: 30px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}


@media (max-width: 992px) {

    .dealers-section {
        padding: 50px 5px;
    }

    .dealers-section span {
        font-size: 18px;
    }

    .dealers-section .container {
        padding: 25px 18px;
    }

    .dealers-form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .dealers-form-item,
    .dealers-form-item:nth-child(4),
    .dealers-form-item:nth-child(5),
    .dealers-form-item-full {
        grid-column: 1 / -1;
    }

    .dealers-form-bottom {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .dealers-recaptcha {
        transform: scale(0.9);
        transform-origin: left;
    }

    .dealers-submit-btn {
        width: 100%;
    }
}

/* DEALERS FORM END */
/* YILAN YAPISI START */

.production-snake {
    display: flex;
    flex-direction: column;
    gap: 120px;
    padding: 60px 0;
}

.production-snake .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.production-snake .image {
    width: 50%;
}

.production-snake .image img {
    width: 100%;
    height: auto;
    display: block;
}

.production-snake .content {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.production-snake .content .title {
    font-size: 20px;
    font-weight: bold;
}

.production-snake .item:nth-child(even) {
    flex-direction: row-reverse;
}

/**/
.production-middle {
    padding: 60px 0;
    font-size: 40px;
    font-weight: 600;
    text-align: center;
}

/**/

.production-features {
    padding: 60px 0;
}

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

.production-features .item {
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 15px 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    background-color: white;
    height: 90%;
}

.production-features .icon {
    width: 60px;
    height: 60px;
    padding: 0 20px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.production-features .icon i {
    font-size: 32px;
}

.production-features .content .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

/**/
.production-advantages {
    padding: 60px 0;
}

.production-advantages .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.production-advantages .item {
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color: white;
    height: 95%;
}

.production-advantages .item .title {
    font-size: 24px;
    font-weight: 600;
}

/**/

.pane-contents .pane-content {
    display: none;
    padding: 60px 0;
}

.pane-contents .pane-content.active {
    display: block;
}

.pane-video .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.pane-video .item {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 oranı */
}

.pane-video .item iframe {
    position: absolute;
    /* BU ŞART */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: none;
}

/* Pane nav */
.pane-navigation {
    padding: 30px 0;
}

.pane-nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-bottom: 1px solid #929292;
}

.pane-nav li {
    cursor: pointer;
    font-size: 20px;
    position: relative;
    border-bottom: 3px solid #929292;
}

.pane-nav li.active {
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.pane-shorts .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.pane-shorts .item {
    position: relative;
    width: 100%;
    padding-top: 177.77%;
    /* 9:16 */
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.pane-shorts .shorts-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pane-shorts .shorts-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pane-shorts .item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: none;
}

.shorts-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 0, 0, 0.85);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.shorts-play i {
    color: #fff;
    font-size: 28px;
    transition: transform 0.3s ease;
}

/* SEARCH-PROCUT-START */
.search-product {
    padding: 30px 0;
}

.search-product .container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* SEARCH-PROCUT-END */


/* SEARCH RESULTS START */
.search-results {
    padding: 60px 0;
    background: #fdfaf7;
}

.search-results .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.search-section {
    margin-bottom: 40px;
}

.search-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    transition: 0.3s;
}

.search-item:hover {
    border-color: var(--secondary);
}

.search-results span {
    display: block;
    text-align: center;
    color: #777;
    padding: 50px 0;
    font-size: 15px;
}

/* SEARCH RESULTS END */