html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
}

* {
    box-sizing: border-box;
}

html,
body {
    padding: 0px;
    margin: 0px;
    width: 100%;
    font-size: 16px;
    max-width: 100%;
    overflow-x: hidden;
    font-weight: 400;
    font-family: Figtree, sans-serif;
    letter-spacing: 0.24px;
    color: rgb(84, 84, 84);
    background-color: rgb(253, 253, 253);
}

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

.bold {
    font-weight: 800;
}

.semi-bold {
    font-weight: 700;
}

.light {
    font-weight: 300;
}

.kalnia {
    /*font-family: ivymode, sans-serif;*/
    font-family: "Kalnia", serif;
}

.color-l-gold {
    color: rgb(232, 200, 149);
}

.color-gold {
    color: rgb(165, 142, 106);
}

.color-green {
    color: rgb(23, 56, 55);
}

.color-l-green {
    color: rgb(79, 122, 118);
}

.color-vl-green {
    color: rgb(137, 166, 163);
}

.bg-green {
    background-color: rgb(32, 79, 78);
}

.bg-l-green {
    background-color: rgb(79, 122, 118);
}

.bg-grey {
    background-color: rgb(249, 249, 249);
}

ul {
    margin: 0px;
    padding: 0px;
}

.line-15 {
    line-height: 1.5;
}

li {
    list-style: none;
}

h1 {
    font-size: 120px;
}

h2 {
    font-size: 44px;
}

h3 {
    font-size: 26px;
}

h4 {
    font-size: 24px;
    font-weight: 400;
}

h5 {
    font-size: 21px;
}

h6 {
    font-size: 17px;
}

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

.padding-x {
    padding-left: 160px;
    padding-right: 160px;
}

.padding-y {
    padding-top: 120px;
    padding-bottom: 120px;
}

.normal-link {
    color: rgb(23, 56, 55);
    font-weight: 600;
    transition: 500ms;
}

.normal-link:hover {
    color: rgb(232, 200, 149);
}

.normal-link-2 {
    color: rgb(255, 255, 255);
    font-weight: 600;
    transition: 500ms;
}

.normal-link-2:hover {
    color: rgb(232, 200, 149);
}

.yenifont {
    font-size: 70px;
}

.splash {
    width: 100%;
    height: 100vh;
    position: fixed;
    inset: 0px;
    z-index: 999999;
    background-color: rgb(31, 78, 77);
    display: flex;
    justify-content: center;
    align-items: center;
}

.splash img {
    width: 200px;
}

.header-main {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 32px 160px;
    z-index: 9;
    transition: 500ms;
    overflow: visible;
}

.header-main .logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.logo .logo-icon {
    height: 44px;
}

.logo .logo-text {
    height: 21px;
    filter: invert(1) brightness(5);
    transition: 500ms;
}

.header-main .header-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    color: rgb(255, 255, 255);
    transition: 500ms;
}

.header-nav .line {
    display: block;
    width: 1px;
    height: 16px;
    background-color: rgb(255, 255, 255);
    transition: 500ms;
}

.lang-sel {
    cursor: pointer;
}

.header-main .lang-sel img {
    filter: invert(1) brightness(5);
    margin-left: 10px;
}

.burger-menu-icon {
    cursor: pointer;
}

.close {
    cursor: pointer;
}

.header-main .burger-menu-icon img {
    filter: brightness(2) sepia(1);
    transition: 500ms;
}

.header-scroll {
    backdrop-filter: blur(24px);
    background: rgba(255, 255, 255, 0.85);
    padding: 18px 160px;
}

.header-scroll .header-nav {
    color: rgb(32, 79, 78);
}

.header-scroll .logo .logo-text {
    filter: none;
}

.header-scroll .burger-menu-icon img {
    filter: none;
}

.header-scroll .lang-sel img {
    filter: none;
}

.header-scroll .line {
    background-color: rgb(32, 79, 78);
}

.header-main.header2 .header-nav {
    color: rgb(32, 79, 78);
}

.header-main.header2 .logo .logo-text {
    filter: none;
}

.header-main.header2 .burger-menu-icon img {
    filter: none;
}

.header-main.header2 .lang-sel img {
    filter: none;
}

.header-main.header2 .line {
    background-color: rgb(32, 79, 78);
}

.header-nav li:hover {
    color: rgb(232, 200, 149);
}

.header-nav li:hover img {
    filter: brightness(3) sepia(1);
}

.header-main.header2 .header-nav li:hover img {
    filter: brightness(2.7) sepia(1);
}

.header-scroll .header-nav li:hover img {
    filter: brightness(2.7) sepia(1);
}

.header-nav .custom-dropdown {
    position: relative;
}

.header-nav .custom-dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-nav .custom-dropdown-toggle::after {
    content: "";
    display: inline-block;
    width: 0px;
    height: 0px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentcolor;
    margin-left: 5px;
    transition: transform 300ms;
}

.header-nav .custom-dropdown.active .custom-dropdown-toggle::after {
    transform: rotate(180deg);
}

.header-nav .custom-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0px;
    margin-top: 16px;
    min-width: 180px;
    background-color: rgba(32, 79, 78, 0.95);
    backdrop-filter: blur(12px);
    padding: 12px 0px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 300ms;
    z-index: 1000;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 20px;
}

.header-nav .custom-dropdown.active .custom-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.header-nav .custom-dropdown-menu li {
    padding: 0px;
}

.header-nav .custom-dropdown-menu li a {
    display: block;
    padding: 12px 24px;
    color: rgb(255, 255, 255);
    transition: 200ms;
}

.header-nav .custom-dropdown-menu li a:hover {
    background-color: rgba(232, 200, 149, 0.15);
    color: rgb(232, 200, 149);
    padding-left: 28px;
}

.header-scroll .header-nav .custom-dropdown-menu,
.header-main.header2 .header-nav .custom-dropdown-menu {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 20px;
}

.header-scroll .header-nav .custom-dropdown-menu li a,
.header-main.header2 .header-nav .custom-dropdown-menu li a {
    color: rgb(32, 79, 78);
}

.header-scroll .header-nav .custom-dropdown-menu li a:hover,
.header-main.header2 .header-nav .custom-dropdown-menu li a:hover {
    background-color: rgba(32, 79, 78, 0.1);
    color: rgb(232, 200, 149);
}

.proje-scroll-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px 160px;
    border-bottom: 1px solid transparent;
    border-top: 1px solid transparent;
    backdrop-filter: blur(0px);
    background: transparent;
    position: absolute;
    top: 100%;
    left: 0px;
    right: 0px;
    height: 0px;
    overflow: hidden;
    transition: 500ms;
}

.header-scroll .proje-scroll-bar {
    height: 58px;
    padding: 16px 160px;
    border-bottom: 1px solid rgb(232, 200, 149);
    border-top: 1px solid rgb(232, 200, 149);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px);
}

.proje-scroll-bar ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
}

.proje-scroll-bar li a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    color: rgb(32, 79, 78);
}

.proje-scroll-bar li a img {
    width: 16px;
}

.proje-scroll-bar li a:hover img {
    filter: invert(1) sepia(1) brightness(0.9);
}

.proje-scroll-bar li a:hover {
    color: rgb(232, 200, 149);
}

.me-nav {
    width: 100vw;
    top: 0px;
    bottom: 0px;
    position: fixed;
    z-index: 12;
    backdrop-filter: blur(12px);
    overflow: hidden;
    background: rgba(32, 79, 78, 0.85);
    display: flex;
    justify-content: flex-end;
    color: rgb(255, 255, 255);
    right: -100vw;
    transition: right 500ms;
}

.me-nav.active {
    right: 0px;
}

.lang-menu-wrap {
    width: 100vw;
    height: 100vh;
    right: 0px;
    left: 0px;
    position: fixed;
    z-index: 12;
    backdrop-filter: blur(12px);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -130%;
    transition: top 500ms;
}

.lang-menu-wrap.active3 {
    top: 0px;
}

.lang-menu-bg {
    background: rgba(32, 79, 78, 0.85);
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0px;
}

.lang-menu {
    display: flex;
    flex-direction: column;
    background-color: rgb(255, 255, 255);
    position: relative;
    border-radius: 24px;
    padding: 32px;
    gap: 32px;
}

.guncel-btn {
    border: none;
    background-color: rgb(79, 122, 118);
    color: rgb(255, 255, 255);
    width: 100%;
    padding: 12px 20px;
}

#langBtnContainer {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-top: -16px;
}

.lang-btn {
    border: 1px solid transparent;
    color: rgb(199, 199, 199);
    padding: 16px 48px 16px 16px;
    background: none;
    font-size: 14px;
    border-radius: 8px;
    text-align: left;
}

.lang-btn b {
    color: rgb(141, 141, 141);
    font-size: 16px;
}

.lang-btn.active {
    border: 1px solid rgb(79, 122, 118);
}

.lang-btn.active b,
.lang-btn:hover b {
    color: rgb(32, 79, 78);
}

#currencyBtnContainer {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-top: -16px;
}

.currency-btn {
    border: 1px solid transparent;
    color: rgb(199, 199, 199);
    padding: 16px 48px 16px 16px;
    background: none;
    font-size: 14px;
    border-radius: 8px;
    text-align: left;
}

.currency-btn b {
    color: rgb(141, 141, 141);
    font-size: 16px;
}

.currency-btn.active2 {
    border: 1px solid rgb(79, 122, 118);
}

.currency-btn.active2 b,
.currency-btn:hover b {
    color: rgb(32, 79, 78);
}

.lang-menu .close {
    align-self: flex-end;
}

.menu-logo {
    position: absolute;
    height: 800px;
    max-height: 90%;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    transition: 500ms 1000ms;
}

.me-nav.active .menu-logo {
    transform: translate(-50%, -50%);
}

.menu-wrap {
    background-color: rgb(79, 122, 118);
    width: 800px;
    position: relative;
    display: flex;
    flex-direction: column;
    right: -100%;
    transition: 500ms 500ms;
}

.me-nav.active .menu-wrap {
    right: 0px;
}

.menu-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding: 36px 160px;
    gap: 32px;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
    font-size: 36px;
    font-family: Kalnia, serif;
    color: rgb(240, 218, 184);
    padding: 32px 160px;
    flex-grow: 1;
    border-top: 1px solid rgb(137, 166, 163);
    border-bottom: 1px solid rgb(137, 166, 163);
    gap: 16px;
}

.menu-nav a {
    font-weight: 400;
}

.menu-proje-list {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 32px;
    padding: 12px 0px;
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-family: Urbanist, sans-serif;
}

.banner {
    width: 100%;
    height: 100svh;
    position: relative;
}

.banner .slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgb(240, 218, 184);
    font-family: Kalnia, serif;
    text-align: left;
    padding: 0px 300px;
}

.banner .slide h1 {
    z-index: 1;
    line-height: 1;
    width: 100%;
    font-size: 90px;
}

.banner .slide h3 {
    z-index: 1;
    line-height: 1;
    width: 100%;
}

.banner .slide h4 {
    z-index: 1;
    line-height: 1;
    width: 100%;
}

.banner-btn {
    border-radius: 8px;
    background: rgba(145, 5, 7, 0.2);
    backdrop-filter: blur(12px);
    padding: 12px 12px 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 500ms;
}

.banner-btn img {
    width: 0px;
    transition: 500ms;
}

.banner-btn:hover {
    padding: 12px 24px;
}

.banner-btn:hover img {
    width: 16px;
}

.banner-social {
    position: absolute;
    right: 36px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.contact-bar {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 7;
    border-radius: 16px;
    backdrop-filter: blur(24px);
    background: rgba(33, 51, 50, 0.8);
    padding: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: none;
}

.contact-btn-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 8px;
}

.contact-btn-bar .line {
    background-color: rgb(79, 122, 118);
    width: 1px;
    height: 16px;
}

.contact-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgb(255, 255, 255);
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    background: rgba(33, 51, 50, 0);
    transition: 500ms;
    cursor: pointer;
}

.contact-btn .chev {
    transform: scaleY(-1);
    filter: brightness(15);
    transition: 500ms;
}

.contact-btn.active .chev {
    transform: scaleY(1);
    filter: none;
}

.contact-btn:hover,
.contact-btn.active {
    background: rgba(79, 122, 118, 0.1);
}

.contact-btn.active {
    color: rgb(79, 122, 118);
}

.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 28px;
}

.switch input {
    opacity: 0;
    width: 0px;
    height: 0px;
}

