@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');
@import url('https://fonts.googleapis.com/css2?family=Licorice&display=swap');

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

li {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

:root {
    --primary: #653819;
    --secondary: #d2680b;
}

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

/* 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: 20px;
}

.content-wrapper h2,
.contnet-wrapper h3,
.content-wrapper h4,
.content-wrapper h5,
.content-wrapper h6 {
    margin-bottom: 20px;
}

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

/* CONTENT WRAPPER END */
/*HEADER TOP START*/
.desktop-header-top {
    background: linear-gradient(90deg, #62371c, #cc8f53);
    padding: 10px 5px;
    font-size: 13px;

}

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

.desktop-header-top-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.desktop-header-top-left a {
    color: #eee;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.desktop-header-top-left a:hover {
    color: white;
}

.desktop-header-top-right {
    display: flex;
    gap: 12px;
}

.desktop-header-top-right a i {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #eee;
    font-size: 12px;
    transition: all 0.3s ease;
}

.desktop-header-top-right a i:hover {
    color: white;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

}

/*HEADER TOP END*/
/*HEADER MENÜ START*/

.desktop-header-middle {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    transition: box-shadow .3s ease, padding .3s ease;
}

.desktop-header-middle.scrolled {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.desktop-header-middle .container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.desktop-header-middle-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-header-middle-left img {
    width: 150px;
    height: auto;
    object-fit: cover;
}

.navbar ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

.navbar ul li a {
    color: var(--primary);
    font-weight: bold;
}



/* SEARCH BOX - START */
.desktop-header-middle-right {
    display: flex;
    align-items: center;
    position: relative;
    gap: 6px;
}

.desktop-header-middle-right i {
    cursor: pointer;
    font-size: 18px;
    color: var(--primary);
    transition: color .2s ease, transform .2s ease;
}

.desktop-header-middle-right i:hover {
    color: var(--secondary);
    transform: scale(1.05);
}

.searchBox {
    width: 0;
    overflow: hidden;
    transition: width .3s ease;
}

.searchBox.active {
    width: 190px;
}

.searchBox form {
    display: flex;
}

.searchBox input {
    width: 100%;
    padding: 6px 10px;
    font-size: 14px;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    outline: none;
    background: #fafafa;
    transition: border-color .2s ease, background .2s ease;
}

.searchBox input:focus {
    background: #fff;
    border-color: #111;
}

/* SEARCH BOX - END */
/*HEADER MENÜ END*/
/*MOBİLE HEADER START*/
.mobile-header {
    width: 100%;
    background: #fff;
    position: relative;
    z-index: 1000;
}

.mobile-header-top {
    background: linear-gradient(90deg, #62371c, #cc8f53);
}

.mobile-header-top a {
    color: white;
    font-size: 12px;
}

.mobile-header-top .container {
    display: flex;
    justify-content: center;
    padding: 8px 16px;
    gap: 8px;
}

.mobile-header-middle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
}

.mobile-header-middle img {
    height: 50px;
}

.hamburger {
    background: none;
    border: none;
    font-size: 30px;
    color: var(--primary);
    z-index: 5;
}


.mobile-search {
    display: flex;
    padding: 0 16px 12px;
}

.mobile-search input {
    flex: 1;
    border: 1px solid var(--primary);
    padding: 10px 12px;
    font-size: 14px;
}

.mobile-search button {
    background: var(--primary);
    border: none;
    color: white;
    padding: 0 14px;
    font-size: 16px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(180deg, #62371c, #cc8f53);
    transition: left .4s ease;
    z-index: 2000;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid #eee;
}

.mobile-menu-header img {
    height: 50px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 28px;
    color: white;
}

.mobile-navbar ul {
    list-style: none;
    padding: 16px;
    margin: 0;
}

.mobile-navbar li {
    margin-bottom: 20px;
}

.mobile-navbar a {
    position: relative;
    color: white;
    font-size: 22px;
    text-decoration: none;
    display: inline-block;
    padding-bottom: 6px;
}

.mobile-navbar a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: white;
    opacity: 0.6;
}


/*MOBİLE HEADER END*/
/*SLİDER START*/
.mobileSlider,
.desktopSlider {
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.mobileSlider .container-fluid,
.desktopSlider .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.mobileSlider .swiper,
.desktopSlider .swiper,
.mobileSlider .swiper-wrapper,
.desktopSlider .swiper-wrapper,
.mobileSlider .swiper-slide,
.desktopSlider .swiper-slide {
    width: 100%;
    height: 100%;
}

.mobileSlider .swiper-slide img,
.desktopSlider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mobileSlider .swiper-button-prev,
.mobileSlider .swiper-button-next,
.desktopSlider .swiper-button-prev,
.desktopSlider .swiper-button-next {
    padding: 40px;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(4px);
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.25s ease;
    z-index: 10;
}

.mobileSlider .swiper-button-prev,
.desktopSlider .swiper-button-prev {
    left: 20px;
}

.mobileSlider .swiper-button-next,
.desktopSlider .swiper-button-next {
    right: 20px;
}

.mobileSlider .swiper-button-prev:hover,
.mobileSlider .swiper-button-next:hover,
.desktopSlider .swiper-button-prev:hover,
.desktopSlider .swiper-button-next:hover {
    background: rgba(0, 0, 0, 0.45);
    transform: translateY(-50%) scale(1.08);
}

.mobileSlider .swiper-button-prev::after,
.mobileSlider .swiper-button-next::after,
.desktopSlider .swiper-button-prev::after,
.desktopSlider .swiper-button-next::after {
    font-size: 32px !important;
    font-weight: 500;
    color: white;
}

@media (max-width: 992px) {

    .mobileSlider .swiper-button-prev,
    .mobileSlider .swiper-button-next,
    .desktopSlider .swiper-button-prev,
    .desktopSlider .swiper-button-next {
        padding: 15px;
    }

    .mobileSlider .swiper-button-prev::after,
    .mobileSlider .swiper-button-next::after,
    .desktopSlider .swiper-button-prev::after,
    .desktopSlider .swiper-button-next::after {
        font-size: 14px !important;
    }
}


/*SLİDER END*/
/* TAPE START */
.tape {
    width: 100%;
    overflow: hidden;
    background: #ffc891;
    padding: 24px 0;
    position: relative;
}

.tape-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: tape-scroll 90s linear infinite;
}

.tape-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 80px;
}

.tape-item img {
    width: 140px;
    height: 80px;
    object-fit: contain;
    display: block;
}

.tape:hover .tape-track {
    animation-play-state: paused;
}


@keyframes tape-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media(max-width:992px) {

    .tape {
        padding: 10px 0;
    }

    .tape-item img {
        width: 100px;
    }
}

/* TAPE END */
/*BRANDS START*/
.brands {
    padding: 60px 0;
}

.brand-single {
    position: relative;
}

.brands-top {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.brands-title {
    font-size: 28px;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 5px;
}

.brands-subtitle {
    font-size: 40px;
    color: var(--primary);
    font-weight: 600;
}

.brands .container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    padding-top: 40px;
}

.brands-item {
    width: 400px;
    display: flex;
    flex-direction: column;
}

.brands-item-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.brands-item-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #ff6200, #ff7e00);
    opacity: 0.3;
}

.brands-item-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}


