
:root {
    --primary-color: #cca374;
    --secondary-color: #022458;
    --color-white: #fff;
    --color-dark: #000000;}

/* Solda sağa doğru genişleyen çizgi animasyonu */


.left-line{
    height: 4px;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    margin-left: -70% !important;
    width: 0; /* Başlangıçta genişlik 0 */
    transition: width 2s ease-out; /* Smooth geçiş için */
    overflow: hidden; /* Taşmaları gizle */
    display: block; /* Block element olarak göster */
}

.right-line{
    height: 3px;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    margin-right: -70% !important;
    width: 0; /* Başlangıçta genişlik 0 */
    transition: width 2s ease-out; /* Smooth geçiş için */
    overflow: hidden; /* Taşmaları gizle */
    display: block; /* Block element olarak göster */
}

/* Line animasyonu için class */
.left-line.animate-line {
    width: 80% !important;
}

.right-line.animate-line {
    width: 80% !important;
}

@keyframes expandLineLeft {
    from {
        width: 0;
    }
    to {
        width: 80%;
    }
}
@keyframes expandLineRight {
    from {
        width: 0;
    }
    to {
        width: 80%;
    }
}

.gold-text{color: var(--primary-color);}
html {
    overflow-x: hidden;
    width: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'lato', sans-serif;
    background-color: #fff;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    letter-spacing: 1px;
}

h2{
    font-family: 'the-seasons', sans-serif;
    font-size: 2rem;
}

.projeicon img {
    filter: brightness(0) saturate(100%) invert(75%) sepia(27%) saturate(452%) hue-rotate(344deg) brightness(89%) contrast(87%);
}

.projeicon img:hover {
    filter: brightness(0) saturate(100%) invert(12%) sepia(40%) saturate(3256%) hue-rotate(203deg) brightness(91%) contrast(101%);
}

#footericon {
    position: relative;
    z-index: 1;
  }
  
  .iconbgc::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: contain; /* gerekirse cover */
    opacity: 0.05; /* sadece arka planı etkiler */
    pointer-events: none;
    z-index: -1;
  }
  
    

#footericon::after {
    content: "";

    background-image: url(upload/iconbg.svg);
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    opacity: 0.05;   /* %5 */

}


.full-height{
    height: 100vh;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
}
.height-50{
    height: 50vh;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}
.height-75{
    height: 70vh;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.didot{
    font-family: 'aw-conqueror-didot', serif;
    font-weight: 400;
}
.lato{
    font-family: 'lato', serif;
    font-family: lato, sans-serif;
font-weight: 300;
font-style: normal;
}

.slogan-animation{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    height: 100%;
    width: 100%;
    overflow: hidden;
}



.blocktitle {
    font-size: 1.4rem;
}
.h-70{
    height: 70vh !important;
}
.h-50{
    height: 50vh !important;
}
.h-30{
    height: 30vh !important;
}

.twobox{
background-attachment: fixed;   
}
/* Lazy loading stilleri */
.lazy-bg {
    background-image: none !important;
    transition: background-image 0.3s ease-in-out;
}

.hero-image.lazy-bg {
    min-height: 200px;
    background-color: #f0f0f0;
}

/* Text blend animasyon stilleri */
.textblend {
    display: flex;
    justify-content: start;
    align-items: start;
    height: 100%;
    font-size: calc(10px + 4vw);
    color: var(--color-white);
    animation: fadeInText 1s 1s ease-out forwards;
    opacity: 0;
    font-size: 3rem;
    z-index: 9;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}


.textblend2 {
    font-size: 2rem;
    color: white;
    font-family:'great-vibes', sans-serif;
    animation: fadeInText2 1s 1s ease-out forwards;
    transform: skewX(-12deg);
    font-size: 3rem;
    margin-top: -20px;
}

@keyframes fadeInText {
    100% {
        opacity: 1;
    }
}
@keyframes fadeInText2 {
    100% {
        opacity: 1;
    }
}



.lazy-video {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.lazy-video[src] {
    opacity: 1;
}

/* Video arkaplan stilleri */
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Container-2 iÃ§indeki video arka plan iÃ§in Ã¶zel stiller */
.container-2 .background-video {
    z-index: 1;
}

.container-2 .slogan-animation {
    z-index: 999 !important;
    position: absolute !important;
    top: 50% !important;
    left: 5% !important;
    transform: translateY(-50%) !important;
    width: auto !important;
    height: auto !important;
    pointer-events: auto !important;
}

.container-2 .slogan-text {
    text-align: left !important;
    padding-left: 0 !important;
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9) !important;
    font-weight: bold !important;
}

/* Video container iÃ§in relative positioning */
.twobox .row.position-relative {
    position: relative !important;
}

/* Video Ã¼zerindeki pin'ler iÃ§in stiller */
.video-pins {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
    display: block;
}

.pin {
    position: absolute;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0);
    display: block;
}

