.logotype {
    height: 60px;
}

.project-slider .swiper-wrapper .project-slider__item h5 {
    position: absolute;
    width: 100%;
    bottom: 0;
    text-align: center;
    color: #FFF;
    z-index: 9999;
}

@media only screen and (max-width: 1500px) {
    .nav-overlay__menu-item a {
        font-size: 3vw;
    }
}




/* STICKY MENU */
.sticky-container {
    position: fixed;
    right: 0;
    top: 45%;
    transform: translateY(-50%);
    z-index: 9999;
}

.sticky-item {
    position: relative;
    *margin: 8px 0;
    cursor: pointer;
}

.sticky-icon {
    width: 55px;
    height: 55px;
    background: #c39e7e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px 0 0 10px;
    font-size: 20px;
    position: relative;
    z-index: 2;
}

/* Arkadan çıkan alan */
.sticky-content {
    position: absolute;
    right: 50px;
    top: 0;
    height: 55px;
    background: #c39e7e;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 20px 0 65px;
    border-radius: 10px 0 0 10px;
    white-space: nowrap;
    transform: translateX(100%);
    transition: 0.4s ease;
    z-index: 1;
}

.sticky-item:hover .sticky-content {
    transform: translateX(0);
}

.sticky-content a {
    color: #fff;
    text-decoration: none;
}


/* FORM PANEL */
.form-panel {
    position: fixed;
    right: -450px;
    top: 0;
    width: 400px;
    height: 100%;
    background: #fff;
    box-shadow: -5px 0 20px rgba(0,0,0,0.15);
    transition: 0.4s ease;
    z-index: 10000;
    padding: 25px;
    overflow-y: auto;
}

.form-panel.active {
    right: 0;
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.form-header h3 {
    margin: 0;
}

.close-form {
    cursor: pointer;
    font-size: 18px;
}

.form-panel input,
.form-panel select {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.form-panel button {
    width: 100%;
    padding: 12px;
    background: #004e50;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.form-panel button:hover {
    background: #c39e7e;
}


/* Dikey Mesaj Alanı */
.sticky-vertical {
    width: 55px;
    height: 240px;
    background: #004e50;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 0 10px 0 0;
    cursor: pointer;
    transition: 0.3s;
}

.sticky-vertical:hover {
    background: #1d4ed8;
}


/* Kapatma X hover sisteminde gereksiz ama görsel kalsın */
.close-form {
    display: none;
}




@media screen and (max-width: 991px) {
    .navbar {
        background: transparent;
    }
    .nav-scroll {
        background: #fff;
    }
}

@media (min-width: 992px) {
    .contact-trigger:hover ~ .form-panel,
    .form-panel:hover {
        right: 0;
    }
}

@media (max-width: 768px) {
    .close-form {
        display: block;
    }

}