.brands-item-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 16px;
}

.brands-item-subtitle {
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}

.brands-item-text {
    font-size: 15px;
    line-height: 1.6;
    color: #8b5a2b;
}

.brands-item-title,
.brands-item-subtitle,
.brands-item-text {
    position: relative;
    padding-left: 24px;
}

.brands-item-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: calc(100% + 40px);
    background: var(--primary);
}

.brands-btn {
    display: block;
    width: fit-content;
    margin: 40px auto 0;
    background-color: var(--primary);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
}

@media (max-width: 992px) {
    .brands .container {
        flex-direction: column;
        gap: 30px;
    }

    .brands-item {
        max-width: 100%;
        width: calc(100% - 0px);
    }

    .brands-title {
        font-size: 14px;
    }

    .brands-subtitle {
        font-size: 24px;
    }
}


/*BRANDS END*/
/*Sample FORM START*/
.costum-cta {
    color: white;
}

.brand-single .costum-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary);
    padding: 40px;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transform: translateY(25px);
}

.brand-single .costum-cta .left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
}

.brand-single .costum-cta .left .title {
    color: wheat;
    font-size: 18px;
    font-weight: 600;
}

.brand-single .costum-cta .left .subtitle {
    color: white;
    font-size: 28px;
}

.brand-single .costum-cta .right a {
    display: inline-block;
    background-color: #fff;
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity .2s ease;
}

.brand-single .costum-cta .right a:hover {
    opacity: .85;
}

@media (max-width: 992px) {
    .brand-single .costum-cta .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        width: 95%;
    }

    .brand-single .costum-cta .left {
        align-items: center;
    }

    .brand-single .costum-cta .right a {
        width: 100%;
        text-align: center;
    }
}

/*Sample FORM END*/
/*QUOTE START*/
.quote {
    padding-top: 40px;
    background: linear-gradient(135deg, #62371c 0%, #cc8f53 100%);
    margin: 30px 0;
}

.quote .container {
    display: flex;
    justify-content: center;
}

.quote-text {
    text-align: center;
    display: block;
    font-size: 34px;
    line-height: 1.5;
    font-weight: 500;
    color: white;
}

.quote-item-img {
    display: flex;
    align-items: center;
}


.quote-item-img img {
    width: 500px;
    height: auto;
    margin-left: auto;
}

@media(max-width:992px) {
    .quote-item-img img {
        margin: 0 auto;
    }

    .quote-text {
        font-size: 22px;
    }

}


/*QUOTE END*/
/*İCONS START*/
.references {
    padding: 60px 0;
    text-align: center;
}

.references .title {
    font-size: 28px;
    color: var(--secondary);
    font-weight: 600;
}

.references .container {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.references-img {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.references-img img {
    width: 120px;
    height: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.references-img img:hover {
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .references .title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .references-img {
        gap: 15px;
    }

    .references-img img {
        width: 80px;
    }
}

/*İCONS END*/
/*ABOUT START*/
.about {
    padding: 80px 0;
    background-color: #e2dcd6;
}

.about .container {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.about-left {
    align-self: flex-start;
    max-width: 65%;
    position: relative;
}

.about-left::after {
    content: "";
    position: absolute;
    left: -120px;
    top: 100px;
    width: 250px;
    height: 100%;
    background: linear-gradient(0deg, #62371c, #cc8f53);
    z-index: 2;
}


.about-left img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 5;
}

.about-right {
    background-color: white;
    padding: 110px 80px;
    align-self: flex-end;
    max-width: 55%;
    text-align: left;
}

.about-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary);
}

.about-subtitle {
    display: inline-block;
    font-size: 36px;
    font-weight: bold;
    color: var(--primary);
    position: relative;
    z-index: 5;
}

.about-subtitle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 10px;
    background: var(--secondary);
    z-index: -1;
    transform: translateY(-8px);
}


.about-subtitle-2 {
    display: block;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 16px;
    color: var(--primary);
}

.about-text {
    line-height: 1.7;
    color: var(--primary);
}

@media (max-width: 992px) {

    .about {
        padding: 60px 0;
    }

    .about .container {
        gap: 60px;
    }

    .about-left,
    .about-right {
        max-width: 100%;
        align-self: stretch;
    }

    .about-left::after {
        display: none;
    }

    .about-right {
        padding: 40px 24px;
        text-align: center;
    }

    .about-title {
        font-size: 14px;
    }

    .about-subtitle,
    .about-subtitle-2 {
        font-size: 24px;
    }

    .about-subtitle::after {
        height: 6px;
        transform: translateY(-4px);
    }

    .about-text {
        font-size: 15px;
        line-height: 1.6;
    }
}


/*ABOUT END*/
/*PROMOTİON START*/
.promotion {
    display: flex;
    margin-bottom: 100px;
    height: 600px;
}

.promotion-left {
    background: #D6C7B1;
    padding: 40px;
    color: white;
    width: 50%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.promotion-left .promotion-title,
.promotion-left .promotion-title-2,
.promotion-left .promotion-subtitle,
.promotion-left .promotion-subtitle-2 {
    display: block;
}

.promotion-title {
    color: var(--secondary);
    font-weight: 500;
    font-size: 22px;
}

.promotion-title-2 {
    color: var(--secondary);
    font-weight: 500;
    font-size: 22px;
}

.promotion-subtitle {
    color: var(--primary);
    font-size: 36px;
}

.promotion-subtitle-2 {
    color: var(--primary);
    font-size: 36px;
    font-weight: 600;
    position: relative;
    z-index: 10;
    display: inline-block;
}


.promotion-right {
    position: relative;
    display: inline-block;
    text-align: right;
    width: 50%;
    overflow: hidden;
}

.promotion-right::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.promotion-right img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    overflow: hidden;
}

.video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 6;
}

.video-btn-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.circle1 {
    width: 140px;
    height: 140px;
    background-color: var(--primary);
    z-index: 1;
    animation: pulse 2s infinite;
}

.circle2 {
    width: 110px;
    height: 110px;
    background-color: var(--primary);
    z-index: 2;
}

.circle3 {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    z-index: 3;
}

.video-btn-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 25px solid black;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    transform: translate(-50%, -50%);
    z-index: 4;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
}

@media (max-width: 992px) {

    .promotion {
        flex-direction: column;
        height: auto;
        margin-bottom: 60px;
    }

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

    .promotion-left {
        padding: 80px 24px;
        align-items: start;
        text-align: center;
    }

    .promotion-title,
    .promotion-title-2 {
        font-size: 14px;
    }

    .promotion-subtitle,
    .promotion-subtitle-2 {
        font-size: 21px;
    }

    .promotion-right {
        height: 320px;
    }

    .promotion-right img {
        height: 100%;
    }

    .video-btn {
        width: 90px;
        height: 90px;
    }

    .circle1 {
        width: 110px;
        height: 110px;
    }

    .circle2 {
        width: 90px;
        height: 90px;
    }

    .circle3 {
        width: 60px;
        height: 60px;
    }

    .promotion-subtitle-2::after {
        height: 8px;
        bottom: 4px;
    }
}

