/* Loader Arkaplanı */
#preloader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: white;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

/* Loader İçerik Konteyneri */
.loader-container {
    text-align: center;
}

/* Logo */
.loader-logo {
    width: 200px; /* Logo boyutu */
    height: auto;
    animation: pulse 1.5s infinite ease-in-out;
}

/* Yüklenme Animasyonu */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

/* Yüzdelik ve Progress Bar */
.progress-container {
    margin-top: 20px;
    text-align: center;
}

/* Yüzde Sayacı */
#progress-text {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

/* Progress Bar (Dolum Çubuğu) */
.progress-bar {
    width: 150px;
    height: 5px;
    background: #ddd;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    width: 0;
    height: 100%;
    background: #cbb180;
    transition: width 0.2s ease;
}
/* Header */
.header {
    background: #fff;
    transition: .3s;
    position: fixed;
    left: 0;
    z-index: 4;
    width: 100%;
}
.header .container-fluid {
    max-width: 100%;
    padding: 0 2.14vw;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1vh 0;
}
/* Logo */
.logo img {
    width: 170px;
}
/* Ana Menü */
.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.menu-list > li { /* Sadece ana menü */
    position: relative;
}

.menu-list > li > a { /* Sadece ana menü bağlantıları */
    text-decoration: none;
    color: black;
    font-weight: 700;
    padding: 10px 15px;
    display: block;
    transition: color 0.3s ease;
    font-size: 16px;
    text-transform: uppercase;
    cursor:pointer;
}

/* Ana Menü Hover */
.menu-list > li:hover > a {
    color: black;
}

.menu-list > li:hover ~ li > a {
    color: #ddd;
}

/* 1. Düzey Alt Menü */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #f8f8f8; /* Farklı arka plan */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    list-style: none;
    z-index: 2;
    border-radius: 5px;
    min-width: 180px;
}

.submenu li {
    position: relative;
}

/* 1. Düzey Alt Menü Stili */
.submenu li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 8px 15px;
    display: block;
    font-size: 14px;
    transition: all 0.3s ease;
}

.submenu li:hover > a {
    background: #bf9f62; /* Hover rengi */
    color: #fff;
}

/* 2. Düzey Alt Menü (Sağa Açılan) */
.submenu .submenu {
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff; /* Farklı arka plan */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-left: 3px solid #bf9f62; /* Sol kenarlık */
    padding: 10px 0;
    display: none;
    min-width: 170px;
}

/* 2. Düzey Alt Menü Stili */
.submenu .submenu li a {
    color: #444;
    font-weight: 500;
    padding: 8px 15px;
    font-size: 13px;
}

.submenu .submenu li:hover > a {
    background: #bf9f62; /* Hover */
    color: #fff;
}

/* Hover ile Açılmasını Sağla */
.menu-list > li:hover > .submenu {
    display: block;
}

.submenu li:hover > .submenu {
    display: block;
}


/* Sağ Kısım */
.right-section {
    gap: 15px;
}

/* Arama Butonu */
.search-btn {
    width: 49px;
    height: 49px;
    background: #bf9f62;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    cursor: pointer;
}

/* Arama Formu */
#searchForm {
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 30vh;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: top 0.5s ease-in-out;
    z-index: 5;
}

#searchForm.active {
    top: 0;
}

.search-input {
    width: 60%;
    padding: 10px;
    border: none;
    border-bottom: 2px solid black;
    font-size: 18px;
    outline: none;
}

/* Kapat Butonu */
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

@media(max-width: 1023px) {
    .main {
        overflow: hidden
    }
}

.homeSlider {
    transition: all 500ms cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    width: 100%;
    height: 100vh;
    border-color: #fff;
    border-width: 0;
    border-style: solid;
    position: relative;
    background:#fff;
}

@media(max-width: 767px) {
    .homeSlider {
        margin-top: 82px;
        height: calc(100vh - 82px)
    }
}

.homeSlider.active {
    border-width: 0 2.14vw 0 2.14vw; /* Sırasıyla: top, right, bottom, left */
}

@media(max-width: 767px) {
    .homeSlider.active {
        border-width: 0
    }
}

.homeSlider .slick-dots {
    transition: .3s;
    position: absolute;
    top: 50%;
    width: 100%;
    max-width: 1838px;
    padding: 0 4.28vw;
    transform: translateY(-50%);
    margin: -15% 4.1vw 0;
    display: flex;
    align-items: center;
    z-index: 3;
    opacity: 0
}