.check-slider {
    position: absolute;
    cursor: pointer;
    inset: 0px;
    background-color: rgb(77, 114, 113);
    transition: 0.4s;
}

.check-slider::before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 2px;
    bottom: 2px;
    background-color: rgb(233, 237, 237);
    transition: 0.4s;
}

input:checked+.check-slider {
    background-color: rgb(232, 200, 149);
}

input:focus+.check-slider {
    box-shadow: rgb(232, 200, 149) 0px 0px 1px;
}

input:checked+.check-slider::before {
    transform: translateX(20px);
    background-color: rgb(23, 56, 55);
}

.check-slider.round {
    border-radius: 34px;
}

.check-slider.round::before {
    border-radius: 50%;
}

.form-box {
    overflow: hidden;
}

.contact-form {
    background-color: rgb(32, 79, 78);
    border-radius: 8px;
    padding: 0px 0px 0px 16px;
    font-size: 14px;
    color: rgb(255, 255, 255);
    height: 0px;
    transition: 500ms;
}

.form-row {
    margin: 0px;
    width: 800px;
    height: 100%;
    overflow: hidden;
}

.contact-form.active {
    height: 392px;
    padding: 16px 0px 16px 16px;
}

.form-left {
    background-color: rgb(23, 56, 55);
    border-radius: 4px;
    padding: 16px;
}

.contact-form form {
    padding: 16px 0px 16px 16px;
    background-color: rgb(32, 79, 78);
    height: 100%;
    position: relative;
}

.contact-form input {
    padding: 8px 16px;
    border-top: none;
    border-right: none;
    border-left: none;
    border-image: initial;
    background: none;
    color: rgb(255, 255, 255);
    border-bottom: 1px solid rgb(137, 166, 163);
    width: 100%;
    margin-bottom: 16px;
}

.contact-form select {
    padding: 8px 16px;
    border-top: none;
    border-right: none;
    border-left: none;
    border-image: initial;
    background: none;
    color: rgb(179, 179, 179);
    border-bottom: 1px solid rgb(137, 166, 163);
    width: 100%;
    margin-bottom: 16px;
}

.check-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
}

.check-row p {
    display: block;
    font-size: 13px;
    margin-bottom: 0px;
    margin-left: 0px;
}

.check-row button {
    font-size: 16px;
    font-weight: 400;
    background-color: rgb(79, 122, 118);
    border: none;
    padding: 8px 24px;
    color: rgb(255, 255, 255);
    transition: 500ms;
}

.check-row button:hover {
    background-color: rgb(23, 56, 55);
}

.home-special-sec {
    background-image: url("../images/svg/arso-icon-big.svg");
    background-repeat: no-repeat;
    background-size: auto 60%;
    background-position: center 44px;
    padding-top: 140px;
    padding-bottom: 140px;
}

.home-alt-img {
    height: 800px;
    width: 100%;
    object-fit: cover;
    transition: transform 500ms;
}

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

.home-proje-image-slider-item img {
    width: 100%;
    height: 700px;
    filter: brightness(0.7);
    object-fit: cover;
}

.home-proje-slider-sec {
    position: relative;
}

.home-proje-name-slider-wrap {
    position: absolute;
    z-index: 1;
    width: 100%;
    top: 50%;
    left: 0px;
    right: 0px;
    transform: translateY(-50%);
    overflow: hidden;
}

.home-proje-name-slider-item a {
    color: rgb(255, 255, 255);
    text-align: center;
    transition: 500ms;
}

.home-proje-name-slider-item a:hover {
    color: rgb(232, 200, 149);
}

.home-proje-name-slider {
    width: 1000px;
    margin: auto;
}

.home-proje-name-slider .slick-list {
    overflow: unset;
}

.ruslan-pading {
    padding: 136px;
}

.ruslan-pading img {
    height: 100%;
    object-fit: cover;
}

.footer-main {
    padding-top: 80px;
    background-image: url("../images/footer-bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: rgb(23, 56, 55);
}

.footer-left {
    margin-bottom: 40px;
}

.footer-logo-section {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 30px;
}

.footer-logo {
    width: 60px;
    height: auto;
}

.footer-motto {
    max-width: 200px;
    height: auto;
    object-fit: contain;
}

.footer-contact {
    margin-top: 30px;
}

.footer-contact p {
    color: rgb(255, 255, 255);
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-contact a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: 300ms;
    font-weight: 600;
    font-size: 16px;
}

.footer-contact a:hover {
    color: rgb(232, 200, 149);
}

.footer-column {
    margin-bottom: 40px;
}

.footer-column-title {
    font-size: 18px;
    font-weight: 400;
    color: rgb(232, 200, 149);
    margin-bottom: 20px;
    font-family: ivymode, sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 14px;
    transition: 300ms;
    display: inline-block;
}

.footer-links a:hover {
    color: rgb(232, 200, 149);
    padding-left: 4px;
}

.footer-social {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    gap: 6px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: 300ms;
}

.footer-social a:hover {
    background-color: rgb(232, 200, 149);
    transform: scale(1.1);
}

.footer-social img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.copyright {
    background-color: rgb(77, 114, 113);
    padding: 24px 160px;
    color: rgb(255, 255, 255);
}

.copyright p {
    margin: 0px;
    font-size: 14px;
}

.copyright p a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: 300ms;
    margin: 0px 4px;
}

.copyright p a:hover {
    color: rgb(232, 200, 149);
}

.copyright>.container>.row>.col-md-4:first-child {
    text-align: left;
}

.copyright>.container>.row>.col-md-4:last-child {
    text-align: right;
}

.copyright img {
    height: 30px;
    width: auto;
}

.hakk-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("../images/hakk-banner.jpg");
    background-size: cover;
    background-position: center center;
}

.team-card {
    display: block;
}

.team-card img {
    transition: 500ms;
}

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

.accordion {
    background-color: transparent;
    color: rgb(32, 79, 78);
    cursor: pointer;
    padding: 36px 0px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 21px;
    transition: 0.4s;
}

.active-accordion,
.accordion:hover {
    background-color: transparent;
}

.accordion::after {
    content: "+";
    color: rgb(32, 79, 78);
    font-size: 22px;
    float: right;
    margin-left: 5px;
}

.active-accordion::after {
    content: "−";
}

.panel {
    padding: 0px;
    background-color: transparent;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border-bottom: 1px solid rgb(199, 199, 199);
    margin-bottom: 24px;
}

.panel p {
    margin-bottom: 0px;
}

.alt-banner {
    background-image: url("../images/alt-banner.jpg");
    background-size: cover;
    background-position: center center;
    height: 670px;
    /* border-bottom: 1px solid rgb(32 79 78 / 18%); */
}

.alt-banner .container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.alt-banner h5 {
    padding: 60px 0px 60px 265px;
}

.sosyal-alt-img {
    min-height: 500px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 500ms;
}

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

.team-card h4 {
    font-size: 28px;
}

.ilet-bar {
    padding-top: 24px;
    padding-bottom: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgb(32, 79, 78);
}

.ilet-map-box {
    background-image: url("../images/map.png");
    background-size: cover;
    background-position: center center;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.responsive-map-container {
    width: 100%;
    max-width: 100%;
    margin: 0px auto;
    position: relative;
    overflow: hidden;
}

.responsive-map-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-width: 100%;
}

.location-subtitle {
    margin-bottom: 24px;
}

.location-tabs-wrapper {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    justify-content: center;
}

.location-tab {
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    font-family: Figtree, sans-serif;
    font-size: 15px;
}

.location-tab.active {
    background-color: rgb(79, 122, 118) !important;
    color: white !important;
    border: none !important;
}

.location-tab:not(.active) {
    background-color: transparent;
    color: rgb(232, 200, 149);
    border: 1px solid rgb(232, 200, 149);
}

.location-tab:hover {
    opacity: 0.9;
}

.location-tab-content {
    width: 100%;
    display: none;
}

.location-tab-content.active {
    display: block;
}

@media screen and (max-width: 768px) {
    .responsive-map-container {
        width: 100%;
        padding: 0px;
    }

    .responsive-map-image {
        width: 100%;
        height: auto;
        min-height: 300px;
        object-fit: cover;
    }

    .location-tabs-wrapper {
        flex-direction: column;
        gap: 12px;
    }

    .location-tab {
        width: 100%;
        padding: 10px 20px;
    }
}

@media screen and (max-width: 576px) {
    .responsive-map-image {
        min-height: 250px;
    }

    .location-tab {
        padding: 10px 16px;
        font-size: 14px;
    }
}

.filterDiv {
    display: none;
}

.show {
    display: block;
}

.category-btn-wrap {
    padding-top: 24px;
    padding-bottom: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-bottom: 1px solid rgb(32 79 78 / 14%);
}

.category-btn {
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
    color: rgb(32, 79, 78);
    font-weight: 600;
}

.category-btn:hover {
    color: rgb(165, 142, 106);
}

.category-btn.active {
    color: rgb(165, 142, 106);
}

.blog-wrap .team-card {
    margin-bottom: 60px;
}

.blog-detay-btn-bar {
    padding-top: 24px;
    padding-bottom: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgb(32, 79, 78);
    border-top: 1px solid rgb(32, 79, 78);
    margin-top: 120px;
}

.blog-detay-btn {
    color: rgb(32, 79, 78);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    cursor: pointer;
}

.blog-detay-sec {
    padding: 100px 0px;
}

.blog-detay-heading {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 500;
}

.proje-card {
    position: relative;
    height: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
    color: rgb(255, 255, 255);
    padding: 36px 0px;
    margin-bottom: 30px;
}

.proje-card * {
    position: relative;
}

.proje-card-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    inset: 0px;
    filter: brightness(0.5);
    transition: 500ms;
}

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

.proje-detay-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center center;
}

.proje-logo {
    height: 80px;
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    filter: invert(1) brightness(5);
    transition: 500ms;
}

.proje-logo.labella {
    height: 60px;
}

.header-scroll .proje-logo {
    filter: none;
    height: 45px;
    top: 50%;
    transform: translate(-50%, -50%);
}

.proje-detay-sec {
    padding-top: 80px;
    padding-bottom: 20px;
}

.proje-detay-sec h4 {
    font-size: 28px;
    line-height: 2;
}

.popup {
    position: fixed;
    inset: 0px;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    opacity: 0;
    user-select: none;
    pointer-events: none;
    transition: opacity 500ms;
    display: flex;
    justify-content: center;
    align-items: center;
}

.closepopup {
    position: absolute;
    right: 50px;
    top: 30px;
}

.popup.active {
    opacity: 1;
    pointer-events: unset;
}

.popup img {
    height: 85%;
}

.kat-btn,
.sart-btn {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: rgb(233, 237, 237);
    background-color: rgb(79, 122, 118);
    padding: 32px;
    width: 100%;
    cursor: pointer;
    font-size: 21px;
    font-weight: 400;
    margin-top: 20px;
}

.revGallery-anchor {
    padding: 16px;
    width: calc(50%);
}

.revGallery-anchor img {
    width: 100%;
}

.detail-galeri {
    margin: 0px -16px;
}

.proje-detay-sec input {
    padding: 8px 16px;
    border-top: none;
    border-right: none;
    border-left: none;
    border-image: initial;
    background: none;
    color: rgb(255, 255, 255);
    border-bottom: 1px solid rgb(137, 166, 163);
    width: 100%;
    margin-bottom: 16px;
}

.proje-detay-sec .form-row {
    width: 100%;
    background-color: rgb(32, 79, 78);
    padding: 32px;
}

.proje-detay-sec input::placeholder {
    color: rgb(137, 166, 163);
}

.footer-logo {
    min-width: 60px;
}

.proje-banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0px;
}

.proje-banner-video.mobile {
    display: none;
}

.proje-logo.coolest {
    filter: none;
}

.header-scroll .proje-logo.coolest {
    filter: invert(1) brightness(5);
}

.proje-logo.allure {
    filter: none;
    height: 60px;
}

.header-scroll .proje-logo.allure {
    filter: invert(1) brightness(5);
    height: 40px;
}

.ruslan-text-padding {
    padding-right: 0px;
}