/*PROMOTİON END*/
/*PRDOCUTS START*/
.products {
    padding: 60px 0;
}

.products-top {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.products-title {
    font-size: 28px;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 5px;
}

.products-subtitle {
    font-size: 40px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
}

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

.products-item {
    grid-column: span 4;
    position: relative;
    overflow: hidden;
}

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

.products-item-text {
    position: absolute;
    top: 30px;
    left: 30px;
    color: #222;
    background: #edc59d;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
}

.products-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
}


.products-item-title {
    font-size: 18px;
    color: white;
    z-index: 5;
    font-weight: 200;
}

.products-item-subtitle {
    font-size: 30px;
    font-weight: 600;
    color: white;
    z-index: 5;
}

.products-item-subtitle-2 {
    font-size: 30px;
    font-weight: 600;
    color: white;
    display: inline-block;
    z-index: 5;
}

.products-item-subtitle-2::after {
    content: "";
    display: block;
    width: 15%;
    height: 5px;
    background-color: #edc59d;
    top: 100%;
    margin-top: 20px;
    z-index: 5;
}


.products-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #62371c, #cc8f53);
    opacity: 0.3;

}

.products-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: black;
    opacity: 0.6;

}

@media (max-width: 992px) {
    .products-item {
        grid-column: span 12;
        height: 400px;
    }

    .products-title {
        font-size: 14px;
    }

    .products-subtitle {
        font-size: 24px;
    }

    .products-item-title {
        font-size: 14px;
    }

    .products-item-subtitle {
        font-size: 24px;
    }

    .products-item-subtitle-2 {
        font-size: 24px;
    }

    .products-item-subtitle-2::after {
        margin-top: 8px;
    }

    .products-item-text {
        top: 15px;
        left: 15px;
        padding: 5px 10px;
    }
}

/*PRODUCTS END*/
/*CTA START*/
.cta {
    background-color: var(--primary);
    padding: 40px 8px;
}

.cta .container {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.cta-title {
    color: wheat;
    font-size: 18px;
    font-weight: 600;
}

.cta-subtitle {
    color: white;
    font-size: 28px;
}

.cta-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-bottomleft-subtitle {
    color: white;
    font-weight: 600;
    font-size: 28px;
    position: relative;
    display: inline-block;
    z-index: 5;
}

.cta-bottomleft-subtitle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background: var(--secondary);
    z-index: -1;
    transform: translateY(-8px);
}

.cta-bottomright-subtitle {
    color: white;
    font-size: 28px;
    position: relative;
    z-index: 5;
}

@media(max-width:992px) {
    .cta-subtitle {
        font-size: 18px;
    }

    .cta-bottomleft-subtitle {
        font-size: 16px;
    }

    .cta-bottomright-subtitle {
        font-size: 16px;
    }

    .cta-bottomleft-subtitle::after {
        transform: none;
    }
}

/*CTA END*/
/*STORY START*/
.story {
    padding: 60px 0;
}

.story-top {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.story-title {
    font-size: 28px;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 5px;
}

.story-subtitle {
    font-size: 40px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 50px;
}

.story .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
}

.story-item {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

.story-item-title {
    color: var(--secondary);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 8px;
}

.story-item-toptitle {
    position: relative;
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 26px;
    position: relative;
    z-index: 5;
}

.story-item-toptitle::after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    background-color: var(--secondary);
    z-index: -1;
    transform: translateY(-15px);
}

.story-item-subtitle {
    position: relative;
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 26px;
    position: relative;
    z-index: 5;
}

.story-item-subtitle::after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    background-color: var(--secondary);
    z-index: -1;
    transform: translateY(-15px);
}

@media(max-width:992px) {
    .story .container {
        grid-template-columns: 1fr;
    }

    .story-title {
        font-size: 14px;
    }

    .story-subtitle {
        font-size: 20px;
    }
}

/*STORY END*/
/*FOOTER START*/
.footer {
    background-color: #edc59d;
    padding: 60px 0;
}

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

.footer-left {
    grid-column: span 3;
}

.footer-left img {
    width: 200px;
    height: auto;
}

.footer-mail {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 15px;
}

.footer-mail-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.footer-mail-text {
    font-size: 16px;
    color: var(--primary);
}

.footer-phone {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 15px;
}

.footer-phone-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.footer-phone-text {
    font-size: 16px;
    color: var(--primary);
}

.footer-right {
    grid-column: span 9;
    display: flex;
    align-items: start;
    gap: 60px;
}

.footer-right a {
    color: var(--primary);
}

.footer-right-content {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.footer-right-address {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 25px;
}

.footer-right-address a {
    color: var(--primary);
}

.footer-title {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    padding-left: 50px;
}

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

.footer-text {
    font-size: 16px;
    color: var(--primary);
}


.footer-right-link {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 25px;
}

.footer-title-2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.footer-right-categorys {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 25px;
}

.footer-title-3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.footer-right-categorys ul li a {
    font-size: 16px;
    color: var(--primary);
}

.footer-right-categorys ul {
    position: relative;
    padding-left: 8px;
}

.footer-right-categorys ul::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 100%;
    background-color: var(--primary);
}


.footer-div {
    padding: 30px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.footer-bottom {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 16px;
    display: flex;
    justify-content: space-between;
}

.footer-bottom a {
    color: var(--primary);
}

.footer-bottom span {
    display: block;
    margin-top: 15px;
    color: var(--primary);
}

.footer-right-slide {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translate(100%, -50%);
    z-index: 9999;
    transition: transform 0.3s ease;
}

.footer-right-slide.active {
    transform: translate(0, -50%);
}

.footer-right-slide a {
    display: inline-block;
    transform: translateX(-25%) rotate(-90deg);
    transform-origin: right center;
    background-color: var(--primary);
    padding: 8px 15px;
    color: #edc59d;
    white-space: nowrap;
}



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

    .footer-bottom>div {
        flex-direction: column;
        gap: 12px;
    }

    .footer-bottom span {
        margin-top: 8px;
    }

    .footer-right {
        display: flex;
        flex-direction: column;
    }

    .footer-left img {
        width: 200px;
        height: 100%;
    }
}

/*FOOTER END*/
/*BREADCRUMB START*/
.breadcrumb {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px;
    color: #fff;
}

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

.breadcrumb .container-fuild {
    position: relative;
    z-index: 1;
    text-align: left;
    margin-left: 10px;
}