@media only screen and (min-width: 2000px) {
    .homeSlider .slick-dots {
        margin: -12% 4.1vw 0
    }
}

@media(max-width: 1023px) {
    .homeSlider .slick-dots {
        padding: 0 15px;
        margin: -15% 0 0
    }
}

@media(max-width: 767px) {
    .homeSlider .slick-dots {
        margin: -36% 0 0;
        display: none !important
    }
}

.homeSlider .slick-dots.active {
    opacity: 1
}

.homeSlider .slick-dots li {
    list-style-type: none;
    height: 2px;
    display: inline-block;
    margin-right: .5rem
}

.homeSlider .slick-dots li.slick-active button {
    background: #bf9f62
}

.homeSlider .slick-dots li button {
    outline: none;
    padding: 0;
    background: #fff;
    border: none;
    width: 30px;
    height: 1px;
    text-indent: -9999px
}

.homeSlider .arrowBox {
    transition: .3s;
    position: absolute;
    bottom: 9.37vw;
    right: 0;
    padding: 0 4.28vw;
    opacity: 0
}

@media only screen and (min-width: 1024px)and (max-width: 1200px) {
    .homeSlider .arrowBox {
        bottom: 12vw
    }
}

@media(max-width: 1023px) {
    .homeSlider .arrowBox {
        right: initial;
        left: 0;
        bottom: 15vw;
        padding: 0 15px
    }
}

@media(max-width: 767px) {
    .homeSlider .arrowBox {
        padding: 0 !important;
        margin: 40px 0 30px 0;
        bottom: 60%;
        width: 100%;
        transform: translateY(800%);
    }
}

.homeSlider .arrowBox.active {
    opacity: 1
}

.homeSlider .arrowBox span {
    color: #fff;
    margin: 0 1rem;
    min-width: 60px;
    cursor: pointer;
    text-align: left
}

@media(max-width: 767px) {
    .homeSlider .arrowBox span {
        font-size: 13px
    }
}

.homeSlider .arrowBox span.slick-disabled {
    opacity: .7;
    pointer-events: none
}

.homeSlider .arrowBox span.right {
    text-align: right;
    min-width: 150px
}

@media(max-width: 767px) {
    .homeSlider .arrowBox span.right {
        min-width: 90px
    }
}

.homeSlider .arrowBox span:after,
.homeSlider .arrowBox span:before {
    background: #fff;
    width: 100%
}

.homeSlider .listing {
    width: 100%;
    height: 100%
}

.homeSlider .listing .slick-list,
.homeSlider .listing .slick-track {
    width: 100% !important;
    height: 100% !important
}

.homeSlider .slideImg {
    width: 100%;
    height: 100%;
    position: relative
}

.homeSlider .slideImg:before {
    content: "";
    background: #000;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .4;
    pointer-events: none;
    z-index: 1
}

.homeSlider iframe {
    width: 100%;
    height: 100%;
    transform: scale(1.3);
    pointer-events: none;
    border: none
}

@media(max-width: 1023px) {
    .homeSlider iframe {
        transform: scale(2.3)
    }
}

@media(max-width: 767px) {
    .homeSlider iframe {
        transform: scale(1) translateX(-50%);
        min-width: 320vw;
        min-height: 100vw;
        position: absolute;
        left: 50%
    }
}

.homeSlider .capBig {
    transition: .3s;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    color: #fff;
    width: 100%;
    z-index: 2
}

@media(max-width: 767px) {
    .homeSlider .capBig {
        margin-top: 30px
    }
}

.homeSlider .capBig.active {
    opacity: 1
}

.homeSlider .capBig .all {
    padding: 0 3.75vw;
    max-width: 50%;
    margin-top: 1rem
}

@media(max-width: 1023px) {
    .homeSlider .capBig .all {
        max-width: 45%;
        padding: 0
    }
}

@media(max-width: 767px) {
    .homeSlider .capBig .all {
        max-width: 100%
    }
}

.homeSlider .capBig .cap_1 {
    font-family: "Barlow", serif;
    font-size: 3.76vw;
    line-height: 3.82vw;
    padding-bottom: 5px;
    margin-bottom: 1.5vw;
    letter-spacing: -1px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    font-weight: 500;
}