.pin:hover {
    transform: scale(1.2);
    z-index: 20;
}

.pin-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border: 3px solid var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}


/* Pin'ler gÃ¶rÃ¼nÃ¼r olduÄŸunda */
.pin.show {
    opacity: 1 !important;
    transform: scale(1) !important;
    animation: pinBounce 0.6s ease-out;
    display: block !important;
}

@keyframes pinBounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}


.pin-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0.7;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.7;
    }
}

/* Pin pozisyonlarÄ± */
.pin-1 {
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
}

.pin-2 {
    top: 45%;
    left: 25%;
    position: absolute;
}

.pin-3 {
    top: 60%;
    left: 75%;
}

.pin-4 {
    top: 75%;
    left: 40%;
}

/* Pin tooltip'leri iÃ§in Ã¶zel stiller */
.pin[data-tooltip]:before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--color-white);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: normal;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    max-width: 200px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    white-space: break-spaces;
    margin-bottom: 10px;
}

.pin[data-tooltip]:after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--secondary-color);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    margin-bottom: 4px;
}

.pin[data-tooltip]:hover:before,
.pin[data-tooltip]:hover:after {
    opacity: 1;
    visibility: visible;
}

.ivvideo {
    position: relative;
    overflow: hidden;
}
.w75{
    width: 75%;
}

.color-white {
    color: var(--color-white);
}
.color-dark {
    color: var(--color-dark);
}
.color-primary {
    color: var(--primary-color);
}

.right-sidebar-open-content{
    font-family: "the-seasons", serif;
}
.font-ita{
    font-family: "great-vibes", sans-serif;

}
.font2{
    font-size: 1.5rem;
}

.hcolor a:hover{
    color: var(--secondary-color) !important;
}

/* Ana sidebar container */
.right-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 25%;
    height: 100vh;
    z-index: 99999;
    transition: transform 0.8s ease-in-out;
    transform: translateX(100%);
    overflow: visible;
}

/* Container main'i sidebar geniÅŸliÄŸi kadar sola kaydÄ±r */
.container-main {
    margin-right: 0;
    transition: margin-right 0.8s ease-in-out;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}



/* Sidebar açıkken container'ı sola kaydır */
.right-sidebar.opened ~ .container-main {
    margin-right: 25%;
}

/* Mobile sidebar açıkken container'ı sola kaydır */
#mobile-sidebar.opened ~ .container-main {
    margin-right: 25%;
}

/* Sidebar kapalÄ±yken container'Ä± geri getir */
.right-sidebar.closed ~ .container-main {
    margin-right: 0;
}

/* Mobile sidebar kapalıyken container'ı geri getir */
#mobile-sidebar.closed ~ .container-main {
    margin-right: 0;
}

/* #twot section için sidebar kaydırma */
.right-sidebar.opened ~ #twot .container-main {
    margin-right: 25%;
}

#mobile-sidebar.opened ~ #twot .container-main {
    margin-right: 25%;
}

.right-sidebar.closed ~ #twot .container-main {
    margin-right: 0;
}

#mobile-sidebar.closed ~ #twot .container-main {
    margin-right: 0;
}

/* Kaydir div'i iÃ§in sidebar durumuna gÃ¶re geniÅŸlik ve konum ayarÄ± */
.kaydir {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); /* yumuÅŸak ve etkileyici animasyon */
    margin: 0 auto; /* VarsayÄ±lan olarak ortala */
    transform-origin: left center; /* Sol taraftan dÃ¶nÃ¼ÅŸÃ¼m */
}

.right-sidebar.closed {
    transform: translateX(100%);
}

/* Sidebar iÃ§erik */
.sidebar-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: visible;

    /* Sadece renk */
    background-color: var(--primary-color);
}

/* GÃ¶rsel iÃ§in ayrÄ± pseudo-element - %5 opacity */
.sidebar-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('upload/icon_light.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.sidebar-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100vh;
    background-image: url(upload/mask.png);
    background-position: left;
    margin-left: -99px;
    margin-top: 50px;
    background-position-y: top;
    animation: maskSlide 2s ease-in-out 1s forwards;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: auto;
}