.breadcrumb .title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.breadcrumb .links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.breadcrumb .links li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.breadcrumb .links li::after {
    content: "/";
    margin: 0 6px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb .links li:last-child::after {
    display: none;
}

.breadcrumb .links a {
    color: #fff;
    text-decoration: none;
    transition: opacity .2s ease;
}

.breadcrumb .links a:hover {
    opacity: .75;
}

.breadcrumb .links li:last-child {
    opacity: .7;
}

@media (max-width: 768px) {
    .breadcrumb {
        padding: 70px 0 50px;
    }

    .breadcrumb .title {
        font-size: 26px;
    }
}

/*BREADCRUMB END*/
/*CONTACT START*/
.contact-top {
    position: relative;
}

.contact-iframe {
    position: relative;
    width: 100%;
}

.contact-iframe iframe {
    width: 100%;
    height: 500px;
    border: 0;
    display: block;
}

.contact .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    padding: 80px 0;
}

.contact-left {
    width: 45%;
}

.contact-left .title {
    display: block;
    font-size: 34px;
    color: var(--primary);
    margin-bottom: 40px;
}

.contact-left .text {
    color: var(--primary);
    margin-bottom: 30px;

}

.contact-left .info {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 20px;
}

.contact-left .info a {
    color: var(--primary);
}

.contact-right {
    width: 45%;
}

.form-title {
    display: inline-block;
    font-size: 32px;
    font-weight: 600;
    color: var(--primary);
    position: relative;
    margin-bottom: 40px;
}


.form-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    height: 5px;
    background: var(--secondary);
    z-index: -1;
}

.contact-right form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-right input,
.contact-right textarea {
    width: 100%;
    border: 1px solid var(--primary);
    padding: 14px 16px;
    font-size: 14px;
    color: var(--primary);
    background: transparent;
}

.contact-right input::placeholder,
.contact-right textarea::placeholder {
    color: var(--primary);
}

.contact-right input[name="name"],
.contact-right input[name="email"] {
    width: calc(50% - 10px);
}

.contact-right textarea {
    resize: none;
    height: 160px;
}

.contact-right button {
    width: 100%;
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 15px;
    cursor: pointer;
    transition: background .3s ease;
}

@media (max-width: 992px) {

    .contact-top {
        display: flex;
        flex-direction: column;
    }

    .contact-overlay {
        position: static;
        transform: none;
        max-width: 100%;
        padding: 24px;
        margin: 15px 0;
        order: 1;
    }

    .contact-iframe {
        order: 2;
    }

    .contact-iframe iframe {
        height: 320px;
    }


    .contact {
        overflow-x: hidden;
    }

    .contact .container {
        flex-direction: column;
        gap: 60px;
        padding: 60px 16px;
    }

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

    .contact-left span:nth-child(2),
    .contact-left span:nth-child(3) {
        font-size: 26px;
    }

    .contact-left span:nth-child(3)::after {
        height: 6px;
        bottom: 4px;
    }

    .contact-left div {
        max-width: 100%;
        font-size: 15px;
    }

    .form-title {
        font-size: 26px;
        margin-bottom: 24px;
    }

    .form-title::after {
        height: 6px;
        bottom: 4px;
    }

    .contact-right form {
        gap: 16px;
    }

    .contact-right input[name="name"],
    .contact-right input[name="email"] {
        width: 100%;
    }

    .contact-right textarea {
        height: 140px;
    }
}

/*CONTACT END*/
/*SÜRDÜREBİLİRLİK START*/

.sustainability {
    position: relative;
    overflow: visible;
}

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

.sustainability-steps {
    padding: 120px 0;
}

.sustainability-steps .container {
    display: flex;
    flex-direction: column;
}

.step {
    display: flex;
    align-items: center;
    gap: 80px;
}

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

.step-left img {
    width: 600px;
    height: auto;
    object-fit: cover;
}

.step-right {
    max-width: 520px;
}

.step-title {
    display: block;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 12px;
}

.step-subtitle {
    position: relative;
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
}

.step-subtitle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    height: 5px;
    background-color: var(--secondary);
    z-index: -1;
}


.step-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--primary);
}

.sustainability-top {
    text-align: center;
    margin-bottom: 80px;
}

.sustainability-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary);
}

.sustainability-slider {
    position: relative;
    overflow: visible;
}

.sustainability-slider .swiper-slide {
    padding: 40px 0;
}

.testimonial {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.testimonial-left {
    position: relative;
    width: 220px;
    height: 260px;
    background-color: var(--primary);
}

.testimonial-left img {
    position: absolute;
    width: 220px;
    height: 260px;
    object-fit: cover;
    z-index: 1;
}

.testimonial-left::after {
    content: "“";
    position: absolute;
    top: -12px;
    left: -12px;
    width: 56px;
    height: 56px;
    background-color: var(--secondary);
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    z-index: 2;
}


.testimonial-right span {
    display: block;
    font-size: 18px;
    line-height: 1.7;
    color: var(--primary);
    max-width: 628px;
}

.testimonial-user {
    margin-top: 40px;
}

.testimonial-user span:first-child {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.testimonial-user span:last-child {
    font-size: 15px;
    color: var(--secondary);
}

.sustainability-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.sustainability-nav .swiper-button-prev,
.sustainability-nav .swiper-button-next {
    pointer-events: all;
    width: 48px;
    height: 48px;
    background: #edc59d;
    color: #eee;
}

.sustainability-nav .swiper-button-prev {
    left: 150px;
}

.sustainability-nav .swiper-button-next {
    right: 150px;
}

.sustainability-nav .swiper-button-prev::after,
.sustainability-nav .swiper-button-next::after {
    font-size: 16px;
    font-weight: bold;
}

.sustainability-slider .swiper-pagination {
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
}

.sustainability-slider .swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    border-radius: 0;
    background: var(--secondary);
    opacity: 0.5;
}

.sustainability-slider .swiper-pagination-bullet-active {
    background: var(--secondary);
    opacity: 1;
}

@media (max-width: 992px) {
    .sustainability-hero img {
        height: 320px;
    }

    .sustainability-steps {
        padding: 80px 0;
    }

    .sustainability-steps .container {
        gap: 80px;
    }

    .step,
    .step:nth-child(even) {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .step-left img {
        width: 100%;
        height: 260px;
    }

    .step-subtitle {
        font-size: 26px;
    }

    .testimonial {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .testimonial-left img {
        width: 180px;
        height: 220px;
    }

    .testimonial-right span {
        font-size: 16px;
    }

    .sustainability-nav .swiper-button-prev {
        left: 10px;
    }

    .sustainability-nav .swiper-button-next {
        right: 10px;
    }

    .sustainability-title {
        font-size: 11px;
    }

    .sustainability-subtitle {
        font-size: 24px;
    }

    .testimonial-left {
        height: 220px;
    }

    .sustainability-slider .swiper-pagination {
        margin: 15px 0;
        justify-content: center;
    }

}

/*SÜRDÜREBİLİRLİK END*/
/*HAKKIMIZDA START*/
.main-img img {
    width: 100%;
}

.about-detail .flying {
    display: block;
    position: relative;
}

.about-detail .flying img {
    position: absolute;
    right: 10px;
    top: -440px;
}

@media(max-width:1402px) {
    .about-detail .flying img {
        right: 100px;
        top: -240px;
        width: 350px;
    }
}

@media(max-width:718px) {
    .about-detail .flying img {
        right: 10px;
        top: -105px;
        width: 150px;
    }
}

/*İNFORMATİON START*/
.about-detail-information {
    padding: 60px 0;
}

.about-detail-information .container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.about-detail-information-left {
    grid-column: span 6;
    display: flex;
    gap: 15px;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    background-color: #edc59d;
    padding: 30px;
}

.about-detail-information-left-title {
    color: var(--primary);
    font-size: 24px;
}

.about-detail-information-left-subtitle {
    position: relative;
    display: inline-block;
    color: var(--primary);
    font-weight: bold;
    font-size: 24px;
    z-index: 2;
}

.about-detail-information-left-subtitle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 5px;
    background-color: var(--secondary);
    z-index: -1;
}

.about-detail-information-left-text {
    color: var(--primary);
}

.about-detail-information-left-img {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 30px 0;
}

.about-detail-information-left-img-item {
    position: relative;
}

.about-detail-information-left-img-item img {
    width: 150px;
    height: auto;
    display: block;
}

.about-detail-information-left-img-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80px;
    background-color: #e3b284;
}

.about-detail-information-right {
    grid-column: span 6;
    display: flex;
    gap: 15px;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 30px 0;
}

.about-detail-information-right-title {
    color: var(--primary);
    font-size: 24px;
}

.about-detail-information-right-subtitle {
    position: relative;
    display: inline-block;
    color: var(--primary);
    font-weight: bold;
    font-size: 24px;
    z-index: 2;
}

.about-detail-information-right-subtitle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 5px;
    background-color: var(--secondary);
    z-index: -1;
}