@media(min-width: 2000px) {
    .homeSlider .capBig .cap_1 {
        font-size: 89px;
        line-height: 92px;
        margin-bottom: 1rem
    }
}

@media(max-width: 1023px) {
    .homeSlider .capBig .cap_1 {
        font-size: 5.76vw;
        line-height: 5.82vw;
        margin-bottom: 2.5vw
    }
}

@media(max-width: 767px) {
    .homeSlider .capBig .cap_1 {
        font-size: 8.76vw;
        line-height: 9.82vw;
        margin-bottom: 3.5vw
    }
}

.homeSlider .capBig .cap_2 {
    font-family: "Barlow", serif;
    font-weight:500;
    font-size: 1.23vw;
    line-height: 1.55vw;
    padding-right: 2vw;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis
}

@media(max-width: 1023px) {
    .homeSlider .capBig .cap_2 {
        font-size: 2.23vw;
        line-height: 2.55vw
    }
}

@media(max-width: 767px) {
    .homeSlider .capBig .cap_2 {
        font-size: 4.23vw;
        line-height: 5.55vw
    }
}

.homeSlider .capBig .cap_2 * {
    font-size: 1.23vw;
    line-height: 1.55vw
}

@media(max-width: 1023px) {
    .homeSlider .capBig .cap_2 * {
        font-size: 2.23vw;
        line-height: 2.55vw
    }
}

@media(max-width: 767px) {
    .homeSlider .capBig .cap_2 * {
        font-size: 4.23vw;
        line-height: 5.55vw
    }
}

.homeSlider .scrollMore {
    transition: .3s;
    left: 50%;
    bottom: 50px;
    position: absolute;
    transform: translate(-50%, 0px) rotate(90deg);
    color: #fff;
    font-family: "Barlow", serif;
    font-weight:500;
    font-size: 13px;
    letter-spacing: 4px;
    opacity: 0;
    z-index: 2;
    margin-left: -2.14vw
}

@media(min-width: 2000px) {
    .homeSlider .scrollMore {
        font-size: .8vw
    }
}

@media(max-width: 1023px) {
    .homeSlider .scrollMore {
        bottom: 22px
    }
}

.homeSlider .scrollMore.active {
    opacity: 1
}

.homeSlider .scrollMore:before {
    content: "";
    height: 1px;
    width: 156px;
    background: #fff;
    display: block;
    margin-bottom: 5px
}

@media(max-width: 1023px) {
    .homeSlider .scrollMore:before {
        width: 75px
    }
}

.homeSlider .scrollMore a,
.homeSlider .scrollMore span {
    text-decoration: none;
    color: #fff;
    cursor: pointer
}

.homeSlider .item {
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important
}

.homeSlider .item:nth-child(2) picture img,
.homeSlider .item:nth-child(3) picture img {
    object-fit: initial !important
}

.homeSlider .item picture {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative
}

.homeSlider .item picture img {
    object-fit: cover !important
}

@media(max-width: 767px) {
    .homeSlider .item picture img {
        object-fit: cover !important;
        object-position: top
    }
}

.homeSlider .item:last-child img {
    object-position: right center !important
}
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}


/* Sol Taraf - Resim Kapsayıcısı */
.home-about {
    padding: 65px 0;
}
.home-about .container-fluid {
    max-width: 100%;
    padding: 0 2.14vw;
}
.aboutright {
    padding-left: 35px;
}
.image-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 12px;
    overflow: hidden;
    padding: 10px;
    background: #bf9f62;
}

/* Resim */
.image-wrapper img {
    display: block;
    width: 100%;
    border-radius: 10px;
}

/* Video Butonu */
.video-button {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: black;
    transition: background 0.3s ease;
}

.video-button:hover {
    background: rgba(255, 255, 255, 1);
}

/* Bölüm Başlığı */
.section-title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title span {
    display: inline-block;
    width: 15px;
    height: 2px;
    background: #bf9f62;
}

/* Başlık */
.section-heading {
    font-size: 28px;
    font-weight: 700;
    color: black;
}

/* Açıklama */
.section-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-top: 15px;
}

/* Butonlar */
.button-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.custom-button {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 8px;
    padding: 12px 18px;
    transition: all 0.3s ease;
    font-weight: 500;
    background: white;
    border: 1px solid #ddd;
    color: black;
}