@keyframes maskSlide {
    0% {
        margin-top: 50px;
    }
    100% {
        margin-top: 10px;
    }
}


.fadeparagraph {
    animation: paragraphmask 2s ease-in-out 1s forwards;
    animation-delay: 1s;
    opacity: 0;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    animation-duration: 1s;
}

@keyframes paragraphmask {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Ãœst kÄ±sÄ±m - Logo ve kapat butonu */
.sidebar-header {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.logo-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.logo-text {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo-subtext {
    color: white;
    font-size: 1.2rem;
    opacity: 0.9;
}

.close-button {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: absolute;
    right: 10px;
    top: 10px;
}

.close-button:hover {
    transform: rotate(90deg);
}

.close-icon {
    color: white;
    font-size: 18px;
    font-weight: bold;
}

/* Form alanlarÄ± */
.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group {
    position: relative;
}

.form-control {
    width: 100%;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 0px;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-control:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.form-control:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

/* Select wrapper for custom dropdown arrow */
.select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.select-wrapper::after {
    content: "▼";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    pointer-events: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.select-wrapper:hover::after {
    color: rgba(255, 255, 255, 1);
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;
}

/* Submit butonu */
.submit-button {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    color: #623f48;
    padding: 0.5rem 2rem;
    border: none;
    border-radius: 0px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-button:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

/* Checkbox grubu */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 1.5rem 0;
}

.checkbox-wrapper {
    position: relative;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.custom-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 22px;
    width: 22px;
    top: 0;
    left: 0;
    z-index: 1;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: transparent;
    border: solid thin #fff;
    border-radius: 4px;
    transition: all 0.3s ease;
    pointer-events: none;
}

.custom-checkbox:checked ~ .checkmark {
    background-color: white !important;
    border-color: white !important;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid #623f48;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox:checked ~ .checkmark:after {
    display: block !important;
}

/* Checkbox hover efekti */
.checkmark:hover {
    border-color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Checkbox focus efekti */
.custom-checkbox:focus ~ .checkmark {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.checkbox-label {
    color: white;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
}

/* Åžartlar metni */
.terms-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.terms-link {
    color: white;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: #81a170;
}

/* Telefon bÃ¶lÃ¼mÃ¼ */
.phone-section {
    text-align: center;
    margin: 2rem 0;
}

.phone-number {
    color: white;
    font-size: 2.5rem;
    font-weight: 600;
    text-decoration: none;
    text-shadow: 2px 1px 1px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
}

.phone-number:hover {
    color: #81a170;
    transform: scale(1.05);
}

/* Alt logo */
.bottom-logo {
    text-align: center;
    margin-top: auto;
}

.bottom-logo-text {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.bottom-logo-subtext {
    color: white;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Right sidebar open */
.right-sidebar-open {
    position: fixed;
    top: 0;
    right: 0;
    /* width: 90px; */
    height: 100vh;
    z-index: 100000;
    background-color: var(--secondary-color);
    transition: transform 0.5s ease-in-out;
    transform: translateX(100%);
    cursor: pointer;
    display: flex;
    overflow-x: hidden;
    align-content: center;
    align-items: center;
    padding: 25px;
}
.right-sidebar.opened + .teslim {
    display: none;
  }
.right-image-block{display: none;}

/* .right-sidebar-open-content aktif olduÄŸunda .right-image-block'u gÃ¶ster */
.right-sidebar-open-content.active ~ .right-image-block,
.right-sidebar-open-content.active + .right-image-block {
    display: block !important;
}

.right-sidebar-open.opened {
    transform: translateX(0);
}

.right-sidebar-open.opened:hover .vertical-logo {
    transform: rotate(180deg) scale(1.15);
    transition: transform 1.5s ease-in-out;
}

.right-sidebar-open-content {
    color: white;
    font-size: 24px;
    font-weight: bold;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}
.vertaical-bar {
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
    justify-content: space-around;
    height: 90vh;
    align-items: center;
}
.vertical-logo {
    transform: rotate(180deg);
    width: 40px;
    transition: transform 1.5s ease-in-out;
}
.socialright i{color: #f8f9fa;}
.socialright ul{list-style: none;}
.socia_menu{text-align: center;display: flex;justify-content: center;}
.socia_menu i{color: white;}
.socia_menu a{color: white; text-decoration: none;}
.socia_menu ul {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

.socia_menu ul li {
    list-style: none;
}

/* Swiper Hero Slider Stilleri */
.hero-swiper {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    max-width: 100vw;
}

.hero-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease-in-out;
}

/* Ken Burns Efekti */
.hero-swiper .swiper-slide-active img {
    transform: scale(1.1);
}

.hero-swiper .swiper-slide:nth-child(1) img {
    transform: scale(1.1) translate(0, 0);
}

.hero-swiper .swiper-slide:nth-child(2) img {
    transform: scale(1.15) translate(-2%, -1%);
}

.hero-swiper .swiper-slide:nth-child(3) img {
    transform: scale(1.2) translate(1%, -2%);
}

.hero-swiper .swiper-slide:nth-child(4) img {
    transform: scale(1.1) translate(-1%, 1%);
}

/* Swiper Pagination Stilleri */
.hero-swiper .swiper-pagination {
    bottom: 2rem;
    z-index: 10;
}

.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
    transform: scale(1.2);
}

/* Slayt kontrolleri */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
}

.prev-btn, .next-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* Slayt noktalarÄ± */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}
.height-50 {
    height: 50vh;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}
.slogan {
    font-size: 2rem;
    font-weight: 700;
    line-height: 3rem;
    overflow: hidden;
}

.slogan .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: charAppear 0.8s ease-out forwards;
}

@keyframes charAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* BoÅŸluk karakterleri iÃ§in Ã¶zel stil */
.slogan .char:empty {
    width: 0.3em;
}
.slogan.s1 {
    font-size: 3rem;
    font-weight: 100;
}

.slogan.s2 {
    font-size: 3rem;
    font-weight: 200;
}

.teslim {
    display: flex;
    position: fixed;
    z-index: 99;
    left: 20px;
    top: 20px;
    width: 100px;
    height: 100px;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* TaÅŸmalarÄ± gizle */
}

.teslim::before {
    content: "";
    position: absolute;
    inset: 0; /* top, right, bottom, left: 0 */
    background: url(upload/teslim.png) center/contain no-repeat;
    animation: rotateBg 60s linear infinite;
}

@keyframes rotateBg {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.savur {
    display: flex;
    position: fixed;
    z-index: 99;
    left: 20px;
    bottom: 20px;
    width: 80px;
    height: 80px;
    background: url(upload/savur_light.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.6s ease-in-out;
}

.savur.dark {
    background: url(upload/savur.svg); /* #4e4d4d renkli versiyon */
    background-size: contain;
    background-repeat: no-repeat;
}



.container-2 {
    position: relative;
    height: 75vh;
    overflow: hidden;
}

.container-3 {
    position: relative;
    background:
        linear-gradient(to right, #CCA374 0%, rgba(204, 163, 116, 0) 30%),
        url('upload/image/iv_kandilli_1.jpg') center/cover no-repeat;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 75vh;
}
.container-4 {
    position: relative;
    background:
        linear-gradient(to right, #CCA374 0%, rgba(204, 163, 116, 0) 30%),
        url('upload/image/iv_ic_mekan_6.jpeg') center/cover no-repeat;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 75vh;
}

/* Slogan animasyon stilleri */
.slogan-animation, .slogan-animation-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    height: 4rem;
    width: 100%;
    z-index: 999;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video Ã¼zerindeki slogan animasyonlarÄ± iÃ§in ek gÃ¼venlik */
.slogan-animation {
    z-index: 999 !important;
    position: absolute !important;
}

/* Container-2 dÄ±ÅŸÄ±ndaki slogan animasyonlarÄ± iÃ§in */
.container-main:not(.container-2) .slogan-animation {
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.slogan-text {
    position: absolute;
    width: 100%;
    text-align: left;
    transition: all 0.8s ease-in-out;
    color: #ffffff !important;
    font-weight: bold;
    font-size: 3rem;
    line-height: 1.2;
    padding-left: 150px;
    opacity: 0;
    transform: translateY(100%);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9) !important;
    z-index: 1000 !important;
}

.slogan-text.active {
    transform: translateY(0);
    opacity: 1;
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.slogan-text.inactive {
    transform: translateY(100%);
    opacity: 0;
}

.slogan-text.next {
    transform: translateY(-100%);
    opacity: 0;
}



/* Container-2 iÃ§in pozisyon ayarlarÄ± */
.container-2 {
    position: relative;
    overflow: hidden;
}

/* Container-2 iÃ§indeki slogan animasyonu iÃ§in Ã¶zel stiller */
.container-2 .slogan-animation {
    position: absolute !important;
    top: 50% !important;
    left: 5% !important;
    transform: translateY(-50%) !important;
    width: auto !important;
    height: auto !important;
    z-index: 89 !important;
    pointer-events: auto !important;
    overflow: visible !important;
}

/* Container-2 iÃ§indeki textblend iÃ§in Ã¶zel stiller */


.iconbg {
    position: relative; /* Pseudo element iÃ§in gerekli */
    z-index: 0;
}

.iconbg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(upload/icon_dark.svg);
    background-size: cover;
    background-position: initial;
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: -1;
    background-attachment: fixed;
}




.animate-text {
    white-space: pre; /* BoÅŸluklarÄ± koru */
}

.animate-text .char {
    opacity: 0;
    transform: translateY(100%);
    display: inline-block;
    animation: charAppear 0.6s ease-out forwards;
}





/* Slider */
.untitled {
    position: absolute;
    height: 100%;
    width: 100vh;
    animation: rotateHue infinite 20s linear;
    animation-delay: 0.625s;
}
@keyframes rotateHue {
    0% {
        filter: hue-rotate(0deg);
   }
    20% {
        filter: hue-rotate(0deg);
   }
    25% {
        filter: hue-rotate(90deg);
   }
    45% {
        filter: hue-rotate(90deg);
   }
    50% {
        filter: hue-rotate(180deg);
   }
    70% {
        filter: hue-rotate(180deg);
   }
    75% {
        filter: hue-rotate(270deg);
   }
    95% {
        filter: hue-rotate(270deg);
   }
    100% {
        filter: hue-rotate(360deg);
   }
}
.untitled__shutters {
    position: absolute;
    height: 150vmax;
    width: 150vmax;
    left: calc(50% - 75vmax);
    top: calc(50% - 75vmax);
    pointer-events: none;
    z-index: 2;
    animation: rotateFrame 10s linear infinite;
}
@keyframes rotateFrame {
    0% {
        transform: rotate(0deg);
   }
    100% {
        transform: rotate(180deg);
   }
}
.untitled__shutters:before, .untitled__shutters:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    background-color: #b3401a;
    pointer-events: auto;
}
.untitled__shutters:before {
    bottom: 50%;
    animation: openTop 5s infinite;
}
@keyframes openTop {
    0% {
        transform: translate3d(-50%, 0, 0);
        animation-timing-function: cubic-bezier(0.8, 0, 0.1, 1);
   }
    40% {
        transform: translate3d(-50%, -65vmax, 0);
        animation-timing-functon: cubic-bezier(0.6, 0.04, 0.98, 0.335);
   }
    70% {
        transform: translate3d(-50%, -65vmax, 0);
        animation-timing-functon: cubic-bezier(0.6, 0.04, 0.98, 0.335);
   }
    100% {
        transform: translate3d(-50%, 0, 0);
        animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
   }
}
.untitled__shutters:after {
    top: 50%;
    animation: openBottom 5s infinite;
}
@keyframes openBottom {
    0% {
        transform: translate3d(-50%, 0, 0);
        animation-timing-function: cubic-bezier(0.8, 0, 0.1, 1);
   }
    40% {
        transform: translate3d(-50%, 65vmax, 0);
        animation-timing-functon: cubic-bezier(0.6, 0.04, 0.98, 0.335);
   }
    70% {
        transform: translate3d(-50%, 65vmax, 0);
        animation-timing-functon: cubic-bezier(0.6, 0.04, 0.98, 0.335);
   }
    100% {
        transform: translate3d(-50%, 0, 0);
        animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
   }
}
.untitled__slides {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #b3401a;
}
.untitled__slide {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0;
    animation: showHideSlide infinite 20s steps(1);
}
@keyframes showHideSlide {
    0% {
        opacity: 1;
        pointer-events: auto;
        z-index: 1;
   }
    25% {
        opacity: 0;
        pointer-events: none;
        z-index: -1;
   }
    100% {
        opacity: 0;
        pointer-events: none;
        z-index: -1;
   }
}
.untitled__slide:nth-child(1) {
    animation-delay: 0s;
}
.untitled__slide:nth-child(1) .untitled__slideBg {
    background-image: url(https://unsplash.it/g/1500/2200?image=838);
}
.untitled__slide:nth-child(2) {
    animation-delay: 5s;
}
.untitled__slide:nth-child(2) .untitled__slideBg {
    background-image: url(https://unsplash.it/g/1500/1000?image=1078);
}
.untitled__slide:nth-child(3) {
    animation-delay: 10s;
}
.untitled__slide:nth-child(3) .untitled__slideBg {
    background-image: url(https://unsplash.it/g/1500/1000?image=1077);
}
.untitled__slide:nth-child(4) {
    animation-delay: 15s;
}
.untitled__slide:nth-child(4) .untitled__slideBg {
    background-image: url(https://unsplash.it/g/1500/1200?image=345);
}
.untitled__slideBg {
    position: relative;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-color: #b3401a;
    background-blend-mode: hard-light;
    opacity: 1;
    z-index: -1;
    animation: bgInOut 5s infinite;
}
@keyframes bgInOut {
    0% {
        transform: rotate(-45deg) scale(1.1);
        animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
   }
    33% {
        transform: rotate(0deg);
   }
    50% {
        transform: rotate(0deg);
   }
    66% {
        transform: rotate(0deg);
        animation-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
   }
    100% {
        transform: rotate(45deg) scale(0.9);
   }
}
.untitled__slideContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    color: white;
    font-family: 'Abril Fatface', sans-serif;
    line-height: 0.8;
    letter-spacing: -0.025em;
    z-index: 2;
    opacity: 1;
    text-shadow: 0 0 0.5em rgba(179, 64, 26, 0.25);
    mix-blend-mode: lighten;
}
.untitled__slideContent span {
    display: block;
    font-size: 15vmin;
}
.button {
    font-family: 'Roboto Mono', sans-serif;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 2vmin;
    display: inline-block;
    position: relative;
    border: 3px solid white;
    box-shadow: -0.5vmin 0.5vmin 0 rgba(255, 255, 255, 0.5);
    background: transparent;
    margin-top: 5vmin;
    mix-blend-mode: lighten;
    color: white;
    padding: 2vmin 2vmin 1.8vmin 2vmin;
    letter-spacing: 0.1em;
    text-shadow: none;
    line-height: 1;
    transform: translate3d(0.5vmin, -0.5vmin, 0);
    transition: all 100ms linear;
}
.button:hover {
    transform: translate3d(1vmin, -1vmin, 0);
    box-shadow: -1vmin 1vmin 0 rgba(255, 255, 255, 0.5);
    background: white;
    color: black;
}
.button:active {
    transform: translate3d(0px, 0px, 0);
    box-shadow: 0px 0px 0 rgba(255, 255, 255, 0.5);
}

/* Right box image - sidebar kapalÄ±yken gÃ¶rÃ¼nÃ¼r */
.rightboximage {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

/* Ä°kon stilleri */
.icon-item {
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: solid thin var(--primary-color);
    padding: 10px;
    border-radius: 10px;
}

.icon-item:hover {
    transform: translateY(-8px) scale(1.05);
    filter: brightness(1.1);
    border-color: var(--secondary-color);
    background-color: white;
    border-radius: 5px;
}

/* data-tooltip olan icon-item'larda hover animasyonunu devre dışı bırak */
.icon-item[data-tooltip]:hover {
    transform: none;
    filter: none;
    border-color: var(--primary-color);
    background-color: transparent;
}

.icon-wrapper {
    position: relative;
    display: inline-block;
}


section {
    width: calc(100% - 75px);
}


.icon-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(85%) sepia(15%) saturate(638%) hue-rotate(358deg) brightness(89%) contrast(89%);
    transition: filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-item:hover .icon-image {
    filter: brightness(0) saturate(100%) invert(15%) sepia(100%) saturate(1000%) hue-rotate(200deg) brightness(20%) contrast(100%);
}

/* data-tooltip olan icon-item'larda icon-image hover efektini devre dışı bırak */
.icon-item[data-tooltip]:hover .icon-image {
    filter: brightness(0) saturate(100%) invert(85%) sepia(15%) saturate(638%) hue-rotate(358deg) brightness(89%) contrast(89%);
}

.icon-title {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    line-height: 21px;
}

.icon-item:hover .icon-title {
    color: var(--secondary-color);
}

/* data-tooltip olan icon-item'larda icon-title hover efektini devre dışı bırak */
.icon-item[data-tooltip]:hover .icon-title {
    color: var(--primary-color);
}

/* Tooltip stilleri */
.icon-item[data-tooltip] {
    position: relative;
    cursor: pointer;
}

.icon-item[data-tooltip]:before {
    content: attr(data-tooltip);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-color);
    color: var(--color-white);
    padding: 20px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: break-spaces;
    pointer-events: none;
    overflow: hidden;
}

.icon-item[data-tooltip]:after {
    display: none;
}

/* Desktop hover */
.icon-item[data-tooltip]:hover:before {
    opacity: 1;
    visibility: visible;
}

.icon-item[data-tooltip]:hover .icon-image,
.icon-item[data-tooltip]:hover .icon-title {
    opacity: 0;
}

/* Mobile click animation */
.icon-item[data-tooltip].tooltip-active:before {
    opacity: 1;
    visibility: visible;
    animation: tooltipFadeIn 0.4s ease-out;
}

.icon-item[data-tooltip].tooltip-active .icon-image,
.icon-item[data-tooltip].tooltip-active .icon-title {
    opacity: 0;
}

/* Tooltip fade in animasyonu */
@keyframes tooltipFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobil popup modal stilleri */
.mobile-tooltip-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-tooltip-popup.show {
    opacity: 1;
    visibility: visible;
}

.mobile-tooltip-content {
    background: white;
    border-radius: 12px;
    padding: 25px;
    max-width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mobile-tooltip-popup.show .mobile-tooltip-content {
    transform: scale(1);
}

.mobile-tooltip-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.mobile-tooltip-close:hover {
    background: #f0f0f0;
    color: #333;
}

.mobile-tooltip-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-align: center;
    font-family: 'the-seasons', sans-serif;
}

.mobile-tooltip-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    text-align: center;
}

/* Mobil cihazlarda mevcut tooltip'leri gizle ve popup kullan */
@media (max-width: 768px) {
    .icon-item[data-tooltip]:before {
        display: none;
    }
    
    .icon-item[data-tooltip]:hover .icon-image,
    .icon-item[data-tooltip]:hover .icon-title {
        opacity: 1;
    }
}

/* Mobil sayfa stilleri */
.desktop-switch {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.hero-section-mobile {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content-mobile {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
}

.hero-title-mobile {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
    font-family: 'the-seasons', sans-serif;
}

.hero-subtitle-mobile {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2rem;
}

.hero-cta-mobile {
    margin-top: 2rem;
}

.features-mobile {
    background: #f8f9fa;
    padding: 4rem 0;
}

.feature-card-mobile {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-card-mobile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.feature-icon-mobile {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-mobile img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-title-mobile {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.3;
}

.footer-mobile {
    background: var(--secondary-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-logo-mobile {
    margin-bottom: 1rem;
}

.footer-text-mobile p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.footer-text-mobile p:last-child {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Modal optimizasyonları */
.modal-dialog {
    margin: 1rem;
}

.modal-content {
    border-radius: 12px;
}

.modal-header {
    background: var(--secondary-color);
    color: white;
    border-radius: 12px 12px 0 0;
}

.modal-header .btn-close {
    filter: invert(1);
}

/* Responsive düzenlemeler */
@media (max-width: 576px) {
    .hero-title-mobile {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-mobile {
        font-size: 1rem;
    }
    
    .feature-card-mobile {
        padding: 1rem;
    }
    
    .feature-title-mobile {
        font-size: 0.8rem;
    }
    
    .desktop-switch {
        top: 10px;
        right: 10px;
    }
    
    .desktop-switch .btn {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }
}
.footer{
    background-color: var(--secondary-color);
    text-align: center;
    padding: 20px;
    font-family: "the-seasons", serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    font-family: "the-seasons", serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;

}

.cgorsel {
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }
  
  @media (max-width: 1024px) {
    .cgorsel {
      background-attachment: scroll; /* mobil/tablet uyumlu */
    }
  }
  

/* Responsive dÃ¼zenlemeler */


@media (max-width: 576px) {
    .icon-item-footer {
        display: flex;
        flex-direction: column;
    }
    .ilkicon .col-6 .icon-item {
        height: 16vh !important;
    }
    .teslim {
        width: 75px;
    }
    .teslim img {
        width: 70px;
    }
    .savur {
        width: 75px;
    }
}

@media (max-width: 430px) {
    .icon-item-footer {
        display: flex;
        flex-direction: column;
    }
    .right-sidebar {
        WIDTH: 75%;
    }
    .logo-text {
        font-size: 1.5rem;
    }
    
    .checkbox-label {
        font-size: 0.8rem;
    }
    .sidebar-content {
        padding: 1rem;
    }
    .height-50{height: auto;}
    


/* Mobile right bar */
.mobile-right-bar {
    position: fixed;
    right: 0;
    top: 0;
    background-color: var(--secondary-color);
    padding: 20px 20px 0px 20px;
    display: none;
    cursor: pointer;
    z-index: 9999;
    width: 80px;
    height: 110px;
    min-height: 110px;
}

.mobile-sidebar-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.mobile-logo img {
    width: 40px;
    height: auto;
}

.mobile-arrow {
    color: white;
    text-align: center;
    padding: 10px;
    margin: 0;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-right-bar:hover .mobile-arrow {
    transform: translateY(2px);
}

}
@media (max-width: 768px) {
    .icon-image {
        width: 60px;
        height: 60px;
    }
    
    .icon-title {
        font-size: 0.8rem;
    }
    
    .icon-item[data-tooltip]:before {
        font-size: 0.7rem;
        padding: 6px 10px;
        max-width: 200px;
    }
}

@media (max-width: 576px) {
    section{width:100%}

    .icon-image {
        width: 50px;
        height: 50px;
    }
    
    .icon-title {
        font-size: 0.75rem;
    }
    
    /* Right sidebar aÃ§Ä±kken teslim div'ini gizle */
    .right-sidebar.opened ~ .teslim {
        display: none;
    }
}

@media (max-width: 430px) {

    .right-sidebar {
        width: 80%;
    }

}

/* Mobil cihazlarda mobil sidebar'Ä± gÃ¶ster */
@media (max-width: 768px) {

    
    .right-sidebar-open {
        display: none;
    }
    .sidebar-content::before {
        display: none;
    }
    
    .mobile-right-bar {
        display: block !important;
        pointer-events: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Mobile sidebar açıkken mobile-right-bar'ı gizle */
    #mobile-sidebar.opened ~ .mobile-right-bar {
        display: none !important;
    }

}



/* Hero image video arkaplan stilleri */
.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-image .slogan-animation {
    position: relative;
    z-index: 10;
}

/* Lazy loading stilleri */
.lazy-image {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}


.lazy-image.loaded {
    opacity: 1;
}

.lazy-bg {
    background-image: none !important;
}

.lazy-bg.loaded {
    background-image: var(--bg-image) !important;
}

.lazy-video {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.lazy-video.loaded {
    opacity: 1;
}

/* Video poster gÃ¶rseli iÃ§in stiller */
.lazy-video[poster] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Video yÃ¼klenene kadar poster gÃ¶rÃ¼nÃ¼r olsun */
.lazy-video:not(.loaded) {
    opacity: 1;
}

.lazy-video:not(.loaded) video {
    opacity: 0;
}

/* Sicons stilleri */

.sicons-item{background-color: var(--primary-color);}
.sicons-image{background-color: var(--primary-color);}
.sicons-title{color: var(--primary-color);}
.sicons-description{color: var(--secondary-color);}
/* Sicon-item hover durumunda image filter efekti */
.sicon-item:hover .sicons-image img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(100%) saturate(1000%) hue-rotate(200deg) brightness(20%) contrast(100%);
}

.sicon-item {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    margin-bottom: 0.5rem;
}

/* Sicons container iÃ§in grid dÃ¼zeni */
.sicons-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

/* Mobil iÃ§in 2 sÃ¼tun */
@media (max-width: 768px) {
    .sicons-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sicon-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(204, 163, 116, 0.2);
}

/* Sicons title ve description animasyonlarÄ± */
.sicons-title {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}
.sicons-desc{position: relative;width: 100%;}

.sicons-description {
    opacity: 0;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}


.icon-item-footer {
    display: flex;
    align-items: center !important;
    align-content: center !important;
    flex-direction: column;
    justify-content: flex-start !important;
}

/* Mobil için */
@media (max-width: 768px) {
    .icon-item-footer {
        flex-direction: column !important;
    }
}

.icon-wrapper-footer {
    border: solid 2px #cca374;
    margin: 10px;
    border-radius: 10px;
}

/* Hover durumunda animasyonlar - sicon-item Ã¼zerinde */
.sicon-item:hover .sicons-title {
    opacity: 0;
    transform: translateY(-20px);
}

.sicon-item:hover .sicons-description {
    opacity: 1;
    transform: translateY(0);
}

/* Z-index utilities */
.z-index-1000 {
    position: relative;
    z-index: 1000;
}



#footericon {
    padding: 100px 0;
}