.about-detail-information-right img {
    margin: 15px auto;
}

@media (max-width: 992px) {
    .about-detail-information {
        padding: 50px 20px;
    }

    .about-detail-information .container {
        gap: 40px;
    }

    .about-detail-information-left,
    .about-detail-information-right {
        grid-column: span 12;
    }

    .about-detail-information-left {
        padding: 25px;
    }

    .about-detail-information-left-img {
        justify-content: center;
        padding: 25px 0;
    }
}

@media (max-width: 430px) {
    .about-detail-information {
        padding: 40px 15px;
    }

    .about-detail-information .container {
        gap: 25px;
    }

    .about-detail-information-left {
        padding: 15px;
    }

    .about-detail-information-left-title,
    .about-detail-information-left-subtitle,
    .about-detail-information-right-title,
    .about-detail-information-right-subtitle {
        font-size: 18px;
        word-wrap: break-word;
    }

    .about-detail-information-left-text {
        font-size: 14px;
    }

    .about-detail-information-left-img {
        gap: 15px;
        padding: 15px 0;
    }

    .about-detail-information-left-img-item {
        flex: 0 1 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }

    .about-detail-information-left-img-item img {
        width: 100%;
        max-width: 80px;
    }

    .about-detail-information-left-img-item:not(:last-child)::after {
        display: none;
    }
}

/*İNFORMATİON END*/
/*Sample FORM START*/
.costum-cta {
    color: white;
    padding: 30px 0;
}

.about-detail .costum-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary);
    padding: 30px;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.about-detail .costum-cta .left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
}

.about-detail .costum-cta .left .title {
    color: wheat;
    font-size: 18px;
    font-weight: 600;
}

.about-detail .costum-cta .left .subtitle {
    color: white;
    font-size: 28px;
}

.about-detail .costum-cta .right a {
    display: inline-block;
    background-color: #fff;
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity .2s ease;
}

.about-detail .costum-cta .right a:hover {
    opacity: .85;
}

@media (max-width: 992px) {
    .about-detail .costum-cta .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        width: 95%;
    }

    .about-detail .costum-cta .left {
        align-items: center;
    }

    .about-detail .costum-cta .right a {
        width: 100%;
        text-align: center;
    }
}

/*Sample FORM END*/
/*WHO START*/
.about-detail-who {
    position: relative;
    padding: 90px 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
    overflow: hidden;
    align-items: center;
}

.about-detail-who-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}


.about-detail-who-item {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    min-width: 220px;
    padding-left: 42px;
    z-index: 1;
}

.about-detail-who-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 3px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.9);
    transform: rotate(18deg);
    transform-origin: top;
}

.about-detail-who-no {
    font-size: 68px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -1.5px;
    white-space: nowrap;
}

.about-detail-who-text {
    font-size: 15px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.95);
    max-width: 230px;
}

@media (max-width: 992px) {
    .about-detail-who {
        gap: 48px 36px;
        padding: 70px 40px;
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .about-detail-who-item {
        flex: 0 0 calc(50% - 18px);
        max-width: calc(50% - 18px);
    }

    .about-detail-who-no {
        font-size: 48px;
        letter-spacing: -1px;
        margin-bottom: 8px;
    }

    .about-detail-who-text {
        font-size: 13px;
        line-height: 1.4;
        max-width: 190px;
    }
}

@media (max-width: 768px) {
    .about-detail-who {
        padding: 50px 24px;
        gap: 32px;
    }

    .about-detail-who-item {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 34px;
    }

    .about-detail-who-no {
        font-size: 40px;
        margin-bottom: 6px;
    }

    .about-detail-who-text {
        font-size: 14px;
        max-width: 100%;
    }

    .about-detail-who-item::before {
        height: 36px;
    }
}

/*WHO END*/
/*EXPORT START*/
.about-detail-export .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 60px 0;
}

.about-detail-export-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.about-detail-export-title {
    font-size: 38px;
    color: var(--primary);
}

.about-detail-export-subtitle {
    position: relative;
    display: inline-block;
    font-size: 38px;
    color: var(--primary);
    font-weight: bold;
    z-index: 2;
}

.about-detail-export-subtitle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 11px;
    width: 100%;
    height: 5px;
    background-color: var(--secondary);
    z-index: -1;
}

.about-detail-export-text {
    color: var(--primary);
    align-items: start;
    max-width: 750px;
}

@media (max-width: 992px) {
    .about-detail-export .container {
        padding: 50px 30px;
        align-items: start;
    }

    .about-detail-export-top {
        flex-direction: column;
    }

    .about-detail-export-title,
    .about-detail-export-subtitle {
        font-size: 28px;
    }
}

/*EXPORT END*/
/*PROTFOLİO START*/
.about-detail-portfolio .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 60px 0;
}

.about-detail-portfolio-top {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 8px;
}

.about-detail-portfolio-title {
    font-size: 38px;
    color: var(--primary);
}

.about-detail-portfolio-subtitle {
    position: relative;
    display: inline-block;
    font-size: 38px;
    color: var(--primary);
    font-weight: bold;
    z-index: 2;
}

.about-detail-portfolio-subtitle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 11px;
    width: 100%;
    height: 5px;
    background-color: var(--secondary);
    z-index: -1;
}

.about-detail-portfolio-text {
    color: var(--primary);
    align-items: start;
    max-width: 900px;
}

@media (max-width: 992px) {
    .about-detail-portfolio .container {
        padding: 50px 30px;
        align-items: start;
    }

    .about-detail-portfolio-top {
        flex-direction: column;
    }

    .about-detail-portfolio-title,
    .about-detail-portfolio-subtitle {
        font-size: 28px;
    }

}