/* Buton Hover */
.custom-button:hover {
    background: #bf9f62;
    color: white;
}

/* İlk Buton Hover'da Kırmızı */
.custom-button:first-child {
    background: white;
}

.custom-button:first-child:hover {
    background: #bf9f62;
    color: white;
}

/* Buton İkonları - Başlangıçta Döndürülmüş */
.custom-button i {
    transition: transform 0.3s ease;
    transform: rotate(-45deg); /* İlk başta döndürülmüş */
}

/* Hover Olunca Ok Normal Haline Dönüyor */
.custom-button:hover i {
    transform: rotate(0deg); /* Normal haline geliyor */
}

/* Footer Genel Ayarlar */
.footer {
    color: white;
    text-align: center;
}
.footer .container-fluid{
    max-width: 100%;
    padding: 0 2.14vw;
}
.footer-inner p {
    margin: 0;
}
.footer-inner {
    background: #111;
    padding: 20px;
}

/* Footer Logo */
.footer-logo {
    width: 200px;
    margin-bottom: 15px;
}

/* Footer Adres */
.footer-address {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 20px;
}

/* Sosyal Medya İkonları */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid white;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: white;
    color: #111;
}
.fixedRight {
    transition: 0.5s;
    position: fixed;
    top: 50%;
    margin-top: -7%;
    z-index: 999;
    cursor: pointer;
    width: 100%;
    right: -377px;
    max-width: 428px;
}
.fixedRight .titleBox {
    transition: 0.5s;
}
@media (min-width:1200px) {
    .fixedRight .titleBox {
        opacity: 1;
        position: relative;
        right: 0px;
        top: 0;
    }
}
.fixedRight .titleBox.efect {
    right: 0;
    top: 0;
    opacity: 1;
}
@media (max-width:767px) {
    .fixedRight {
        margin-top: -15%;
        max-width: 100%;
        height: 200px;
    }
}
@media (max-width:767px) {
    .fixedRight {
        left: calc(100% - 45px);
        right: initial;
    }
}
.fixedRight.active {
    transition: 0.5s;
    right: 0;
    width: 100%;
}
@media (max-width:767px) {
    .fixedRight.active {
        left: 3px;
    }
}
.fixedRight .titleBox {
    transition: 0.5s;
    background: #bf9f62;
    width: 51px;
    height: 245px;
    float: left;
    position: relative;
}
@media (max-width:767px) {
    .fixedRight .titleBox {
        width: 45px;
        height: 275px;
    }
}
.fixedRight .title {
    transform: rotate(-90deg) translateX(5px);
    width: 190px;
    position: absolute;
    right: -72px;
    margin: 0;
    color: #fff;
    top: 50%;
    font-size: 18px;
    letter-spacing: 1px;
    text-align: center;
    white-space: nowrap;
    font-family: "Barlow", serif;
}
@media (max-width:767px) {
    .fixedRight .title {
        font-size: 14px;
        right: -74px;
        transform: rotate(-90deg) translateX(-4px);
    }
}