@media screen and (max-width: 1600px) {
    .header-main {
        padding: 32px 100px;
    }

    .header-scroll {
        padding: 18px 100px;
    }

    .proje-scroll-bar {
        padding: 0px 100px;
    }

    .header-scroll .proje-scroll-bar {
        padding: 16px 100px;
    }

    .contact-btn {
        font-size: 14px;
    }

    .ruslan-pading {
        padding: 80px;
    }

    .category-btn-wrap {
        gap: 100px;
    }

    .banner .slide {
        padding: 0px 200px;
    }

    h5 {
        font-size: 18px;
    }

    .home-proje-name-slider {
        width: 800px;
    }
}

@media screen and (max-width: 1400px) {
    .header-main {
        padding: 32px 80px;
    }

    .header-scroll {
        padding: 18px 80px;
    }

    .header-main .header-nav {
        gap: 24px;
    }

    .proje-scroll-bar {
        padding: 0px 80px;
    }

    .header-scroll .proje-scroll-bar {
        padding: 16px 80px;
    }

    .proje-scroll-bar ul {
        gap: 24px;
    }

    .menu-nav {
        font-size: 24px;
        gap: 12px;
    }

    h1 {
        font-size: 80px;
        line-height: 1;
    }

    h2 {
        font-size: 44px;
    }

    h3 {
        font-size: 32px;
    }

    h4 {
        font-size: 24px !important;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 17px;
    }

    .home-proje-name-slider {
        width: 600px;
    }

    .yenifont {
        font-size: 40px;
    }

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

    .padding-x {
        padding-left: 120px;
        padding-right: 120px;
    }

    .padding-y {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .footer-main {
        padding: 60px 120px;
    }

    .copyright {
        padding: 24px 120px;
    }

    .hakk-banner,
    .proje-detay-banner {
        padding: 0px 60px;
    }

    .banner .slide {
        padding: 0px 150px;
    }
}

@media screen and (max-width: 1200px) {
    .header-main {
        padding: 32px 60px;
        font-size: 14px;
    }

    .header-scroll {
        padding: 18px 60px;
    }

    .header-main .header-nav {
        gap: 16px;
    }

    .header-main .logo {
        gap: 8px;
    }

    .proje-scroll-bar {
        padding: 0px 60px;
    }

    .header-scroll .proje-scroll-bar {
        padding: 16px 60px;
    }

    .proje-scroll-bar ul {
        gap: 16px;
    }

    .proje-scroll-bar li a {
        gap: 8px;
    }

    .menu-nav {
        font-size: 24px;
        gap: 12px;
    }

    .menu-bar {
        padding: 36px 60px;
    }

    .menu-nav {
        padding: 28px 60px;
    }

    .blog-detay-heading {
        font-size: 60px;
    }

    h1 {
        font-size: 60px;
        line-height: 1;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 21px !important;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 16px;
    }

    .yenifont {
        font-size: 40px;
    }

    .padding-x {
        padding-left: 80px;
        padding-right: 80px;
    }

    .padding-y {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .home-alt-img {
        height: 600px;
    }

    .home-proje-image-slider-item img {
        height: 450px;
    }

    .footer-main {
        padding: 50px 80px;
    }

    .copyright {
        padding: 24px 80px;
    }

    .footer-column {
        margin-bottom: 30px;
    }

    .footer-logo-section {
        margin-bottom: 20px;
    }

    .alt-banner {
        height: 600px;
    }

    .category-btn-wrap {
        gap: 80px;
    }

    .ilet-bar {
        padding: 20px;
    }

    .proje-card {
        height: 450px;
    }

    .check-row p {
        font-size: 11px;
    }

    .banner .slide {
        padding: 0px 100px;
    }

    .home-proje-name-slider {
        width: 500px;
    }

    .ruslan-pading .col-md-2 {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    .header-main .header-nav li {
        display: none;
    }

    .header-main .header-nav li.lang-sel {
        display: flex;
    }

    .header-main .header-nav li.line {
        display: flex;
    }

    .header-main .header-nav li.burger-menu-icon {
        display: flex;
    }

    .proje-scroll-bar {
        flex-direction: column;
        padding: 0px 60px;
        gap: 8px;
    }

    .header-scroll .proje-scroll-bar {
        flex-direction: column;
        padding: 6px 60px;
        gap: 8px;
    }

    .proje-scroll-bar li a {
        font-size: 12px;
    }

    .menu-wrap {
        width: 50%;
    }

    .menu-bar {
        padding: 36px 60px;
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
    }

    .menu-proje-list {
        gap: 24px;
    }

    h1 {
        font-size: 60px;
        line-height: 1;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 18px;
    }

    h4 {
        font-size: 21px !important;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 16px;
    }

    .yenifont {
        font-size: 40px;
    }

    .padding-x {
        padding-left: 40px;
        padding-right: 40px;
    }

    .padding-y {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .contact-btn-bar {
        gap: 6px;
    }

    .contact-btn {
        padding: 8px 10px;
    }

    .form-row {
        width: 700px;
    }

    .banner .slide {
        padding: 0px 50px;
        padding-left: 70px;
    }

    .slider-pagi {
        left: 20px !important;
    }

    .banner-social {
        right: 20px;
    }

    .home-special-sec {
        padding: 120px 20px;
    }

    .home-proje-name-slider {
        width: 400px;
    }

    .home-proje-name-slider .slick-track {
        display: flex;
        align-items: center;
    }

    .footer-main {
        padding: 40px 30px;
    }

    .copyright {
        padding: 20px 30px;
    }

    .footer-logo {
        width: 50px;
    }

    .footer-motto {
        max-width: 160px;
    }

    .footer-column-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-contact p {
        font-size: 13px;
    }

    .accordion,
    .accordion::after {
        font-size: 18px;
    }

    .ilet-bar {
        flex-direction: column;
        gap: 12px;
    }

    .proje-card {
        height: 300px;
    }

    .proje-detay-sec {
        padding: 80px 0px;
    }

    .kat-btn,
    .sart-btn {
        font-size: 14px;
    }

    .header-main .lang-sel img {
        margin-left: 6px;
    }

    .home-alt-img {}
}

.location-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    z-index: 4;
    top: 10px;
    right: 53px;
    color: rgb(255, 255, 255);
    background-color: rgb(79, 122, 118);
    cursor: pointer;
    position: sticky;
}

.kat-btn2-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kat-btn2 {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: rgb(255, 255, 255);
    transition: 500ms;
    width: 100%;
}

.kat-left {
    display: grid;
    grid-template-columns: 48% 48%;
    align-items: center;
    gap: 2%;
}

.kat-btn2 .line {
    width: 1px;
    height: 16px;
    background-color: rgb(223, 223, 223);
}

.kat-left span {
    font-size: 18px;
}

.kat-right span {
    font-size: 16px;
    color: rgb(255, 255, 255);
    font-weight: 600;
}

.kat-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    background: rgb(232, 200, 149);
    padding: 10px 20px;
}

.arrow-box {
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.arrow1,
.arrow2 {
    transition: 500ms;
    filter: none;
}

.kat-right:hover {
    color: rgb(79, 122, 118);
}

.kat-right:hover .arrow1 {
    filter: brightness(0.9) sepia(1);
    transform: translateX(60px);
}

.kat-right:hover .arrow2 {
    filter: brightness(0.9) sepia(1);
    transform: translateX(60px);
}

.kat-left select#game {
    display: none;
}

.kat-left select {
    background-color: rgb(252, 250, 247);
    color: rgb(76, 70, 71);
    font-weight: 600;
    padding: 12px 20px;
    border: none;
    outline: none;
    appearance: none;
    background-image: url("../images/svg/chevron-down.svg");
    background-size: 24px;
    background-position: 95% 50%;
    background-repeat: no-repeat;
}

.kat-left select:focus,
.kat-left select:active {
    background-image: url("../images/svg/chevron-up.svg");
    color: rgb(170, 169, 169);
}

.kat-left select:hover {
    background-color: rgb(255, 255, 255);
    color: rgb(79, 122, 118);
}

.kat-left select * {
    height: 37px;
    color: rgb(76, 70, 71);
    background-color: rgb(249, 249, 249);
    border: none !important;
    outline: none !important;
}

.kat-left select :hover {
    color: rgb(79, 122, 118);
    background-color: rgb(255, 255, 255);
}

.telif-green-bar {
    width: 100%;
    height: 300px;
    position: absolute;
    z-index: 0;
    top: 0px;
}

.telif-header {
    padding: 40px 101px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.telif-top-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.telif-top-desc {
    padding: 60px 101px;
}

.telif-top-desc .line {
    width: 100%;
    height: 1px;
    background-color: rgb(79, 122, 118);
    margin: 36px 0px;
}

.telif-desc-logo {
    height: 48px;
    margin-left: -10px;
    margin-right: 24px;
}

.telif-header .coolest-logo {
    height: 48px;
}

.telif-header .eternia-logo {
    height: 60px;
    filter: invert(1) brightness(15);
}

.telif-page .col-6 {
    padding: 7px 4px !important;
}

.telif-img1 {
    width: 100%;
    height: 492px;
    object-fit: cover;
    margin-bottom: 16px;
}

.telif-img2 {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.telif-img3 {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.telif-img4 {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.telif-img5 {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.telif-img6 {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.telif-card {
    background-color: rgb(32, 79, 78);
    padding: 24px;
    display: table;
    width: 100%;
    margin-top: 16px;
}

.telif-card h3 {
    font-size: 36px;
}

.display-table {
    display: table;
}

.telif-card {

    & table,
    & td,
    & th {
        border: 1px solid rgb(32, 79, 78);
    }
}

.telif-card table {
    width: 100%;
    margin: 36px 0px;
}

.telif-card td b {
    font-weight: 700;
}

.telif-card td {
    background-color: rgb(253, 250, 244);
    padding: 10px 24px;
    font-size: 21px;
    font-weight: 500;
}

.telif-card td.block1 {
    background-color: rgb(240, 218, 184);
}

.telif-card td.block2 {
    background-color: rgb(232, 200, 149);
}

.pad-bot-130 {
    padding-bottom: 136px;
}

.footer-logo-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.footer-icon {
    width: 96px;
    height: 96px;
    overflow: hidden;
    position: relative;
}

.footer-icon img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 220px;
    object-fit: cover;
}

.footer-logo-text {
    font-size: 36px;
    color: rgb(232, 200, 149);
    font-weight: 500;
}

.telif-footer {
    background-color: rgb(31, 78, 77);
    padding: 60px;
}

.telif-copyright {
    background-color: rgb(77, 114, 113);
    padding: 12px 24px;
}

.telif-copyright .container {
    display: flex;
    justify-content: end;
    align-items: center;
}

.telif-header .logo {
    height: 36px;
}

@media screen and (max-width: 1400px) {
    .kat-left select {
        padding: 10px 0px;
        width: fit-content;
    }
}

@media screen and (max-width: 1200px) {
    .kat-left {
        gap: 30px;
    }

    .swiper-button-next img,
    .swiper-button-prev img {
        width: 30px;
    }

    .swiper-button-next {
        right: 30px !important;
    }

    .swiper-button-prev {
        left: 30px !important;
    }
}

@media screen and (max-width: 991px) {
    .kat-btn2 {
        padding: 8px 16px;
    }

    .kat-left {
        gap: 20px;
    }

    .arrow-box {
        width: 30px;
        height: 30px;
    }

    .kat-btn2:hover .arrow1 {
        transform: translateX(30px);
    }

    .kat-btn2:hover .arrow2 {
        transform: translateX(30px);
    }

    .ilet-map-sec .footer-social {
        flex-wrap: wrap;
        gap: 36px;
        padding-top: 20px;
    }

    .mobile {
        display: block;
        position: absolute;
        bottom: 100px;
        right: 0px;
        text-align: right;
        width: 100%;
        padding: 20px;
    }

    .mobile li {
        margin: 20px 0px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .proje-detay-left {
        min-width: unset;
        width: 250px;
        padding-right: 10px;
    }

    .proje-detay-left ul li {
        font-size: 12px;
    }

    .swiper-button-next img,
    .swiper-button-prev img {
        width: 25px;
    }

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

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

    .float-btn {
        width: 212px;
    }

    .form-row {
        width: 600px;
    }

    .telif-card td {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .kat-btn2 {
        padding: 10px 5px;
        gap: 10px;
    }

    .kat-right {
        gap: 6px;
    }

    .kat-left {
        gap: 10px;
    }

    .kat-left span {
        font-size: 13px;
    }

    .kat-right span {
        font-size: 11px;
    }

    .arrow-box {
        width: 30px;
        height: 30px;
    }

    .kat-btn2:hover .arrow1 {
        transform: translateX(30px);
    }

    .kat-btn2:hover .arrow2 {
        transform: translateX(30px);
    }

    .kat-left select {
        padding: 10px 20px 10px 10px;
        width: fit-content;
        background-size: 16px;
        background-position: 98% 50%;
    }

    .telif-header {
        padding: 16px 24px;
    }

    .telif-header.bar2 {
        padding: 40px 0px;
    }

    .telif-header .logo {
        height: 24px;
    }

    .telif-page .container {
        padding: 0px;
        margin: 0px;
        width: 100%;
        max-width: unset;
    }

    .telif-page .row {
        margin: 0px -12px !important;
    }

    .telif-page .col-6 {
        padding: 4px !important;
    }

    .telif-top-img {
        height: 252px;
    }

    .telif-top-desc {
        padding: 24px;
        margin-bottom: 60px;
    }

    .telif-top-desc h5 {
        font-size: 16px;
        margin: 0px;
    }

    .telif-desc-logo {
        height: 42px;
    }

    .telif-img1 {
        height: 240px;
        margin-bottom: 8px;
    }

    .telif-img2 {
        height: 120px;
    }

    .telif-img3 {
        height: 120px;
    }

    .telif-img4 {
        height: 120px;
    }

    .telif-img5 {
        height: 120px;
    }

    .telif-img6 {
        height: 120px;
    }

    .telif-card {
        margin: 8px 8px 0px;
        width: calc(100% - 16px);
    }

    .telif-card h5 {
        font-size: 21px;
    }

    .telif-card h3 {
        font-size: 21px;
    }

    .pad-bot-130 {
        padding-bottom: 108px;
    }

    .footer-logo-text {
        font-size: 22px;
    }

    .footer-logo-wrap {
        flex-direction: column;
        gap: 5px;
        margin-bottom: 32px;
    }

    .footer-icon {
        width: 65px;
        height: 65px;
    }

    .footer-icon img {
        height: 160px;
    }

    .telif-footer {
        padding: 60px 16px;
    }

    .telif-footer .footer-social img {
        filter: invert(1) brightness(15);
    }

    .telif-footer .footer-social {
        margin: 0px;
    }

    .telif-copyright .container {
        justify-content: center;
    }

    .dairefoto {
        width: 70%;
    }
}

@media screen and (max-width: 767px) {
    .header-main {
        padding: 28px 10px;
    }

    .header-scroll {
        padding: 12px 10px;
    }

    .proje-scroll-bar {
        flex-direction: column;
        padding: 0px 6px;
        gap: 8px;
    }

    .header-scroll .proje-scroll-bar {
        flex-direction: column;
        padding: 6px 10px;
        gap: 8px;
    }

    .proje-scroll-bar ul {
        gap: 8px;
    }

    .proje-scroll-bar ul.scroll-bar-left {
        justify-content: space-between;
        width: 100%;
    }

    .proje-scroll-bar ul.scroll-bar-right {
        gap: 24px;
    }

    .proje-scroll-bar li a {
        gap: 6px;
        font-size: 10px;
        text-align: center;
    }

    .proje-scroll-bar li a span {
        display: none;
    }

    .menu-wrap {
        width: 70%;
    }

    .logo .logo-icon {
        height: 34px;
    }

    .logo .logo-text {
        height: 16px;
    }

    .form-row {
        width: 100%;
    }

    .contact-btn span {
        display: none;
    }

    .contact-btn img {
        width: 18px;
    }

    .contact-btn-bar {
        gap: 3px;
    }

    .contact-btn {
        font-size: 10px;
        padding: 16px 12px;
    }

    .contact-form.active {
        padding: 10px;
        height: 485px;
        max-height: 100svh;
    }

    .contact-bar {
        width: 100%;
        left: 0px;
        right: 0px;
        bottom: -1px;
        transform: none;
        border-radius: 0px;
    }

    .blog-detay-heading {
        font-size: 32px;
    }

    h1 {
        font-size: 42px !important;
        line-height: 1;
    }

    h2 {
        font-size: 21px;
    }

    h3 {
        font-size: 16px;
    }

    h4 {
        font-size: 16px !important;
    }

    h5 {
        font-size: 14px;
    }

    h6 {
        font-size: 14px;
    }

    body {
        font-size: 14px;
        margin-bottom: 65px;
    }

    .yenifont {
        font-size: 40px;
    }

    .padding-x {
        padding-left: 20px;
        padding-right: 20px;
    }

    .padding-y {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .row {
        margin: 0px !important;
    }

    .container {
        padding: 0px 20px;
    }

    .mobile-p-0 {
        padding: 0px !important;
    }

    .ruslan-pading {
        padding: 20px 10px;
    }

    .footer-main {
        padding: 40px 20px;
    }

    .footer-left {
        margin-bottom: 30px;
    }

    .footer-logo-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-motto {
        max-width: 140px;
    }

    .footer-column {
        margin-bottom: 25px;
    }

    .footer-social {
        gap: 12px;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
    }

    .footer-social img {
        width: 18px;
        height: 18px;
    }

    .copyright {
        padding: 20px;
    }

    .copyright p {
        font-size: 12px;
        text-align: center;
        margin-bottom: 8px;
    }

    .copyright .row>div {
        text-align: center !important;
        margin-bottom: 10px;
    }

    .copyright img {
        height: 25px;
    }

    .team-card img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .accordion,
    .accordion::after {
        font-size: 16px;
    }

    .hakk-banner,
    .proje-detay-banner {
        padding: 0px 60px 0px 20px;
    }

    .alt-banner h5 {
        padding: 10px 20px;
    }

    .alt-banner {
        height: 400px;
        padding: 0px 20px;
    }

    .category-btn-wrap {
        gap: 10px;
        flex-direction: column;
        padding: 20px;
    }

    .blog-wrap .team-card,
    .proje-card {
        margin-bottom: 20px;
    }

    .blog-detay-sec {
        padding: 20px 0px;
    }

    .proje-logo {
        transform: none;
        left: 60px;
        height: 45px;
    }

    .header-scroll .proje-logo {
        transform: none;
        left: 60px;
        height: 45px;
        top: 12px;
    }

    .proje-logo.labella {
        opacity: 0;
    }

    .header-scroll .proje-logo.labella {
        top: 6px;
        opacity: 1;
        height: 40px;
        left: 40px;
    }

    .proje-logo.eternia {
        height: 35px;
    }

    .header-scroll .proje-logo.eternia {
        top: 12px;
        left: 60px;
    }

    .proje-logo.allstar {
        height: 30px;
        left: 10px;
        top: 24px;
    }

    .header-scroll .proje-logo.allstar {
        top: 12px;
        left: 10px;
    }

    .proje-logo.allure {
        height: 25px;
        top: 30px;
    }

    .header-scroll .proje-logo.allure {
        top: 15px;
        left: 60px;
        height: 25px;
    }

    .proje-logo.coolest {
        height: 35px;
        top: 28px;
    }

    .header-scroll .proje-logo.coolest {
        top: 12px;
        left: 60px;
    }

    .proje-detay-sec {
        padding: 20px 0px;
    }

    .kat-btn {
        margin-top: 0px;
    }

    .proje-detay-sec .check-row p {
        margin-left: 10px;
    }

    .kat-btn,
    .sart-btn {
        padding: 8px 12px;
    }

    .revGallery-anchor {
        padding: 6px;
    }

    .detail-galeri {
        margin: 0px -6px;
        padding-bottom: 40px;
    }

    .proje-detay-sec .form-row {
        padding: 20px;
    }

    .menu-bar {
        padding: 36px 20px;
    }

    .menu-bar.bottom-bar {
        padding-bottom: 100px;
    }

    .menu-nav {
        padding: 20px;
        font-size: 18px;
    }

    .home-special-sec {
        padding: 60px 20px;
    }

    .popup img {
        height: unset;
        width: 90%;
    }

    .home-alt-img {
        height: 300px;
    }

    .home-proje-name-slider {
        width: 300px;
    }

    .proje-banner-video.pc {
        display: none;
    }

    .proje-banner-video.mobile {
        display: block;
        padding: 0px;
    }

    .contact-form input {
        margin-bottom: 8px;
    }

    .check-row {
        margin-top: 12px;
    }

    .contact-form form {
        padding: 8px 0px;
    }

    .contact-form p {
        font-size: 10px;
    }

    #langBtnContainer,
    #currencyBtnContainer {
        gap: 8px;
    }

    .lang-btn,
    .currency-btn {
        padding: 8px 12px;
        font-size: 10px;
    }

    .lang-btn b,
    .currency-btn b {
        font-size: 12px;
    }

    .lang-menu {
        gap: 12px;
        padding: 16px;
    }

    .ruslan-text-padding {
        padding-right: 0px;
    }

    .logo.allstar-page {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .mobililk {
        display: none;
    }
}

@media screen and (max-width: 567px) {
    .home-proje-name-slider {
        width: 200px;
    }
}

.position-relative1 {
    position: relative;
}

.position-absolute1 {
    position: absolute;
}

.download-btn1 {
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, opacity 0.3s;
    z-index: 2;
    opacity: 0;
}

.download-btn1:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.overflow-hidden1:hover .download-btn1,
.overflow-hidden1 .download-btn1:focus {
    opacity: 1;
}

@media (max-width: 768px) {
    .download-btn1 {
        font-size: 14px;
        padding: 8px 16px;
        bottom: 50px;
        left: 50%;
        transform: translateX(-50%);
        opacity: 1;
    }

    .overflow-hidden1:hover .download-btn1,
    .overflow-hidden1 .download-btn1:focus {
        opacity: 1;
    }
}

.dairefoto {
    width: 50%;
    height: auto;
    object-fit: cover;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

about-section {
    width: 90%;
    margin: 0px auto;
}

.bg-gold {
    background-color: rgb(249, 249, 249);
    padding: 100px 0px 120px;
    position: relative;
}

.bg-gold::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    width: 140px;
    height: 506px;
    background-image: url("../images/logo-right.png");
    background-size: auto 100%;
    background-position: right center;
}

.proje-slider-section {
    background-color: rgb(249, 249, 249);
}

.proje-slider-left {
    padding: 40px 30px;
    background: rgb(255, 255, 255);
    position: relative;
}

.proje-slider-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.proje-slider-logo-icon {
    height: 44px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(67%) sepia(34%) saturate(687%) hue-rotate(3deg) brightness(96%) contrast(85%);
}

.proje-slider-logo-text {
    font-size: 32px;
    font-weight: 700;
    color: rgb(165, 142, 106);
    font-family: Kalnia, serif;
}

.proje-slider-title {
    font-size: 34px;
    margin-bottom: 20px;
    font-weight: 600;
}

.proje-slider-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgb(97, 113, 112);
    margin-bottom: 40px;
}

.proje-slider-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: rgb(232, 200, 149);
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: 600;
    transition: 300ms;
    position: absolute;
    left: 30px;
    bottom: 30px;
}

.proje-slider-btn:hover {
    background-color: rgb(141, 116, 88);
    color: rgb(255, 255, 255);
}

.proje-slider-right {
    padding-left: 40px;
}

.proje-tab-wrapper {
    display: flex;
    margin-bottom: 32px;
    gap: 0px;
    border-bottom: none;
}

.proje-tab {
    padding: 12px 24px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: rgb(23, 56, 55);
    cursor: pointer;
    transition: 300ms;
    background: rgb(255, 255, 255);
    border-radius: 0px;
}

.proje-tab.active {
    color: rgb(255, 255, 255);
    background: rgb(23, 56, 55);
    border-radius: 0px;
}

.proje-tab:hover:not(.active) {
    background: rgb(245, 245, 245);
}

.proje-slider-container {
    position: relative;
    padding-left: 0px;
}

.proje-card-slide {
    background-color: rgb(255, 255, 255);
    margin: 0px 12px;
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 300ms;
}

.proje-card-slide:hover {
    transform: translateY(-8px);
}

.proje-card-image {
    width: 100%;
    object-fit: cover;
    display: block;
}

.proje-card-title {
    font-size: 26px;
    color: rgb(32, 79, 78);
    margin: 24px 24px 12px;
    font-weight: 600;
}

.proje-card-info {
    font-size: 14px;
    color: rgb(84, 84, 84);
    margin: 0px 24px 16px;
}

.proje-card-link {
    display: inline-block;
    color: rgb(84, 84, 84);
    text-decoration: underline;
    margin: 0px 24px 24px;
    font-size: 14px;
}

.proje-slider .slick-list {
    margin: 0px -12px;
    padding-left: 0px !important;
}

.proje-slider .slick-track {
    display: flex;
    margin-left: 0px !important;
    margin-right: 0px !important;
    left: 0px !important;
}

.proje-slider .slick-slide {
    padding-left: 0px;
}

.proje-slider .slick-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 132px;
    list-style: none;
    padding: 0px;
    bottom: -40px;
}

.proje-slider .slick-dots li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgb(208, 208, 208);
    cursor: pointer;
    transition: 300ms;
    margin: 1px;
}

.proje-slider .slick-dots li.slick-active {
    background-color: rgb(32, 79, 78);
}

.proje-slider .slick-dots button {
    display: none;
}

@media (max-width: 1200px) {
    .proje-slider-left {
        padding-right: 40px;
    }

    .proje-slider-right {
        padding-left: 20px;
    }
}

@media (max-width: 992px) {
    .bg-gold {
        padding: 80px 0px;
    }

    .proje-slider-left,
    .proje-slider-right {
        padding: 0px 20px;
    }

    .proje-slider-left {
        margin-bottom: 50px;
        padding-right: 20px;
    }

    .proje-slider-right {
        padding-left: 20px;
    }

    .proje-slider-title {
        font-size: 48px;
        margin-bottom: 24px;
    }

    .proje-slider-description {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .proje-slider-logo {
        margin-bottom: 32px;
    }

    .proje-card-image {
        /* height: 240px; */
    }

    .proje-card-title {
        font-size: 24px;
        margin: 20px 20px 10px;
    }

    .proje-card-info {
        font-size: 13px;
        margin: 0px 20px 12px;
    }

    .proje-card-link {
        margin: 0px 20px 20px;
        font-size: 13px;
    }

    .proje-tab-wrapper {
        margin-bottom: 24px;
    }

    .proje-tab {
        /* padding: 10px 20px; */
        /* font-size: 15px; */
    }
}

@media (max-width: 768px) {
    .bg-gold {
        padding: 60px 0px;
    }

    .proje-slider-left,
    .proje-slider-right {
        padding: 0px 15px;
    }

    .proje-slider-logo {
        margin-bottom: 24px;
    }

    .proje-slider-logo-icon {
        height: 36px;
    }

    .proje-slider-logo-text {
        font-size: 28px;
    }

    .proje-slider-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .proje-slider-description {
        font-size: 14px;
        margin-bottom: 28px;
        line-height: 1.5;
    }

    .proje-slider-btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .proje-card-image {
        /* height: 220px; */
    }

    .proje-card-title {
        font-size: 22px;
        margin: 18px 18px 8px;
    }

    .proje-card-info {
        font-size: 12px;
        margin: 0px 18px 10px;
    }

    .proje-card-link {
        margin: 0px 18px 18px;
        font-size: 12px;
    }

    .proje-tab {
        /* padding: 8px 16px; */
        /* font-size: 14px; */
    }

    .proje-tab-wrapper {
        margin-bottom: 20px;
    }

    .proje-slider .slick-dots {
        margin-top: 24px;
    }
}

@media (max-width: 576px) {
    .bg-gold {
        padding: 50px 0px;
    }

    .proje-slider-left,
    .proje-slider-right {
        padding: 0px 10px;
    }

    .proje-slider-title {
        font-size: 28px;
    }

    .proje-slider-description {
        font-size: 13px;
    }

    .proje-card-image {
        /* height: 200px; */
    }

    .proje-card-title {
        font-size: 20px;
    }

    .proje-tab {
        /* padding: 8px 12px; */
        /* font-size: 13px; */
    }

    .proje-slider .slick-list {
        margin: 0px -8px;
    }

    .proje-card-slide {
        margin: 0px 8px;
    }
}

.diger-projeler-section {
    background-color: rgb(255, 255, 255);
    padding-top: 80px;
}

.diger-projeler-header {
    margin-bottom: 60px;
}

.diger-projeler-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 16px;
}

.diger-projeler-subtitle {
    font-size: 16px;
    color: rgb(84, 84, 84);
    max-width: 700px;
    margin: 0px auto;
}

.diger-projeler-slider .proje-card-image {
    height: 370px;
    object-fit: cover;
}

@media (max-width: 992px) {
    .diger-projeler-title {
        font-size: 36px;
    }

    .diger-projeler-slider .proje-card-image {
        height: 320px;
    }
}

@media (max-width: 768px) {

    .diger-projeler-header {
        margin-bottom: 40px;
    }

    .diger-projeler-title {
        font-size: 32px;
    }

    .diger-projeler-subtitle {
        font-size: 14px;
    }

    .diger-projeler-slider .proje-card-image {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .diger-projeler-title {
        font-size: 28px;
    }

    .diger-projeler-slider .proje-card-image {
        height: 240px;
    }
}

.ayricaliklar-section {
    position: relative;
    padding: 100px 0px;
    background-color: rgb(255, 255, 255);
    overflow: hidden;
}

.ayricaliklar-section::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    height: 330px;
    background-image: url("../images/leaf-left.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    filter: blur(1px);
    z-index: 0;
}

.ayricaliklar-header {
    display: grid;
    grid-template-columns: 30% 67%;
    gap: 3%;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
    align-items: center;
}

.ayricaliklar-label {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgb(232, 200, 149);
    margin-bottom: 16px;
}

.ayricaliklar-title {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    color: rgb(23, 56, 55);
}

.ayricaliklar-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgb(84, 84, 84);
    margin: 0px;
    font-style: italic;
    font-weight: 500;
}

.ayricaliklar-cards-wrapper {
    position: relative;
    z-index: 1;
}

.ayricaliklar-cards-slider {
    display: block;
}

.ayricaliklar-cards-slider:not(.slick-initialized) {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ayricaliklar-card {
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.ayricaliklar-card:hover {
    transform: translateY(-10px);
}

.ayricaliklar-card-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    margin-bottom: 24px;
}

.ayricaliklar-card-title {
    font-size: 24px;
    font-weight: 600;
    color: rgb(23, 56, 55);
    margin: 0px 0px 16px;
    line-height: 1.3;
}

.ayricaliklar-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgb(84, 84, 84);
    margin: 0px;
}

.ayricaliklar-cards-slider.slick-initialized {
    display: block;
}

.ayricaliklar-cards-slider .slick-list {
    margin: 0px -12px;
}

.ayricaliklar-cards-slider .slick-slide {
    padding: 0px 12px;
}

.ayricaliklar-cards-slider .slick-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    list-style: none;
    padding: 0px;
}

.ayricaliklar-cards-slider .slick-dots li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgb(208, 208, 208);
    cursor: pointer;
    transition: 300ms;
}

.ayricaliklar-cards-slider .slick-dots li.slick-active {
    background-color: rgb(23, 56, 55);
}

.ayricaliklar-cards-slider .slick-dots button {
    display: none;
}

@media (max-width: 1200px) {
    .ayricaliklar-header {
        grid-template-columns: 1fr;
        gap: 40px;
    }



    .ayricaliklar-cards-slider:not(.slick-initialized) {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .ayricaliklar-section {
        padding: 60px 0px;
    }

    .ayricaliklar-header {
        margin-bottom: 50px;
    }

    .ayricaliklar-description {
        font-size: 15px;
    }

    .ayricaliklar-card-image {
        height: 240px;
    }

    .ayricaliklar-card-title {
        font-size: 22px;
    }

    .ayricaliklar-section::before {
        display: none;
    }
}

.project-container {
    width: 87%;
    margin: 0px auto;
    display: grid;
    grid-template-columns: 32% 67%;
    gap: 1%;
}

.proje-slider.tamamlanan-slider.slick-initialized.slick-slider.slick-dotted {
    margin-bottom: 0px !important;
}

.proje-slider.devam-slider.slick-initialized.slick-slider.slick-dotted {
    margin-bottom: 0px !important;
}

.ayricaliklar-cards-slider .slick-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 132px;
    list-style: none;
    padding: 0px;
    bottom: -60px;
}

.ayricaliklar-cards-slider .slick-dots li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgb(208, 208, 208);
    cursor: pointer;
    transition: 300ms;
    margin: 1px;
}

.ayricaliklar-cards-slider .slick-dots li.slick-active {
    background-color: rgb(32, 79, 78);
}

.contact-section {
    width: 100%;
    margin: 0px;
    padding: 0px;
    position: relative;
    overflow: hidden;
}

.contact-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 630px;
    margin: 0px;
    padding: 0px;
}

.contact-left {
    width: calc(100% - 830px);
    position: relative;
    height: 630px;
    display: flex;
    justify-content: flex-end;
    padding: 80px 60px;
}

.contact-bg-image {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

.contact-info-box {
    position: relative;
    background-color: rgb(255, 255, 255);
    padding: 60px 50px;
    max-width: 600px;
    width: 100%;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 20px;
}

.contact-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-logo-icon {
    height: 44px;
    width: auto;
}

.contact-logo-text {
    font-size: 32px;
    font-weight: 700;
    color: rgb(165, 142, 106);
    font-family: Kalnia, serif;
}

.contact-info-title {
    font-size: 36px;
    font-weight: 700;
    color: rgb(23, 56, 55);
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-info-intro {
    font-size: 16px;
    line-height: 1.6;
    color: rgb(84, 84, 84);
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-details p {
    font-size: 17px;
    line-height: 1.6;
    color: rgb(84, 84, 84);
    margin: 0px;
    font-weight: 600;
}

.contact-address {
    font-weight: 500;
}

.contact-phone-email {
    font-weight: 500;
}

.contact-whatsapp {
    font-weight: 500;
}

.contact-link {
    color: rgb(84, 84, 84);
    text-decoration: none;
    transition: 300ms;
    cursor: pointer;
}

.contact-link:hover {
    color: rgb(79, 122, 118);
    text-decoration: underline;
}

.contact-leaf {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: auto;
    opacity: 0.6;
    z-index: 2;
}

.contact-right {
    width: 680px;
    background-color: rgb(249, 249, 249);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 630px;
    margin-left: 50px;
    margin-right: 100px;
}

.contact-form-title {
    font-size: 36px;
    font-weight: 700;
    color: rgb(23, 56, 55);
    margin-bottom: 40px;
    line-height: 1.2;
}

.contact-form-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.form-row-top {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
}

.form-group-half {
    flex: 1 1 0%;
    width: 50%;
}

.form-group-full {
    width: 100%;
}

.contact-form-main input,
.contact-form-main select,
.contact-form-main textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgb(224, 224, 224);
    background-color: rgb(255, 255, 255);
    color: rgb(84, 84, 84);
    font-size: 14px;
    font-weight: 600;
    font-family: Figtree, sans-serif;
    border-radius: 0px;
    transition: 300ms;
    box-sizing: border-box;
}

.contact-form-main input:focus,
.contact-form-main select:focus,
.contact-form-main textarea:focus {
    outline: none;
    border-color: rgb(79, 122, 118);
    box-shadow: rgba(79, 122, 118, 0.1) 0px 0px 0px 2px;
}

.contact-form-main input::placeholder,
.contact-form-main textarea::placeholder {
    color: rgb(23, 56, 55);
}

.contact-form-main select {
    appearance: none;
    background-image: url("../images/svg/chevron-down.svg");
    background-size: 20px;
    background-position: 95% 50%;
    background-repeat: no-repeat;
    cursor: pointer;
    padding-right: 40px;
}

.contact-form-main select:focus {
    background-image: url("../images/svg/chevron-up.svg");
}

.contact-form-main textarea {
    resize: vertical;
    min-height: 120px;
    font-family: Figtree, sans-serif;
}

.form-submit-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}

.contact-submit-btn {
    background-color: rgb(232, 200, 149);
    color: rgb(255, 255, 255);
    border: none;
    padding: 12px 26px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 300ms;
    font-family: Figtree, sans-serif;
}

.contact-submit-btn:hover {
    background-color: rgb(165, 142, 106);
    transform: translateY(-2px);
    box-shadow: rgba(232, 200, 149, 0.3) 0px 4px 12px;
}

@media (max-width: 1400px) {
    .contact-left {
        width: initial;
    }
}

@media (max-width: 1200px) {
    .contact-left {
        padding: 60px 40px;
    }

    .contact-info-box {
        padding: 50px 40px;
    }

    .contact-right {
        padding: 60px 40px;
        width: 680px;
        margin-left: 50px;
        margin-right: 100px;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
        height: auto;
    }

    .contact-left {
        width: 100%;
        height: 630px;
        padding: 60px 40px;
    }

    .contact-right {
        width: 100%;
        height: auto;
        min-height: auto;
        padding: 60px 40px;
        margin-left: 0px;
        margin-right: 0px;
    }

    .contact-info-box {
        max-width: 100%;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .contact-left {
        padding: 40px 20px;
        height: 500px;
    }

    .contact-info-box {
        padding: 40px 30px;
    }

    .contact-right {
        padding: 40px 20px;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .contact-logo-wrapper {
        margin-bottom: 20px;
    }

    .contact-logo-icon {
        height: 36px;
    }

    .contact-logo-text {
        font-size: 28px;
    }

    .contact-info-intro {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .contact-details p {
        font-size: 14px;
    }

    .contact-leaf {
        width: 60px;
        bottom: 15px;
        right: 15px;
    }

    .form-row-top {
        flex-direction: column;
        gap: 16px;
    }

    .form-group-half {
        width: 100%;
    }

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

    .contact-form-main input,
    .contact-form-main select,
    .contact-form-main textarea {
        padding: 12px 14px;
        font-size: 14px;
    }

    .contact-submit-btn {
        padding: 12px 40px;
        font-size: 14px;
        width: 100%;
    }

    .form-submit-wrapper {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .contact-left {
        padding: 30px 15px;
        height: 400px;
    }

    .contact-info-box {
        padding: 30px 20px;
    }

    .contact-right {
        padding: 30px 15px;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .contact-logo-icon {
        height: 32px;
    }

    .contact-logo-text {
        font-size: 24px;
    }

    .contact-leaf {
        width: 50px;
        bottom: 10px;
        right: 10px;
    }
}

.blog-section {
    padding: 100px 0px;
    position: relative;
}

.blog-section-wrapper {
    position: relative;
    width: 100%;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.blog-title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.1;
}

.blog-subtitle {
    font-size: 16px;
    color: rgb(84, 84, 84);
    max-width: 700px;
    margin: 0px auto;
    line-height: 1.6;
}

.blog-slider-container {
    position: relative;
    z-index: 2;
    padding: 0px 20px;
}

.blog-slider {
    position: relative;
}

.blog-card {
    background-color: rgb(252, 250, 247);
    margin: 0px 12px;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.blog-card-content {
    padding: 16px;
}

.blog-card-title {
    font-size: 15px;
    font-weight: 600;
    color: rgb(23, 56, 55);
    margin-bottom: 20px;
    line-height: 1.4;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-button {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgb(232, 200, 149);
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    transition: 0.3s;
    pointer-events: none;
}

.blog-card-button:hover {
    background-color: rgb(165, 142, 106);
    color: rgb(255, 255, 255);
}

.blog-slider .slick-list {
    margin: 0px -12px;
    padding-left: 0px !important;
}

.blog-slider .slick-track {
    display: flex;
    margin-left: 0px !important;
    margin-right: 0px !important;
    left: 0px !important;
}

.blog-slider .slick-slide {
    padding-left: 0px;
}

.blog-slider .slick-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 60px;
    list-style: none;
    padding: 0px;
    bottom: -40px;
}

.blog-slider .slick-dots li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgb(208, 208, 208);
    cursor: pointer;
    transition: 300ms;
    margin: 1px;
}

.blog-slider .slick-dots li.slick-active {
    background-color: rgb(32, 79, 78);
}

.blog-slider .slick-dots button {
    display: none;
}

@media (max-width: 1200px) {
    .blog-after {
        width: 200px;
        height: 360px;
    }

    .blog-title {
        font-size: 60px;
    }
}

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

    .blog-after {
        width: 150px;
        height: 270px;
    }

    .blog-title {
        font-size: 48px;
    }

    .blog-subtitle {
        font-size: 15px;
        padding: 0px 20px;
    }

    .blog-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0px;
    }

    .blog-after {
        width: 120px;
        height: 216px;
    }

    .blog-title {
        font-size: 36px;
    }

    .blog-subtitle {
        font-size: 14px;
    }

    .blog-card-image {
        height: 200px;
    }

    .blog-card-title {
        font-size: 16px;
        min-height: 44px;
    }

    .blog-slider .slick-list {
        margin: 0px -8px;
    }

    .blog-card {
        margin: 0px 8px;
    }

    .blog-slider .slick-dots {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .blog-section {
        padding: 50px 0px;
    }

    .blog-after {
        width: 100px;
        height: 180px;
    }

    .blog-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .blog-header {
        margin-bottom: 30px;
    }

    .blog-card-image {
        height: 180px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-title {
        font-size: 15px;
        min-height: 42px;
        margin-bottom: 15px;
    }

    .blog-card-button {
        padding: 8px 20px;
        font-size: 13px;
    }
}

.labella-project-section {
    position: relative;
    background-color: rgb(255, 255, 255);
    padding: 80px 0px 0px;
    overflow: hidden;
}

.labella-project-section::after {
    content: "";
    position: absolute;
    top: 150px;
    right: 0px;
    width: 140px;
    height: 296px;
    background: url("../images/leaf-right.png") center center no-repeat;
}

.labella-project-section::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 80px;
    width: 102px;
    height: 356px;
    background: url("../images/detail-icon.svg") center center no-repeat;
}

.labella-container {
    max-width: 1400px;
    margin: 0px auto;
    position: relative;
}

.labella-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0px;
    gap: 40px;
}

.labella-header-left {
    flex: 1 1 0%;
    max-width: 60%;
}

.labella-logo-wrapper {
    margin-bottom: 0px;
}

.labella-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.labella-overview {
    font-size: 18px;
    color: rgb(28, 53, 52);
    font-weight: 400;
    font-family: ivymode, sans-serif;
    width: 80%;
    margin: 26px 0px;
}

.labella-header-right {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.labella-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 300ms;
    border: none;
    font-family: Figtree, sans-serif;
}

.labella-btn-download {
    background-color: rgb(232, 200, 149);
    color: rgb(255, 255, 255);
    height: 46px;
}

.labella-btn-download:hover {
    background-color: rgb(165, 142, 106);
}

.labella-btn-share {
    background-color: rgb(255, 255, 255);
    color: rgb(232, 200, 149);
    border: 1px solid rgb(232, 200, 149);
    height: 46px;
}

.labella-btn-share:hover {
    background-color: rgb(232, 200, 149);
    color: rgb(255, 255, 255);
}

.labella-btn .btn-icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.labella-btn-share .btn-icon {
    filter: brightness(0) saturate(100%) invert(79%) sepia(15%) saturate(1200%) hue-rotate(350deg) brightness(105%) contrast(90%);
}

.labella-btn-share:hover .btn-icon {
    filter: brightness(0) invert(1);
}

.labella-main-content {
    display: grid;
    grid-template-columns: 58% 40%;
    gap: 2%;
    margin-bottom: 40px;
}

.labella-slider-wrapper {
    position: relative;
}

.labella-image-slider {
    position: relative;
    width: 100%;
    opacity: 1;
}

.labella-image-slider.slick-initialized {
    opacity: 1;
}

.labella-image-slider .slick-list {
    overflow: hidden;
}

.labella-image-slider .slick-track {
    display: flex;
}

.labella-slide {
    position: relative;
    outline: none;
}

.labella-slide-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.labella-slider-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.labella-video-overlay {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 12px 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: 300ms;
    border: none;
    z-index: 2;
    font-family: Figtree, sans-serif;
    height: 110px;
}

.labella-video-overlay:focus {
    outline: none;
}

.video-play-icon {
    width: 54px;
    height: 54px;
    color: rgb(232, 200, 149);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255, 255, 255);
}

.labella-video-overlay span {
    font-size: 16px;
    font-weight: 500;
    color: rgb(84, 84, 84);
    text-align: left;
}

.labella-video-modal {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s, visibility 0.3s;
}

.labella-video-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.labella-video-modal-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.labella-video-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1400px;
    background-color: transparent;
    overflow: hidden;
    z-index: 10001;
    padding: 0px;
    border: none;
}

.labella-video-modal-content video {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

.labella-video-modal-close {
    position: absolute;
    top: -40px;
    right: 0px;
    background: transparent;
    border: none;
    color: rgb(255, 255, 255);
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    padding: 0px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
    z-index: 10002;
}

.labella-video-modal-close:hover {
    opacity: 0.7;
}

@media (max-width: 1200px) {
    .labella-video-modal-content {
        width: 95%;
        max-width: 95%;
    }
}

@media (max-width: 768px) {
    .labella-video-modal-content {
        width: 100%;
        max-width: 100%;
        padding: 10px;
        box-sizing: border-box;
    }

    .labella-video-modal-content video {
        width: 100%;
        height: auto;
    }

    .labella-video-modal-close {
        top: -35px;
        font-size: 35px;
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .labella-video-modal-content {
        padding: 5px;
    }

    .labella-video-modal-close {
        top: -30px;
        font-size: 30px;
        width: 30px;
        height: 30px;
    }
}

@media (min-width: 769px) {
    .labella-video-modal-content video {
        max-height: 90vh;
        object-fit: contain;
    }
}

.labella-image-slider .slick-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    list-style: none;
    padding: 0px;
    position: static;
}

.labella-image-slider .slick-dots li {
    width: 10px;
    height: 10px;
    background-color: rgb(208, 208, 208);
    cursor: pointer;
    transition: 300ms;
    margin: 0px;
    border-radius: 50%;
}

.labella-image-slider .slick-dots li.slick-active {
    background-color: rgb(23, 56, 55);
}

.labella-image-slider .slick-dots button {
    display: none;
}

.labella-info-wrapper {
    padding-left: 20px;
}

.labella-location-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgb(84, 84, 84);
    margin-bottom: 32px;
    font-weight: 400;
}

.labella-details-table {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: ivymode, sans-serif;
    font-size: 18px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    transition: background-color 300ms;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row.highlight {
    background-color: rgb(249, 249, 249);
}

.detail-label {
    font-size: 16px;
    font-weight: 600;
    color: rgb(23, 56, 55);
}

.detail-value {
    font-size: 16px;
    font-weight: 400;
    color: rgb(84, 84, 84);
}

.labella-leaf-decoration {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: auto;
    opacity: 0.3;
    filter: blur(2px);
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 1400px) {
    .labella-container {
        padding: 0px 120px;
    }
}

@media (max-width: 1280px) {
    .labella-container {
        padding: 0px 80px;
    }

    .labella-main-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .labella-header {
        flex-direction: column;
        gap: 30px;
    }

    .labella-header-left {
        max-width: 100%;
    }

    .labella-header-right {
        width: 100%;
        justify-content: flex-start;
    }

    .labella-leaf-decoration {
        width: 150px;
    }
}

@media (max-width: 992px) {
    .labella-project-section {
        padding: 60px 0px;
    }

    .labella-container {
        padding: 0px 40px;
    }

    .labella-main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .labella-info-wrapper {
        padding-left: 0px;
    }

    .labella-slider-image {
        height: 400px;
        object-fit: cover;
    }

    .labella-leaf-decoration {
        display: none;
    }
}

@media (max-width: 768px) {
    .labella-project-section {
        padding: 40px 0px;
    }

    .labella-container {
        padding: 0px 20px;
    }

    .labella-header {
        margin-bottom: 40px;
    }

    .labella-logo {
        height: 48px;
    }

    .labella-overview {
        font-size: 14px;
        line-height: 1.6;
    }

    .labella-header-right {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .labella-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 14px;
    }

    .labella-main-content {
        gap: 30px;
    }

    .labella-slider-image {
        height: 300px;
    }

    .labella-video-overlay {
        bottom: 15px;
        right: 15px;
        padding: 10px 16px;
    }

    .labella-image-slider .slick-dots {
        margin-top: 16px;
    }

    .labella-video-overlay span {
        font-size: 12px;
    }

    .video-play-icon {
        width: 20px;
        height: 20px;
    }

    .labella-location-desc {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .detail-row {
        padding: 12px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .detail-label,
    .detail-value {
        font-size: 14px;
    }

    .labella-pagination {
        margin-top: 16px;
    }
}

@media (max-width: 576px) {
    .labella-project-section {
        padding: 30px 0px;
    }

    .labella-container {
        padding: 0px 15px;
    }

    .labella-logo {
        height: 40px;
    }

    .labella-overview {
        font-size: 13px;
    }

    .labella-slider-image {
        height: 250px;
    }

    .labella-video-overlay {
        bottom: 10px;
        right: 10px;
        padding: 8px 12px;
        gap: 8px;
    }

    .labella-video-overlay span {
        font-size: 11px;
    }

    .video-play-icon {
        width: 18px;
        height: 18px;
    }

    .labella-location-desc {
        font-size: 13px;
    }

    .detail-row {
        padding: 10px 12px;
    }

    .detail-label,
    .detail-value {
        font-size: 13px;
    }
}

.sosyal-olanaklar-section {
    position: relative;
    padding: 0px;
    overflow: hidden;
    width: 100%;
}

.sosyal-olanaklar-container {
    position: relative;
    width: 100%;
    margin: 0px;
    padding: 0px;
    background-image: url("../images/olanaklar-bg.jpg");
    background-repeat: no-repeat;
    display: grid;
    grid-template-columns: 45% 52%;
    height: 800px;
    align-items: center;
    gap: 3%;
}

.sosyal-olanaklar-left {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.sosyal-olanaklar-content {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.sosyal-olanaklar-title {
    font-size: 50px;
    font-weight: 700;
    color: rgb(245, 245, 220);
    font-family: ivymode, sans-serif;
    text-align: end;
    margin: 0px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.sosyal-olanaklar-card {
    background-color: rgb(255, 255, 255);
    padding: 50px 60px;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 20px;
}

.sosyal-olanaklar-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 40px;
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.sosyal-olanaklar-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    color: rgb(84, 84, 84);
    font-weight: 500;
}

.amenity-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgb(224, 224, 224);
    color: rgb(84, 84, 84);
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
    font-family: ivymode, sans-serif;
}

.amenity-text {
    flex: 1 1 0%;
    line-height: 1.4;
}

.sosyal-olanaklar-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.sosyal-logo-icon {}

.sosyal-logo-text {
    font-size: 28px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    letter-spacing: 3px;
    font-family: ivymode, sans-serif;
}

.sosyal-olanaklar-right {
    height: 78%;
}

.sosyal-olanaklar-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.sosyal-olanaklar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.corner-cut {
    position: absolute;
    background-image: url("../images/olanaklar-bg.jpg");
    background-size: cover;
    background-position: center center;
    z-index: 4;
    background-color: rgb(23, 56, 55);
}

.corner-top-right {
    top: -50px;
    right: -50px;
    width: 140px;
    height: 140px;
    clip-path: polygon(0px 0px, 100% 0px, 100% 60%, 60% 60%, 60% 100%, 0px 100%);
}

.corner-bottom-right {
    bottom: -50px;
    right: -50px;
    width: 140px;
    height: 140px;
    clip-path: polygon(0px 0px, 60% 0px, 60% 40%, 100% 40%, 100% 100%, 0px 100%);
}

.sosyal-olanaklar-markers {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.marker {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    color: rgb(84, 84, 84);
    font-weight: 700;
    font-size: 18px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px;
}

.marker-1 {
    top: 25%;
    left: 15%;
}

.marker-2 {
    top: 30%;
    left: 35%;
}

.marker-3 {
    top: 45%;
    left: 25%;
}

.marker-4 {
    top: 35%;
    left: 55%;
}

.marker-5 {
    top: 50%;
    left: 70%;
}

.marker-6 {
    top: 55%;
    left: 45%;
}

.marker-7 {
    top: 40%;
    left: 65%;
}

.marker-8 {
    top: 60%;
    left: 30%;
}

@media (max-width: 1400px) {
    .sosyal-olanaklar-left {
        padding: 100px 6%;
    }

    .sosyal-olanaklar-content {
        max-width: initial;
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .sosyal-olanaklar-container {
        min-height: 700px;
    }

    .sosyal-olanaklar-left {
        width: 55%;
        padding: 80px 5%;
        min-height: 700px;
    }

    .sosyal-olanaklar-right {
        width: 50%;
        height: 80%;
    }

    .sosyal-olanaklar-title {
        font-size: 48px;
    }

    .sosyal-olanaklar-card {
        padding: 40px 50px;
    }

    .sosyal-olanaklar-list {
        gap: 20px 30px;
    }

    .sosyal-olanaklar-content {
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .sosyal-olanaklar-container {
        min-height: auto;
        padding-bottom: 60px;
    }

    .sosyal-olanaklar-left {
        position: relative;
        width: 100%;
        padding: 80px 5% 400px;
        min-height: auto;
        justify-content: flex-start;
    }

    .sosyal-olanaklar-right {
        position: inherit;
        right: 0px;
        top: auto;
        bottom: 0px;
        width: 100%;
        height: 350px;
        transform: none;
    }

    .sosyal-olanaklar-title {
        font-size: 42px;
    }

    .sosyal-olanaklar-content {
        gap: 40px;
    }

    .corner-cut {
        display: none;
    }
}

@media (max-width: 768px) {
    .sosyal-olanaklar-left {
        padding: 60px 4%;
    }

    .sosyal-olanaklar-title {
        font-size: 36px;
        text-align: center;
    }

    .sosyal-olanaklar-card {
        padding: 30px 35px;
    }

    .sosyal-olanaklar-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sosyal-olanaklar-list li {
        font-size: 14px;
    }

    .sosyal-olanaklar-right {}

    .sosyal-olanaklar-content {
        gap: 35px;
    }

    .marker {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

.labella-gallery-section {
    position: relative;
    background-color: rgb(255, 255, 255);
    padding: 80px 0px;
    overflow: hidden;
}

.labella-gallery-container {
    margin: 0px auto;
    position: relative;
    box-sizing: border-box;
    width: 86%;
}

.tab-content-wrapper {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.tab-content {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.inner-content {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.labella-gallery-title {
    font-size: 40px;
    font-weight: 600;
    color: rgb(23, 56, 55);
    font-family: ivymode, sans-serif;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.4;
    background-image: url("../images/text-icon.svg");
    background-position: center center;
    background-repeat: no-repeat;
    padding: 30px 0px;
}

.main-tabs-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 10px;
    margin-bottom: 36px;
}

.main-tab {
    padding: 14px 28px;
    border: 1px solid rgb(232, 200, 149);
    font-size: 16px;
    cursor: pointer;
    transition: 300ms;
    font-family: Figtree, sans-serif;
    background: transparent;
    font-weight: 600;
    color: rgb(232, 200, 149);
}

.main-tab.active {
    background-color: rgb(23, 56, 55);
    color: rgb(255, 255, 255);
    border-color: rgb(23, 56, 55);
}

.main-tab:not(.active):hover {
    background-color: rgba(232, 200, 149, 0.07);
}

.inner-tabs-wrapper {
    display: none;
    margin-bottom: 40px;
    justify-content: center;
    padding-left: 0px;
    width: 100%;
    gap: 10px;
}

.inner-tabs-wrapper.show {
    display: flex;
}

.inner-tab {
    padding: 12px 30px;
    background-color: transparent;
    border: 1px solid rgb(241, 241, 241);
    font-size: 16px;
    font-weight: 600;
    color: rgb(185, 195, 195);
    cursor: pointer;
    transition: 300ms;
    font-family: Figtree, sans-serif;
}

.inner-tab.active {
    background-color: rgb(232, 200, 149);
    color: rgb(255, 255, 255);
    border-color: rgb(232, 200, 149);
}

.inner-tab:not(.active):hover {
    background-color: rgb(249, 249, 249);
}

.tab-content-wrapper {
    position: relative;
    min-height: 500px;
    width: 100%;
    max-width: 100%;
}

.tab-content {
    display: none;
    width: 100%;
    max-width: 100%;
}

.tab-content.active {
    display: block;
    width: 100%;
    max-width: 100%;
}

.inner-content {
    display: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.inner-content.active {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    transition: opacity 300ms;
    width: 100%;
    height: auto;
}

.gallery-item:hover {
    opacity: 0.9;
}

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

.sanal-tur-text {
    text-align: center;
    padding: 60px 20px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sanal-tur-title {
    font-size: 48px;
    font-weight: 400;
    color: rgb(23, 56, 55);
    font-family: ivymode, sans-serif;
    margin: 0px;
}

@media (max-width: 992px) {
    .sanal-tur-text {
        padding: 40px 20px;
        min-height: 300px;
    }

    .sanal-tur-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .sanal-tur-text {
        padding: 30px 15px;
        min-height: 250px;
    }

    .sanal-tur-title {
        font-size: 28px;
    }
}

#lightGallery .lg-outer .lg-item,
#lightGallery .lg-outer .lg-image,
#lightGallery .lg-outer .lg-thumb,
#lightGallery .lg-outer .lg-thumb-item,
#lightGallery .lg-outer .lg-content,
#lightGallery .lg-outer .lg-img-wrap,
#lightGallery .lg-outer .lg-actions .lg-next,
#lightGallery .lg-outer .lg-actions .lg-prev,
#lightGallery .lg-outer .lg-toolbar,
#lightGallery .lg-outer .lg-close,
#lightGallery .lg-outer .lg-pager-thumb-cont,
#lightGallery .lg-outer .lg-pager,
#lightGallery .lg-outer .lg-toogle-thumb,
.lg-outer .lg-item,
.lg-outer .lg-image,
.lg-outer .lg-thumb,
.lg-outer .lg-thumb-item,
.lg-outer .lg-content,
.lg-outer .lg-img-wrap,
.lg-outer .lg-actions .lg-next,
.lg-outer .lg-actions .lg-prev,
.lg-outer .lg-toolbar,
.lg-outer .lg-close,
.lg-outer .lg-pager-thumb-cont,
.lg-outer .lg-pager,
.lg-outer .lg-toogle-thumb {
    border-radius: 0px !important;
}

.lg-outer .lg-thumb-item {
    border-radius: 0px !important;
}

.lg-outer .lg-actions .lg-next,
.lg-outer .lg-actions .lg-prev {
    border-radius: 0px !important;
}

.lg-outer .lg-pager {
    border-radius: 0px !important;
}

.lg-outer .lg-toogle-thumb {
    border-radius: 0px !important;
}

.lg-outer .lg-actions {
    display: block !important;
    z-index: 1080 !important;
}

.lg-outer .lg-actions .lg-next,
.lg-outer .lg-actions .lg-prev {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1080 !important;
    border-radius: 0px !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 50px !important;
    height: 50px !important;
    line-height: 50px !important;
    text-align: center !important;
    background-color: rgba(0, 0, 0, 0.45) !important;
    color: rgb(153, 153, 153) !important;
    cursor: pointer !important;
    font-size: 22px !important;
}

.lg-outer .lg-actions .lg-next {
    right: 20px !important;
    left: auto !important;
    background-image: url("../images/arrow-right.svg") !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}

.lg-actions .lg-next:before {
    content: "\e095";
    display: none !important;
}

.lg-actions .lg-prev:after {
    content: "\e095";
    display: none !important;
}

.lg-outer .lg-actions .lg-prev {
    left: 20px !important;
    right: auto !important;
    background-image: url("../images/arrow-left.svg") !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}

.lg-outer .lg-actions .lg-next:hover,
.lg-outer .lg-actions .lg-prev:hover {
    opacity: 1 !important;
    color: rgb(255, 255, 255) !important;
}

.lg-outer .lg-actions .lg-next.disabled,
.lg-outer .lg-actions .lg-prev.disabled {
    opacity: 0.5 !important;
    pointer-events: none !important;
}

.lg-outer.lg-hide-items .lg-actions .lg-next,
.lg-outer.lg-hide-items .lg-actions .lg-prev {
    opacity: 1 !important;
    visibility: visible !important;
}

.lg-outer.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image,
.lg-outer.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
    cursor: default !important;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
    cursor: default !important;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
    cursor: default !important;
    transform: scale(1) !important;
}

#lg-zoom-in,
#lg-actual-size,
#lg-zoom-out {
    display: none !important;
}

.lg-toolbar .lg-icon.lg-download,
.lg-toolbar .lg-icon[data-icon]:not(.lg-close),
.lg-toolbar .lg-icon.lg-autoplay-button {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.lg-toolbar .lg-icon {
    background-image: url("../images/close.svg") !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}

.lg-toolbar .lg-close:after {
    display: none !important;
}

.lg-toolbar .lg-icon:not(.lg-close) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0px !important;
    height: 0px !important;
    padding: 0px !important;
    margin: 0px !important;
}

.lg-toolbar .lg-close {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 50px !important;
    height: 47px !important;
}

.lg-toolbar {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transform: translate3d(0px, 0px, 0px) !important;
}

.lg-outer.lg-hide-items .lg-toolbar {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transform: translate3d(0px, 0px, 0px) !important;
}

.lg-outer .lg-toolbar {
    transition: none !important;
    opacity: 1 !important;
}

.lg-outer.lg-hide-items .lg-toolbar {
    opacity: 1 !important;
    transform: translate3d(0px, 0px, 0px) !important;
}

#lg-counter {
    opacity: 1 !important;
    visibility: visible !important;
}

.lg-outer.lg-hide-items #lg-counter {
    opacity: 1 !important;
    visibility: visible !important;
}

.lg-outer .lg-toolbar,
.lg-outer.lg-hide-items .lg-toolbar,
.lg-outer.lg-show-after-load .lg-toolbar {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transform: translate3d(0px, 0px, 0px) !important;
    transition: none !important;
}

.lg-toolbar .lg-close,
.lg-outer.lg-hide-items .lg-toolbar .lg-close {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.lg-next,
.lg-prev,
.lg-toolbar {
    transition: none !important;
}

.lg-outer .lg-item.lg-complete .lg-img-wrap {
    cursor: default !important;
}

.lg-outer .lg-item.lg-complete .lg-image {
    cursor: default !important;
    transform: scale(1) !important;
    transition: none !important;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
    pointer-events: auto !important;
    cursor: default !important;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
    pointer-events: auto !important;
    cursor: default !important;
}

.lg-outer.lg-css3.lg-zoom-dragging .lg-item,
.lg-outer.lg-zoomed .lg-item {
    cursor: default !important;
}

.lg-outer.lg-zoomed .lg-image {
    transform: scale(1) !important;
}

@media (max-width: 1400px) {
    .labella-gallery-container {
        /* padding: 0px 120px; */
    }
}

@media (max-width: 1200px) {
    .labella-gallery-container {
        padding: 0px 80px;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
}

@media (max-width: 992px) {
    .labella-gallery-section {
        padding: 60px 0px;
    }

    .labella-gallery-container {
        padding: 0px 40px;
    }

    .labella-gallery-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .main-tab {
        padding: 12px 20px;
        font-size: 14px;
    }

    .inner-tab {
        padding: 10px 18px;
        font-size: 13px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .labella-gallery-section {
        padding: 40px 0px;
    }

    .labella-gallery-container {
        padding: 0px 20px;
    }

    .labella-gallery-title {
        font-size: 22px;
        margin-bottom: 24px;
    }



    .main-tab {
        padding: 10px 16px;
        font-size: 13px;
        border: 1px solid rgb(232, 220, 196);
        margin-bottom: 8px;
    }

    .main-tab.active {
        border-bottom: 1px solid rgb(23, 56, 55);
    }

    .inner-tabs-wrapper {
        flex-wrap: wrap;
        border-bottom: none;
        margin-bottom: 24px;
    }

    .inner-tab {
        padding: 8px 14px;
        font-size: 12px;
        border: 1px solid rgb(224, 224, 224);
        margin-bottom: 8px;
    }

    .inner-tab.active {
        border-bottom: 1px solid rgb(232, 220, 196);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .labella-gallery-section {
        padding: 30px 0px;
    }

    .labella-gallery-container {
        padding: 0px 15px;
    }

    .labella-gallery-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .main-tab {
        padding: 8px 12px;
        font-size: 12px;
    }

    .inner-tab {
        padding: 6px 12px;
        font-size: 11px;
    }

    .gallery-grid {
        gap: 6px;
    }
}



h2.labella-gallery-title {
    margin-left: auto;
    width: 70%;
    margin-right: auto;
}

.galeri {
    margin-top: 100px;
}

div#galeri {
    margin-top: 30px;
}

.kat-plan-container {
    width: 80%;
    margin: 0px auto;
}

.bg-kat {
    background: rgb(252, 250, 247);
    padding: 80px 0px;
    margin: 0px auto;
}

.kat-plan-header {
    text-align: center;
    margin-bottom: 40px;
}

.kat-plan-header h4 {
    font-size: 32px;
    font-weight: 600;
}

.kat-plan-header p {
    font-size: 16px;
    font-weight: 400;
}

.sanal-tur-inner {
    width: 60%;
    margin: 0px auto;
}

.container-project-section {
    width: 80%;
    margin: 0px auto;
    padding: 40px 0px;
}

/* Eternia sayfası için header scroll stilleri - sadece bu sayfada çalışacak */
body.eternia-page header .header-main {
    backdrop-filter: blur(24px);
    /* padding: 18px 160px; */
}

body.eternia-page header .header-main .header-nav {
    color: #204F4E;
}

body.eternia-page header .header-main .logo .logo-text {
    filter: none;
}

body.eternia-page header .header-main .burger-menu-icon img {
    filter: none;
}

body.eternia-page header .header-main .lang-sel img {
    filter: none;
}

body.eternia-page header .header-main .line {
    background-color: #204F4E;
}

body.eternia-page header .header-main .header-nav li:hover img {
    filter: brightness(2.7) sepia(1);
}

body.eternia-page header .header-main .header-nav .custom-dropdown-menu {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

body.eternia-page header .header-main .header-nav .custom-dropdown-menu li a {
    color: #204F4E;
}

body.eternia-page header .header-main .header-nav .custom-dropdown-menu li a:hover {
    background-color: rgba(32, 79, 78, 0.1);
    color: #E8C895;
}

/* Responsive stilleri */
@media screen and (max-width: 1600px) {
    body.eternia-page header .header-main {
        padding: 18px 100px;
    }
}

@media screen and (max-width: 1400px) {
    body.eternia-page header .header-main {
        padding: 18px 80px;
    }
}

@media screen and (max-width: 1200px) {
    body.eternia-page header .header-main {
        padding: 18px 60px;
    }
}

@media screen and (max-width: 991px) {
    body.eternia-page header .header-main {
        padding: 18px 60px;
    }
}

@media screen and (max-width: 767px) {
    body.eternia-page header .header-main {
        padding: 12px 10px;
    }
}

.blog-hero {
    background: #173837;
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/blog-hero-pattern.svg') repeat;
    opacity: 0.1;
}

.blog-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
}

.blog-categories {
    padding: 60px 0;
    background: #f8f9fa;
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
}

.category-btn {
    padding: 12px 25px;
    border: 2px solid #2c5530;
    background: white;
    color: #2c5530;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background: #2c5530;
    color: white;
    text-decoration: none;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.blog-card {
    background: white;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}



.blog-card-category {
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c5530;
    margin: 15px 0;
    line-height: 1.4;
}

.blog-card-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.blog-card-date {
    color: #999;
    font-size: 0.9rem;
}

.blog-card-link {
    color: #2c5530;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-card-link:hover {
    color: #d4af37;
    text-decoration: none;
}

.featured-post {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 40px;
}

.featured-post .blog-card-image {
    height: 400px;
}

.featured-post .blog-card-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-post .blog-card-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.newsletter-section {
    background: #4d7271;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.newsletter-form {
    max-width: 500px;
    margin: 30px auto 0;
    display: flex;
    gap: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-btn {
    padding: 15px 30px;
    background: #e8c895;
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-btn:hover {
    background: #b8941f;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.pagination a {
    padding: 12px 18px;
    border: 1px solid #ddd;
    color: #2c5530;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.pagination a:hover,
.pagination a.active {
    background: #173837;
    color: white;
    border-color: #2c5530;
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2.5rem;
    }

    .featured-post {
        grid-template-columns: 1fr;
    }

    .featured-post .blog-card-content {
        padding: 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Konum & Mesafeler kartları */
.location-distance-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.location-distance-card {
    background: #ffffff;
    padding: 30px 20px;
    text-align: center;
    border: none;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.02);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.location-distance-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    border-color: #e0e0e0;
}

.location-distance-icon {
    width: 80px;
    height: 80px;
    border-radius: 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    background: #fcfaf7;
}

.location-distance-icon i {
    font-size: 34px;
    color: #173837;
}

.location-distance-title {
    font-size: 16px;
    font-weight: 600;
    color: #173837;
    margin-bottom: 6px;
}

.location-distance-km {
    font-size: 14px;
    color: #777777;
}

@media (max-width: 1200px) {
    .location-distance-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .location-distance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .location-distance-card {
        padding: 24px 16px;
    }
}

@media (max-width: 576px) {
    .location-distance-grid {
        grid-template-columns: 1fr;
    }
}


.blog-hero {
    background: #173837;
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/blog-hero-pattern.svg') repeat;
    opacity: 0.1;
}

.blog-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
}

.blog-categories {
    padding: 60px 0;
    background: #f8f9fa;
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
}

.category-btn {
    padding: 12px 25px;
    border: 2px solid #2c55302b;
    background: white;
    color: #2c5530;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 0px;
}

.category-btn:hover,
.category-btn.active {
    background: #2c5530;
    color: white;
    text-decoration: none;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0px;
    margin-top: 40px;
}

.blog-card {
    background: #FCFAF7;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 16px;
    padding: 10px;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}


.blog-card-category {
    color: #d4af37;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #2c5530;
    margin: 15px 0;
    line-height: 1.4;
}

.blog-card-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 13px;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.blog-card-date {
    color: #999;
    font-size: 0.9rem;
}

.blog-card-link {
    color: #2c5530;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.blog-card-link:hover {
    color: #d4af37;
    text-decoration: none;
}

.featured-post {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 40px;
}

.featured-post .blog-card-image {
    height: 400px;
}

.featured-post .blog-card-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-post .blog-card-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.newsletter-section {
    background: #4d7271;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.newsletter-form {
    max-width: 500px;
    margin: 30px auto 0;
    display: flex;
    gap: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-btn {
    padding: 15px 30px;
    background: #e8c895;
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-btn:hover {
    background: #b8941f;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.pagination a {
    padding: 12px 18px;
    border: 1px solid #ddd;
    color: #2c5530;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
}

.pagination a:hover,
.pagination a.active {
    background: #173837;
    color: white;
    border-color: #2c5530;
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2.5rem;
    }

    .featured-post {
        grid-template-columns: 1fr;
    }

    .featured-post .blog-card-content {
        padding: 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.lg-sub-html,
.lg-thumb-outer {
    display: none !important;
}

/* Mevcut blog.html dosyasındaki stiller buraya kopyalanabilir veya ortak CSS dosyası kullanılabilir */
.blog-hero {
    background: #173837;
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/blog-hero-pattern.svg') repeat;
    opacity: 0.1;
}

.blog-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
}

.blog-detail-section {
    background: #fff;
    padding: 60px 0;
}

.blog-detail {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    padding: 40px 30px;
}

.blog-detail img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 30px;
}

.blog-detail h2 {
    font-size: 2.2rem;
    color: #2c5530;
    margin-bottom: 20px;
}

.blog-detail .blog-meta {
    color: #999;
    font-size: 1rem;
    margin-bottom: 30px;
}

.blog-detail p {
    color: #444;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* İçindekiler Bölümü Stilleri - Sağ Sidebar */
.blog-detail-section {
    position: relative;
}

.table-of-contents {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    width: 280px;
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: 70vh;
    overflow-y: auto;
    z-index: 1000;
    border: 1px solid #e9ecef;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.table-of-contents.show {
    opacity: 1;
    visibility: visible;
}

.toc-title {
    font-size: 1.4rem;
    color: #2c5530;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #2c5530;
    padding-bottom: 8px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 8px;
}

.toc-list a {
    color: #2c5530;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: 6px 0;
    border-left: 2px solid transparent;
    padding-left: 12px;
    line-height: 1.4;
}

.toc-list a:hover {
    color: #1a3a1f;
    border-left-color: #2c5530;
    background: #f8f9fa;
    padding-left: 15px;
}

.toc-list .sub-item {
    margin-left: 15px;
    margin-top: 6px;
}

.toc-list .sub-item a {
    font-size: 0.85rem;
    color: #666;
    font-weight: 400;
}

.toc-list .sub-item a:hover {
    color: #2c5530;
}

/* Mobilde içindekiler gizle */
@media (max-width: 1200px) {
    .table-of-contents {
        display: none;
    }
}

/* Başlık ID'leri için scroll-margin */
.blog-detail h2,
.blog-detail h3 {
    scroll-margin-top: 100px;
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2.5rem;
    }

    .blog-detail {
        padding: 25px 10px;
    }
}