/*PROTFOLİO END*/
/*MV START*/
.about-detail-mv {
    padding: 60px;
    background-color: #edc59d;
}

.about-detail-mv-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.about-detail-mv-subtitle {
    color: var(--primary);
    font-size: 24px;
    font-weight: bold;
}

.about-detail-mv .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 150px;
}

.about-detail-vision,
.about-detail-mission {
    max-width: 400px;
}

.about-detail-mission-top span {
    color: var(--primary);
    font-size: 38px;
    font-weight: 500;
    position: relative;
    z-index: 3;
}

.about-detail-mission-top span::after {
    content: "";
    position: absolute;
    top: -4px;
    left: -7px;
    width: 30px;
    height: 30px;
    background-color: var(--secondary);
    z-index: -1;
}

.about-detail-mission-text {
    color: var(--primary);
    position: relative;
}

.about-detail-mission-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
}

.about-detail-vision-top span {
    color: var(--primary);
    font-size: 38px;
    font-weight: 500;
    position: relative;
    z-index: 3;
}

.about-detail-vision-top span::after {
    content: "";
    position: absolute;
    top: -4px;
    left: -7px;
    width: 30px;
    height: 30px;
    background-color: var(--secondary);
    z-index: -1;
}

.about-detail-vision-text {
    color: var(--primary);
    position: relative;
}

.about-detail-vision-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
}

@media (max-width: 992px) {
    .about-detail-mv {
        padding: 50px 30px;
    }

    .about-detail-mv .container {
        flex-direction: column;
        gap: 60px;
    }

    .about-detail-vision,
    .about-detail-mission {
        max-width: 100%;
        width: 100%;
    }
}

/*MV END*/
/*MESSAGE START*/
.about-detail-message {
    padding: 60px 0;
    background-color: #eee;
}

.about-detail-message-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 60px;
}

.about-detail-message-subtitle {
    font-size: 24px;
    color: var(--primary);
    font-weight: bold;
}

.about-detail-message-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
}

.about-detail-message-content:nth-of-type(odd) {
    flex-direction: row-reverse;
}

.about-detail-message-content-img {
    position: relative;
}

.about-detail-message-content-img img {
    width: 500px;
    height: auto;
    position: relative;
    z-index: 3;
}

.about-detail-message-content-img::after {
    content: "";
    position: absolute;
    left: -80px;
    top: -120px;
    width: 250px;
    height: 100%;
    background: linear-gradient(0deg, #62371c, #cc8f53);
    z-index: 2;
}

.about-detail-message-content:nth-of-type(odd) .about-detail-message-content-img::after {
    left: auto;
    right: -80px;
    top: 100px;
}


.about-detail-message-content-article {
    max-width: 650px;
    background-color: white;
    padding: 50px;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

.about-detail-message-content-article-toptitle {
    font-size: 14px;
    color: var(--secondary);
    font-weight: 500;
}

.about-detail-message-content-article-title {
    position: relative;
    display: inline-block;
    font-size: 26px;
    color: var(--primary);
    font-weight: bold;
    margin: 6px 0;
    z-index: 1;
}

.about-detail-message-content-article-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 5px;
    background-color: var(--secondary);
    z-index: -1;
}

.about-detail-message-content-article-subtitle {
    font-size: 26px;
    color: var(--primary);
    margin: 6px 0;
}

.about-detail-message-content-article-text {
    color: var(--primary);
    line-height: 1.6;
}

@media (max-width: 1340px) {
    .about-detail-message {
        padding: 50px 15px;
    }

    .about-detail-message-top {
        margin-bottom: 90px;
    }

    .about-detail-message-content {
        flex-direction: column !important;
        gap: 0;
        margin-bottom: 60px;
    }

    .about-detail-message-content:nth-of-type(odd) {
        flex-direction: column !important;
    }

    .about-detail-message-content-img {
        margin-bottom: -50px;
        z-index: 2;
    }

    .about-detail-message-content-img img {
        max-width: 450px;
    }

    .about-detail-message-content-img::after {
        left: -40px;
        top: -80px;
        width: 180px;
    }

    .about-detail-message-content:nth-of-type(odd) .about-detail-message-content-img::after {
        left: -40px;
        right: auto;
        top: -80px;
    }

    .about-detail-message-content-article {
        max-width: 100%;
        padding-top: 80px;
        z-index: 1;
    }
}

@media (max-width: 1340px) {

    .about-detail-message-content-img img {
        max-width: 350px;
    }

    .about-detail-message-content:nth-of-type(odd) .about-detail-message-content-img::after {
        left: -20px;
        top: -20px;
    }

    .about-detail-message-content-img::after {
        left: -20px;
        top: -20px;
    }
}

/*MESSAGE END*/
/*STORY START*/
.about-detail-story {
    position: relative;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #eee;
    gap: 15px;
    z-index: 5;
}

.about-detail-story-subtitle {
    color: white;
    font-size: 24px;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.about-detail-story-subtitle::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -15px;
    width: 120px;
    height: 2px;
    background-color: white;
    transform: translateX(-50%);
}


.about-detail-story-text {
    margin-top: 15px;
    text-align: center;
    max-width: 500px;
    font-size: 24px;
    line-height: 1.7;
    letter-spacing: 0.2px;
}

.about-detail-story .story-logo {
    width: 350px;
    height: auto;
}

.about-detail-story .story-background-img {
    position: absolute;
    z-index: -1;
    height: 520px;
    width: 100%;
    object-fit: cover;
}

/*STORY END*/

/*HAKKIMIZDA END*/
/*MARKALARIMIZ START*/

.tab-content {
    position: relative;
    display: none;
}

.tab-item {
    display: none;
}

.brands-detail {
    padding: 80px 0;
}

.brands-detail-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.brands-detail-top .title {
    color: var(--secondary);
    font-weight: bold;
    font-size: 14px;
}

.brands-detail-top .subtitle {
    color: var(--primary);
    font-weight: bold;
    font-size: 24px;
}

.brands-detail .tab-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.brands-detail .tab-nav .tab-btn {
    background: none;
    border: none;
    color: var(--primary);
    margin-bottom: 30px;
    cursor: pointer;
}

.brands-detail .tab-nav .tab-btn.active {
    border-bottom: 3px solid var(--secondary);
}

.brandSlider .brand-card {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.brandSlider .brand-card>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.brandSlider .brand-card-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 20px 20px 20px 48px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.brandSlider .brand-card-bottom img {
    width: 150px;
    height: auto;
}

.brandSlider .brand-card-bottom .title {
    position: relative;
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding-left: 40px;
}

.brandSlider .brand-card-bottom .title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 2px;
    background-color: var(--primary);
    transform: translateY(-50%);
}

.brand-card-bottom button {
    background: transparent;
    color: var(--primary);
    font-size: 14px;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
}

.brand-card-bottom button i {
    background-color: var(--primary);
    width: 20px;
    height: 20px;
    color: white;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-lock {
    display: flex !important;
}

.brandSlider .swiper-button-prev,
.brandSlider .swiper-button-next {
    width: 25px;
    height: 25px;
    background: #eee;
    color: var(--primary);
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

.brandSlider .swiper-button-prev {
    left: 25px;
}

.brandSlider .swiper-button-next {
    right: 25px;
}

.brandSlider .swiper-button-prev::after,
.brandSlider .swiper-button-next::after {
    font-size: 16px;
}

.tab-content .tab-item-img {
    object-fit: cover;
}

.tab-item-content-top {
    position: relative;
    padding-top: 30px;
}

.tab-item-content-top .top-logo {
    width: 200px;
    height: 100%;
}

.tab-item-content-top .sub-img {
    position: absolute;
    right: 0;
    top: 30px;
}

.tab-item-content-top .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
    max-width: 750px;
}

.tab-item-content-top .toptitle {
    font-size: 24px;
    color: var(--primary);
}

.tab-item-content-top .subtitle {
    font-size: 24px;
    color: var(--primary);
    font-weight: bold;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.tab-item-content-top .subtitle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 8px;
    background-color: var(--secondary);
    z-index: -1;
}

.tab-item-content-top .text {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.tab-item-content-top .left-img {
    position: absolute;
    left: 0;
    top: 180px;
}

.gallery-slider-wrapper {
    position: relative;
    width: 100%;
    padding: 120px 0;
    overflow: visible;
}

.gallerySlider {
    overflow: visible !important;
    position: static;
}

.gallery-slider-wrapper .swiper-button-prev,
.gallery-slider-wrapper .swiper-button-next {
    width: 40px !important;
    height: 40px !important;
    background-color: var(--primary);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}


.gallery-slider-wrapper .swiper-button-prev::after,
.gallery-slider-wrapper .swiper-button-next::after {
    font-size: 12px;
    color: #eee;
}

.gallery-slider-wrapper .swiper-button-prev {
    left: -90px;
}

.gallery-slider-wrapper .swiper-button-next {
    right: -90px;
}

.gallery-slider-wrapper {
    overflow: visible;
}

.gallery-card {
    position: relative;
    overflow: hidden;
}

.video-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.video-icon i {
    color: white;
    font-size: 18px;
}

.tab-item-content-center .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 750px;
    margin-bottom: 60px;
}

.tab-item-content-center .text-box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
    align-self: flex-start;
    overflow: hidden;
}

.tab-item-content-center .toptitle {
    font-size: 24px;
    color: var(--primary);
}

.tab-item-content-center .subtitle {
    font-size: 24px;
    color: var(--primary);
    font-weight: bold;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.tab-item-content-center .subtitle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 8px;
    background-color: var(--secondary);
    z-index: -1;
}

.tab-item-content-center .text {
    color: var(--primary);
}

.tab-item-content-center .left-img {
    position: absolute;
    left: 0;
    bottom: 475px;
}

.tab-item-content-center .right-img {
    display: none;
}

.tab-item-content-bottom .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 750px;
}