.fixedRight.passive {
    transition: 0.5s;
    width: 51px;
}
.fixedRight .formBox {
    float: left;
    width: 377px;
    background: #111;
    right: 0;
    position: relative;
    top: -90px; /*height: 433px;*/
    padding: 37px;
    height: auto;
}
@media (max-width:767px) {
    .fixedRight .formBox {
        width: calc(100% - 48px);
        padding: 35px 25px;
        top: -120px;
    }
}
.fixedRight .formBox .closes {
    position: absolute;
    right: 20px;
    top: 10px;
}
.fixedRight .formBox .form-group {
    margin-bottom: 15px;
}
.fixedRight .formBox .form-group input[type="text"],
.fixedRight .formBox .form-group input[type="tel"],
.fixedRight .formBox .form-group input[type="email"] {
    width: 100%;
    background: transparent;
    color: #fff;
    border-bottom: 1px solid #fff;
    padding: 10px !important;
    font-size: 14px;
}
.fixedRight .formBox .form-group input::placeholder{
    color:#fff;
}
.fixedRight label {
    color: #fff;
    font-size: 12px;
    line-height: 15px;
}
.custombtn {
    background: #111;
    color: #fff;
    padding: 7px 20px;
    border-radius: 5px;
    font-size: 14px;
}
span.closes i {
    color: #fff;
}
/* WhatsApp Butonu */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    z-index:999;
}
.fixedRight span {
    font-size: 14px;
    font-weight: 600;
}
/* Hover Efekti */
.whatsapp-button:hover {
    background-color: #1eb253;
    transform: scale(1.15); /* Biraz daha büyüsün */
}
.home-contact {
    border-top: 5px solid #111;
    padding-top: 25px;
}
/* Hover'da ikon rengi değişmesin */
.whatsapp-button:hover i {
    color: white !important;
}
.home-contact .container-fluid {
    max-width: 100%;
    padding: 0 2.14vw;
}
.home-contact-left {
    background: #fff;
    padding: 1.75vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.home-contact-left h5 {
    text-transform: uppercase;
    font-family: "Barlow", serif;
    font-size: 21px;
    margin-bottom: 1.5rem;
    font-weight: 700;
}
.home-contact-left p {
    margin-bottom: 1.5rem;
    font-size: 18px;
    font-weight: 400;
}
.home-contact-left ul {
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.home-contact-left ul li {
    font-size: 18px;
    font-weight: 500;
}
.home-contact-left ul li span {
    display: block;
}
.home-contact-left ul li span a {
    color: #000;
    font-size: 18px;
    font-weight: 600;
}
/* Popup Contact Form İçeriği */
#popup-contact-form .modal-content {
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Başlık */
#popup-contact-form .modal-title {
    font-weight: 600;
    color: #333;
}

/* Açıklama */
#popup-contact-form .modal-body p {
    font-size: 14px;
    color: #666;
}

/* Input ve Textarea */
#popup-contact-form .form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 14px;
}

/* Submit Butonu */
#popup-contact-form .btn-success {
    background-color: #28a745;
    border: none;
    font-size: 16px;
    padding: 10px;
    border-radius: 8px;
}

/* Submit Hover */
#popup-contact-form .btn-success:hover {
    background-color: #218838;
}
.modal-content {
    padding: 15px;
}
.cbtn {
    display: block;
    color: #111;
    font-weight: 700;
    margin-top: 15px;
}
.cbtn:hover {
    color: #bf9f62;
}

.home-product .imgGallery {
    display: flex;
    align-items: flex-start;
    outline: none !important
}

@media(max-width: 1023px) {
    .home-product .imgGallery {
        flex-wrap: wrap
    }
}

.home-product .imgGallery a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden
}

.home-product .imgGallery a:after {
    display: none !important;
    transition: .4s;
    content: "";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #e52923;
    font-size: 1.8vw;
    background: #fff;
    width: 4vw;
    height: 4vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0;
    margin: -20px 0
}

.home-product .imgGallery a:hover:after {
    margin: 0;
    opacity: 1
}

.home-product .imgGallery * {
    outline: none !important
}

.home-product .imgGallery .proMiniList {
    width: 6.15vw;
    min-width: 95px
}

@media(max-width: 1023px) {
    .home-product .imgGallery .proMiniList {
        min-width: initial;
        width: 100%;
        order: 2;
        padding: 0 10vw
    }
}

.home-product .imgGallery .proMiniList .slick-list {
    padding-right: 1vw
}

@media(max-width: 1023px) {
    .home-product .imgGallery .proMiniList .slick-list {
        padding: 2vw 0 0 0
    }
}

.home-product .imgGallery .proMiniList .miniImg {
    transition: .3s;
    width: 100%;
    height: 3.26vw;
    border: 1px solid #d9d9d9;
    margin-bottom: 20px;
    cursor: pointer;
    min-height: 61px
}

@media(max-width: 1023px) {
    .home-product .imgGallery .proMiniList .miniImg {
        height: 10vw;
        margin: 0 5px
    }
}

.home-product .imgGallery .proMiniList .miniImg.slick-current {
    background: #d9d9d9
}

.home-product .imgGallery .proMiniList .miniImg.slick-current picture:after {
    width: 28px
}

@media(max-width: 1023px) {
    .home-product .imgGallery .proMiniList .miniImg.slick-current picture:after {
        height: 18px
    }
}

.home-product .imgGallery .proMiniList .miniImg picture {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

@media(max-width: 1023px) {
    .home-product .imgGallery .proMiniList .miniImg picture {
        padding: 10px
    }
}

.home-product .imgGallery .proMiniList .miniImg picture:after {
    transition: .4s;
    content: "";
    width: 0;
    height: 2px;
    background: #000;
    position: absolute;
    right: -14px
}

@media(max-width: 1023px) {
    .home-product .imgGallery .proMiniList .miniImg picture:after {
        width: 1px !important;
        height: 0;
        right: 50%;
        transform: translateX(-50%);
        top: -12px
    }
}

.home-product .imgGallery .proMiniList .miniImg picture img {
    max-width: 100%;
    max-height: 100%
}

.home-product .imgGallery .proImg {
    width: calc(100% - 6.15vw);
    padding-left: 15px;
    height: 30vw;
    overflow: hidden
}

@media(max-width: 1023px) {
    .home-product .imgGallery .proImg {
        order: 1;
        width: 100%;
        max-height: initial;
        padding: 0;
        height: 315px;
        margin-bottom: 40px
    }
}

.home-product .imgGallery .proImg .slick-track,
.home-product .imgGallery .proImg .slick-list,
.home-product .imgGallery .proImg .slider-for {
    width: 100%;
    height: 100%
}

.home-product .imgGallery .proImg .img {
    width: 100%;
    height: 100%
}

.home-product .imgGallery .proImg .img picture {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center
}

@media(max-width: 1023px) {
    .home-product .imgGallery .proImg .img picture {
        align-items: center
    }
}

.home-product .imgGallery .proImg .img picture img {
    transition: .3s;
    max-width: 100%;
    max-height: 100%
}
.home-product .container-fluid {
    max-width: 100%;
    padding: 0 2.14vw;
}
.home-product {
    background: #f0f0f0;
}

.home-product .proDetailBox .item .all {
    width: 100%;
    background: #000;
    padding: 2.14vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap
}

@media(max-width: 1023px) {
    .home-product .proDetailBox .item .all {
        padding: 30px
    }
}

.home-product .proDetailBox .item a {
    transition: .3s;
    display: block;
    color: #fff;
    text-decoration: none;
    background: #000;
    padding: 2.14vw
}

@media(max-width: 1023px) {
    .home-product .proDetailBox .item a {
        padding: 30px
    }
}

.home-product .proDetailBox .item a:hover {
    background: #a6a6a6
}

.home-product .proDetailBox .item a .all {
    padding: 0;
    background: transparent
}

.home-product .proDetailBox .item a .items {
    width: 100%;
    justify-content: flex-start
}

.home-product .proDetailBox .item a img {
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-content: center;
    justify-content: center;
    padding: 0 .8vw
}

.home-product .proDetailBox .item .items {
    width: 50%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between
}

@media(max-width: 1023px) {
    .home-product .proDetailBox .item .items {
        width: 100%;
        margin: 15px 0
    }
}

.home-product .proDetailBox .item .items .flex {
    display: flex
}

.home-product .proDetailBox .item .items img {
    width: 3.21vw;
    height: 3.21vw;
    margin-right: 1rem
}

@media(max-width: 1023px) {
    .home-product .proDetailBox .item .items img {
        width: 6.21vw;
        height: 6.21vw
    }
}

@media(max-width: 767px) {
    .home-product .proDetailBox .item .items img {
        min-width: 10.21vw;
        min-height: 10.21vw
    }
}

.home-product .proDetailBox .item .items .cont {
    font-size: 1.07vw;
    line-height: 1.5vw
}

@media(max-width: 1023px) {
    .home-product .proDetailBox .item .items .cont {
        font-size: 16px;
        line-height: 22px;
        letter-spacing: .5px
    }
}

.home-product .proDetailBox .item .items .cont strong {
    letter-spacing: .5px;
    display: block;
    font-weight: 600;
    font-family:  "Barlow", serif;
    text-transform: uppercase;
    color: #fff;
}

@media(max-width: 1023px) {
    .home-product .proDetailBox .item .items .cont strong {
        margin-bottom: 5px
    }
}

.home-product .proDetailBox .item .items .cont p {
    margin-bottom: .5rem
}

.home-product .proDetailBox .item .items .cont p:last-child {
    margin-bottom: 0
}

.home-product .productContent {
    padding-top: 4.8vw
}

@media(max-width: 1023px) {
    .home-product .productContent {
        padding-top: 6vw
    }
    .home-product .productContent .pageTitle {
        text-align: center
    }
}

.home-product .pageContent p {
    font-size: .96vw;
    line-height: 1.71vw;
    margin-bottom: 1.2vw
}

@media only screen and (min-width: 1024px)and (max-width: 1500px) {
    .home-product .pageContent p {
        font-size: 1.12vw;
        line-height: 1.82vw
    }
}

@media(max-width: 1023px) {
    .home-product .pageContent p {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 1rem
    }
}

.home-product .productSize .title {
    font-family:  "Barlow", serif;
    text-transform: uppercase;
    font-size: 1.07vw;
    line-height: 1.5vw;
    margin-bottom: 1vw
}

@media(max-width: 1023px) {
    .home-product .productSize .title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 15px
    }
}
.pSticky {
    position: sticky;
    top: 100px;
    padding-top: 65px;
}
.pageTitle h2 {
    font-size: 21px;
    font-weight: 600;
}
.pageTitle h1 {
    font-size: 34px;
    margin-top: 10px;
}
.home-product .proDetailBox .item {
    color: #fff;
    margin-bottom: 1.6vw;
}
.proDetailBox.mbVar {
    margin-top: 35px;
}
.shareAndBack {
    display: flex;
    align-content: center;
    justify-content: space-between;
    margin-top: 3.05vw;
    padding-top: 3.05vw;
    border-top: 1px solid #cbcbcb;
    padding-bottom: 65px;
}
.shared {
    display: flex;
    align-items: center;
}
.shared span {
    display: block;
    font-size: 15px;
    line-height: 15px;
    margin-right: 1rem;
    font-family:  "Barlow", serif;
}
.shared ul {
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
}
.shared ul li {
    display: inline-block;
    list-style-type: none;
    margin: 0 4px;
}
.shared ul li a {
    transition: .2s;
    width: 2.4651661308vw;
    height: 2.4651661308vw;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.1789924973vw;
}
.sharewhatsapp {
    background: #29a628;
}