.tab-item-content-bottom .text-box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
    align-self: flex-start;
}

.tab-item-content-bottom .toptitle {
    font-size: 24px;
    color: var(--primary);
}

.tab-item-content-bottom .subtitle {
    font-size: 24px;
    color: var(--primary);
    font-weight: bold;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.tab-item-content-bottom .subtitle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 8px;
    background-color: var(--secondary);
    z-index: -1;
}

.tab-item-content-bottom .text {
    color: white;
    background-color: var(--primary);
    padding: 30px;
}

.other-brands {
    padding: 30px 0;
}

.other-brands .container {
    max-width: 750px;
}

.other-brands .toptitle {
    color: var(--primary);
    font-weight: bold;
    font-size: 36px;
}

.other-brands-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 15px;
}

.other-brands-card {
    width: 350px;
    display: flex;
    flex-direction: column;
}

.other-brands-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.other-brands-card-bottom {
    padding: 12px;
    background-color: #ffefe0;
    padding: 15px;
}

.other-brands .title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
}

.other-brands .subtitle {
    font-size: 14px;
    color: var(--primary);
}

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

    .brands-detail .tab-nav {
        gap: 15px;
    }

    .brands-detail .tab-nav .tab-btn {
        font-size: 14px;
    }


    .tab-item-content-top .sub-img {
        opacity: 0.3;
    }

    .tab-item-content-top .left-img {
        opacity: 0.3;
        top: 345px;
    }

    .tab-item-content-center .left-img {
        bottom: 973px;
        opacity: 0.3;
    }

    .gallery-slider-wrapper .swiper-button-prev {
        left: 10px;
    }

    .tab-item-content-center .right-img {
        bottom: 744px;
        opacity: 0.3;
        right: -85px;
        width: 100%;
    }

    .gallery-slider-wrapper .swiper-button-next {
        right: 10px;
    }

    .tab-item-content-center .text-box {
        flex-direction: column;
    }

    .tab-item-content-bottom .text-box {
        flex-direction: column;
    }

    .other-brands-grid {
        flex-direction: column;
    }

    .gallerySlider {
        overflow: hidden !important;
    }
}

/*MARKALARIMIZ END*/
/* SSS START */
.faq {
    padding: 90px 0;
}

.faq .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.faq-content {
    width: 100%;
    max-width: 900px;
}

.faq-content-item {
    border-bottom: 1px solid #eee;
    padding: 24px 0;
    cursor: pointer;
}

.faq-content-item .title {
    position: relative;
    padding-right: 60px;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-content-item .title::after {
    content: "";
    width: 44px;
    height: 44px;
    background: var(--secondary);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.faq-content-item .title::before {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    position: absolute;
    right: 17px;
    top: 50%;
    transform: translateY(-60%) rotate(45deg);
    transition: transform .3s ease;
    z-index: 2;
}

.faq-content-item.active .title::before {
    transform: translateY(-40%) rotate(-135deg);
}


.faq-content-item .text {
    height: 0;
    overflow: hidden;
    transition: height .35s ease, padding .2s ease;
    font-size: 18px;
    line-height: 1.6;
    color: var(--primary);
    padding: 0 30px;
}

.faq-content-item.active .text {
    padding: 30px;
    height: auto !important;
}

@media (max-width: 992px) {

    .faq {
        padding: 60px 0;
    }

    .faq-content {
        max-width: 100%;
    }

    .faq-content-item {
        padding: 20px 0;
    }

    .faq-content-item .title {
        font-size: 20px;
        padding-right: 52px;
        line-height: 1.3;
    }

    .faq-content-item .title::after {
        width: 36px;
        height: 36px;
    }

    .faq-content-item .title::before {
        width: 8px;
        height: 8px;
        right: 14px;
        border-width: 2px;
    }

    .faq-content-item .text {
        font-size: 16px;
        padding: 0 20px;
    }

    .faq-content-item.active .text {
        padding: 20px;
    }
}


/* SSS END */
/* CONTENT WRAPPER START */

.content-wrapper {
    padding: 20px 0px;
    color: var(--primary);
}

.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: 20px;
}

.content-wrapper h2,
.contnet-wrapper h3,
.content-wrapper h4,
.content-wrapper h5,
.content-wrapper h6 {
    margin-bottom: 20px;
}

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

/* CONTENT WRAPPER END */
/* FOOTER STICKY MENU START */

.footer-sticky {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #222;
    position: fixed;
    z-index: 9;
    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(--secondary);
}

@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: white;
    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 white;
    border-radius: 50%;
    opacity: 0.5;
}

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

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

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

.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: #222;
    border-radius: 50%;
    position: relative;
}

/* FOOTER STICKY BUTTON END */
/* CAREER START*/
.career {
    padding: 60px 0;
}

.career .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

@media (min-width: 992px) {
    .career .container {
        flex-direction: row;
    }

    .career-left,
    .career-center,
    .career-right {
        flex: 1;
    }
}

.career-left {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.career-left .toptitle {
    color: var(--secondary);
    font-weight: bold;
    font-size: 14px;
}

.career-left .title {
    color: var(--primary);
    font-size: 24px;
}

.career-left .subtitle {
    color: var(--primary);
    font-size: 24px;
    font-weight: bold;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.career-left .subtitle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 5px;
    background-color: var(--secondary);
    z-index: -1;
}

.career-left .text {
    color: var(--primary);
}

.career-center {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.career-center .title {
    color: var(--primary);
    font-size: 24px;
}

.career-center .subtitle {
    color: var(--primary);
    font-size: 24px;
    font-weight: bold;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.career-center .subtitle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 5px;
    background-color: var(--secondary);
    z-index: -1;
}

.career-center .text {
    color: var(--primary);
}

.career-right {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background-color: var(--primary);
    width: 100%;
}

@media (min-width: 992px) {
    .career-right {
        width: auto;
    }
}

.career-right .title {
    font-size: 14px;
    font-weight: bold;
    color: var(--secondary);
}

.career-right .subtitle {
    font-size: 24px;
    color: white;
    font-weight: bold;
}

.career-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.career-form label {
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 6px;
}

.career-form input,
.career-form textarea,
.career-form select {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border: none;
    border-radius: 2px;
    background-color: white;
    color: var(--primary);
    outline: none;
}

.career-form textarea {
    resize: none;
}

.career-form input::placeholder,
.career-form textarea::placeholder {
    color: #8a8a8a;
}

.career-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%236b3f1d' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    cursor: pointer;
}

.career-form input[type="file"] {
    padding: 8px;
    background-color: white;
    font-size: 13px;
}

.btn-submit {
    margin-top: 20px;
    width: 100%;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    background-color: var(--secondary);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary);
}

/* CAREER END*/
/*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 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #fff;
    padding: 15px 60px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;

}

/*404 END*/
/*DİSTRİBUTOR FORM START*/
.distributor {
    background-color: #f7f8fa;
    padding: 60px 20px;
}

.distributor .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.distributor .title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #111827;
    margin-bottom: 8px;
}

.distributor .subtitle {
    font-size: 18px;
    text-align: center;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.6;
}

.distributor-form {
    background-color: #fff;
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px 0;
    width: 100%;
}

.distributor-form .form-group {
    display: flex;
    flex-direction: column;
}

.distributor-form label {
    font-weight: 600;
    margin-bottom: 6px;
    color: #1f2937;
    font-size: 15px;
}

.distributor-form input,
.distributor-form textarea,
.distributor-form select {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.25s;
    background-color: #fefefe;
}


.distributor-form textarea {
    resize: vertical;
    min-height: 100px;
    grid-column: span 1;
}

.distributor-form select[multiple] {
    height: 140px;
    grid-column: span 1;
}

.distributor-form .item {
    grid-column: span 1;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
}

.distributor-form .item .btn {
    margin: 0;
    width: auto;
}

.distributor-form .btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: var(--primary);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.distributor-form .btn:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .distributor-form {
        padding: 30px 20px;
    }

    .distributor .title {
        font-size: 28px;
    }

    .distributor .subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .distributor-form .item {
        flex-direction: column;
        align-items: stretch;
    }

    .distributor-form .item .btn {
        width: 100%;
    }
}

/*DİSTRİBUTOR FORM START*/
/*Sample FORM START*/
.sample {
    padding: 60px 20px;
}

.sample .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.sample .title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #111827;
    margin-bottom: 8px;
}

.sample .subtitle {
    font-size: 18px;
    text-align: center;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.6;
}

.sample-form {
    background-color: #fff;
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px 0;
    width: 100%;
}

.sample-form .form-group {
    display: flex;
    flex-direction: column;
}

.sample-form label {
    font-weight: 600;
    margin-bottom: 6px;
    color: #1f2937;
    font-size: 15px;
}

.sample-form input,
.sample-form textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.25s;
    background-color: #fefefe;
}

.sample-form input:focus,
.sample-form textarea:focus {
    border-color: var(--primary);
    outline: none;
}

.sample-form textarea {
    resize: vertical;
    min-height: 100px;
}

.sample-form .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.sample-form .checkbox-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 0;
}

.sample-form .checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
    padding: 0;
    border: none;
    border-radius: 0;
}

.sample-form .item {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
}

.sample-form .btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: var(--primary);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.sample-form .btn:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .sample-form {
        padding: 30px 20px;
    }

    .sample .title {
        font-size: 28px;
    }

    .sample .subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .sample-form .item {
        flex-direction: column;
        align-items: stretch;
    }

    .sample-form .item .btn {
        width: 100%;
    }
}

/*Sample FORM END*/
/*DİSTRİBUTOR FORM START*/
.partnership {
    background-color: #f7f8fa;
    padding: 60px 20px;
}

.partnership .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.partnership .title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #111827;
    margin-bottom: 8px;
}

.partnership .subtitle {
    font-size: 18px;
    text-align: center;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.6;
}

.partnership-form {
    background-color: #fff;
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px 0;
    width: 100%;
}

.partnership-form .form-group {
    display: flex;
    flex-direction: column;
}

.partnership-form label {
    font-weight: 600;
    margin-bottom: 6px;
    color: #1f2937;
    font-size: 15px;
}

.partnership-form input,
.partnership-form textarea,
.partnership-form select {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.25s;
    background-color: #fefefe;
}


.partnership-form textarea {
    resize: vertical;
    min-height: 100px;
    grid-column: span 1;
}

.partnership-form select[multiple] {
    height: 140px;
    grid-column: span 1;
}

.partnership-form .item {
    grid-column: span 1;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
}

.partnership-form .item .btn {
    margin: 0;
    width: auto;
}

.partnership-form .btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: var(--primary);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.partnership-form .btn:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .partnership-form {
        padding: 30px 20px;
    }

    .partnership .title {
        font-size: 28px;
    }

    .partnership .subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .partnership-form .item {
        flex-direction: column;
        align-items: stretch;
    }

    .partnership-form .item .btn {
        width: 100%;
    }
}

/*DİSTRİBUTOR FORM START*/