.sharefacebook {
    background: #2d4373;
}

.shareinstagram {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.shareyoutube {
    background: #FF0000; /* YouTube'un orijinal rengi */
}

.shared ul li a:hover {
    background: #000;
}
.sayfaTitle h4 {
    font-size: 42px;
    font-weight: 600;
}
.sayfaTitle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 65px;
}
.tablediv table tr td {
    font-size: 16px;
    font-weight: 500;
}
.referanslar {
    padding: 0 0 65px 0;
    text-align: center;
}

.referanslar .section-title {
    text-transform: uppercase;
    font-size: 28px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.referanslar .main-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.referanslar .divider {
    width: 120px;
    height: 3px;
    background: #bf9f62;
    margin: 10px auto 30px;
}

.referans-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.referans-slider .swiper-slide img {
    max-height: 60px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease-in-out;
}

.referans-slider .swiper-slide img:hover {
    opacity: 1;
}
/* Swiper Pagination (Bullet) */
/* Pagination'ı resimlerin altına almak için */
.swiper-pagination {
    position: relative;
    margin-top: 15px;
}

.swiper-pagination-bullet {
    background: black;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background: #bf9f62;
    opacity: 1;
}
@media (max-width: 1024px) {
    header.header {
        display: none;
    }
    .homeSlider {
        margin-top: 0 !important;
        height: 70vh !important;
    }
    .homeSlider .capBig {
        top: 35% !important;
    }
    .homeSlider .capBig .cap_1 {
        font-size: 11.76vw !important;
        line-height: 13.82vw !important;
        margin-bottom: 3.5vw !important;
    }
    .pSticky {
        position: unset;
        top: 0;
        padding-top: 5px;
    }
    .home-contact-left ul {
        grid-template-columns: repeat(1, 1fr);
    }
    .pageTitle h2 {
        font-size: 34px;
        margin-top: 10px;
        line-height: 44px;
    }
    .shared ul li a {
        transition: .2s;
        width: 10.465166vw;
        height: 10.465166vw;
        background: #929292;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        text-decoration: none;
        font-size: 5.178992vw;
    }
    .aboutright {
        padding: 15px;
    }
    .home-map iframe {
        height: 350px !important;
    }
}
.mobile-header {
    display: none; /* Bilgisayarda gizli */
    background: #fff;
    padding: 15px 20px;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.mobile-header img {
    max-height: 65px; /* Logo büyütüldü */
}

.mobile-header .mobile-right-icons {
    display: flex;
    gap: 25px; /* Boşluk artırıldı */
}
.mobile-contact-button {
    text-decoration: none;
    color: #111;
    font-size: 18px;
    font-weight: 600;
    padding-top: 1px;
}
.mobile-contact-button a {
    text-decoration: none;
    color: black; /* Mavi yerine siyah */
    font-weight: 600;
    font-size: 16px;
}

.mobile-menu-button {
    font-size: 30px; /* Menü butonu büyütüldü */
    background: none;
    border: none;
    cursor: pointer;
    color: black; /* Siyah yapıldı */
    transition: transform 0.3s ease;
}

.mobile-menu-button:active {
    transform: scale(0.8); /* Tıklama animasyonu */
}

/* Mobil Menü */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 1000;
    transition: right 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    padding: 10px 0;
}

.mobile-menu .mobile-menu-header img {
    max-height: 55px;
}

.mobile-close-menu {
    font-size: 30px;
    cursor: pointer;
    border: none;
    background: none;
    transition: transform 0.3s ease;
}

.mobile-close-menu:hover {
    transform: rotate(90deg); /* Kapanma butonu hover efekti */
}

.mobile-menu-nav {
    width: 100%;
    text-align: center;
    padding: 100px 0;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    margin: 20px 0; /* Menü elemanları arası boşluk artırıldı */
}

.mobile-menu-list a {
    text-decoration: none;
    color: #333;
    font-size: 22px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block; /* Alt alta dizmek için */
}

.mobile-menu-list a:hover {
    color: #bf9f62; /* Hover efekti */
}
.mobile-bottom-contact>div {
    font-size: 18px;
    font-weight: 600;
}
/* Menü Açılış Animasyonu */
.mobile-menu.active .mobile-menu-list {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-bottom-contact {
    position: absolute;
    bottom: 30px;
    text-align: center;
}

.mobile-bottom-contact .mobile-phone-icon {
    font-size: 22px;
    margin-right: 5px;
    color: #bf9f62;
}

.mobile-bottom-contact a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}
/* Dil Menüsü */
.langmenu {
    position: relative;
    display: inline-block;
}

.langmenu-button {
    background: #f8f9fa;
    border: 1px solid #ccc;
    padding: 8px 16px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.langmenu-button i {
    transition: transform 0.3s ease;
}

/* Menü Açıkken İkon Dönsün */
.langmenu.active .langmenu-button i {
    transform: rotate(180deg);
}

/* Açılan Menü */
.langmenu-list {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
    width: 120px;
    display: none;
    transition: all 0.3s ease;
}

/* Menü Açıkken Göster */
.langmenu.active .langmenu-list {
    display: block;
}

.langmenu-item {
    padding: 5px 10px;
    text-decoration: none;
    color: #111;
    display: block;
    transition: background 0.2sease;
    font-size: 18px;
    font-weight: 500;
}

.langmenu-item:hover {
    background: #f0f0f0;
}
.pagesinner {
    background: #fff;
    color: #111;
    text-align: center;
    padding: 0 65px 65px 65px;
    margin-bottom: 50px;
}
.pagesinner h2 {
    padding: 10px;
    font-size: 23px;
    font-weight: 600;
}
.hline {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.hline::after {
    content: "";
    display: block;
    width: 50px; /* Çizginin genişliğini isteğe bağlı ayarlayabilirsin */
    height: 3px; /* Çizginin kalınlığı */
    background-color: #bf9f62;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.pagestitles {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 65px 0;
    font-size: 32px;
    font-weight: 500;
}
.photogallery-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Sütun */
    gap: 15px;
    padding: 20px;
}

.pitem a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.pitem img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease;
}

.pitem a:hover img {
    transform: scale(1.1); /* Hover Efekti */
    opacity: 0.8;
}

/* Mobil ve Tablet İçin 2 Sütun */
@media (max-width: 768px) {
    .photogallery-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Sadece mobil ve tablette göster */
@media (max-width: 1024px) {
    .mobile-header {
        display: flex;
    }
    .pagesinner {
        background: #000;
        color: #fff;
        text-align: center;
        padding: 15px;
        margin-bottom: 50px;
    }
    .pagestitles {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 35px 0;
        font-size: 26px;
        font-weight: 500;
    }
    .pagesinner img {
        width: 100%;
        margin: 15px 0;
    }
}