﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Playfair+Display:wght@700&family=Open+Sans:wght@400;600&family=Roboto+Condensed:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* GLOBAL STYLES */
/*body {
    overflow-x: hidden !important;
}

body {
    background: #f0f0f0;
    font-family: 'Montserrat', sans-serif;
    color: #101010;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.5px;
    width: 100%;
    min-width: 375px;
}*/

/*
h1, h2, h3, h4, h5, h6 {
    color: #70706F;
    font-family: 'Playfair', sans-serif;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
    background: -webkit-linear-gradient(7deg,#2e1f1c, #828282);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 16px;
    color: #202020;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}*/





/* ==================== */
/* GLOBAL STYLES & RESET */
/* ==================== */
/*:root {
    --primary-color: #7b6756;
    --secondary-color: #1a252f;
    --text-color: #3c3c3d;
    --text-light: #69696d;
    --text-lighter: #a1a1a3;
    --bg-light: #f5f5f6;
    --bg-lighter: #f8f8f8;
    --white: #ffffff;
    --dark-color: #2c3e50;
    --gray-color: #555;
    --light-gray: #e9e9e9;
    --border-color: #ddd;
}*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-heading-primary: 'Montserrat', sans-serif;
    --font-heading-secondary: 'Playfair Display', serif;
    --font-text-primary: 'Open Sans', sans-serif;
    --font-text-secondary: 'Lato', sans-serif;
    --font-text-alternative: 'Poppins', sans-serif;
    --font-accent: 'Raleway', sans-serif;
    --font-condensed: 'Roboto Condensed', sans-serif;
    /* Font Ağırlıkları */
    --light: 400;
    --medium: 500;
    --semibold: 600;
    --bold: 700;
    --text-color:#333;
}

body {
    /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
    font-family: var(--font-text-primary);
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Başlık Hiyerarşisi */
h1, h2, h3,
.hero-section h1,
.section-title,
.plans-title,
.project-title {
    font-family: var(--font-heading-primary);
    font-weight: var(--bold);
    letter-spacing: -0.5px;
}

p,
.about-section p,
.feature-text p,
.plan-details td {
    font-family: var(--font-text-primary);
    font-weight: var(--light);
}

/*Butonlar & Özel Vurgular*/
.btn,
.submit-btn,
.stat-number,
.navbar-brand {
    font-family: var(--font-accent);
    font-weight: var(--semibold);
}

/*-----------------------------------------------*/
/* Navbar & Slider */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: rgb(50 50 93 / 7%) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
    .navbar.scrolled {
        position: fixed;
    }
/* Masaüstü için sabit navbar */
@media (min-width: 992px) {
    .navbar {
        padding: 10px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        background: #fff;
        animation: fadeInDown 0.3s ease-out;
    }

        .navbar .nav-link {
            color: #3f3633 !important;
        }

            .navbar .nav-link:after {
                background: #3f3633;
            }

            .navbar .nav-link.active {
                position: relative;
                color: #3f3633 !important;
            }

                .navbar .nav-link.active:after {
                    content: "";
                    position: absolute;
                    bottom: -2px;
                    left: 0;
                    width: 100%;
                    height: 2px;
                    background: #3f3633;
                }
}

/* Animasyon tanımı */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-brand {
    margin-right: 0;
}

    .navbar-brand img {
        width: 200px;
        height: auto;
        transition: all 0.3s ease;
    }

.navbar-collapse {
    justify-content: flex-end;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    padding: 8px 12px;
    color: #3f3633 !important;
}

    .nav-link:after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        background: white;
        bottom: 0;
        left: 0;
        transition: width 0.3s;
    }

    .nav-link:hover:after {
        width: 100%;
    }

/* Mobil Menü İyileştirmeleri */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 992px) {
    .navbar {
        background: #fff;
    }
        .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        padding-top: 70px;
        background: rgb(0 0 0 / 40%);
        backdrop-filter: blur(10px);
        transition: all 0.4s ease;
        overflow-y: auto;
    }

        .navbar-collapse.show {
            right: 0;
        }

    .navbar-nav {
        padding: 20px;
    }

    .nav-item {
        margin-bottom: 15px;
    }

        .nav-item.active .nav-link {
            position: relative;
        }


    .nav-link {
        margin: 0;
        padding: 12px 15px;
        border-radius: 5px;
        background: rgba(255, 255, 255, 0.05);
        color:#fff !important;
    }

        .nav-link:after {
            display: none;
        }

    .close-menu-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        color: white;
        font-size: 1.5rem;
        background: none;
        border: none;
        cursor: pointer;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
}

@media (max-width: 768px) {
    .navbar-brand img {
        width: 180px;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        width: 160px;
    }
}

/* Diğer stiller aynı kalıyor */
.carousel-item {
    height: 100vh;
}

    .carousel-item img {
        object-fit: cover;
        height: 100%;
        width: 100%;
    }
    .carousel-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient( to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.25) 100% );
        z-index: 1;
    }

    .carousel-caption {
        position: absolute;
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 50%;
        z-index: 2;
    }

    .carousel-caption h1 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .carousel-caption p {
        font-size: 1.3rem;
        margin-bottom: 30px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6), 0px 0px 6px rgba(0, 0, 0, 0.4);
    }

@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .carousel-caption h1 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }
}

/*------------------------------------------------*/
/* Stats */
/*------------------------------------------------*/
.stats-section {
    background-color: #f5f5f6;
    color: #3c3c3d; /* Varsayılan metin rengi eklendi */
    position: relative;
    overflow: hidden;
    padding: 80px 0; /* Section padding eklendi */
}

    /* Animasyon için temel stil */
    .stats-section:not(.animated) .stat-item {
        opacity: 0;
        transform: translateY(30px);
    }

    .stats-section.animated {
        opacity: 1;
        transform: translateY(0);
    }

        .stats-section.animated .stat-item {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.6s ease-out;
        }

.stat-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    position: relative;
}
    .stat-item img{
        width:30px;
    }

    .stat-item:hover {
        transform: translateY(-5px);
        /* box-shadow: 0 8px 25px rgba(0,0,0,0.1); */
    }

.stat-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    opacity: 0.8;
    transition: all 0.3s;
}

.stat-item:hover .stat-icon {
    opacity: 1;
    transform: scale(1.1);
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #3c3c3d;
    margin-top:10px;
}

.stat-unit {
    font-size: 1.2rem;
    color: #a1a1a3;
    margin-bottom: 10px;
}

.stat-title {
    font-size: 1rem;
    color: #69696d;
}

/* Sıralı animasyon gecikmeleri */
.stat-item:nth-child(1) {
    transition-delay: 0.1s;
}

.stat-item:nth-child(2) {
    transition-delay: 0.2s;
}

.stat-item:nth-child(3) {
    transition-delay: 0.3s;
}

.stat-item:nth-child(4) {
    transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
    }

    .stat-title {
        font-size: 1rem;
    }

    .stats-section {
        padding: 60px 10px;
    }
}

@media (max-width: 576px) {
    .stat-number {
        font-size: 1.2rem;
    }

    .stat-unit {
        font-size: 1rem;
    }

    .stat-item {
        padding: 20px 15px;
    }
}
/*--------------------------------------*/
/* Section About */
/*--------------------------------------*/
.about-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    overflow: hidden;
    position: relative;
}

.image-container {
    padding: 20px;
    position: relative;
    z-index: 1;
}

.content-container {
    position: relative;
}

.content-box {
    background-color: #f5f5f6;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 50px);
    z-index: 2;
}
@media(max-width:768px){
    .content-box{
        background-color:transparent !important;
        box-shadow:none !important;
    }
}

.slide-in-left {
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.8s ease-out, opacity 0.8s ease;
}

.slide-in-right {
    transform: translateX(100%) translateY(-50%);
    opacity: 0;
    transition: transform 0.8s ease-out, opacity 0.8s ease;
}

.slide-in-left.active {
    transform: translateX(0);
    opacity: 1;
}

.slide-in-right.active {
    transform: translateX(-50px) translateY(-50%);
    opacity: 1;
}

.btn-primary {
    background-color: #7b6756;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s;
}

    .btn-primary:hover {
        background-color: #1a252f;
        transform: translateY(-3px);
    }

@media (max-width: 1200px) {
    .content-box {
        left: -30px;
        width: calc(100% + 30px);
    }

    .slide-in-right.active {
        transform: translateX(-30px) translateY(-50%);
    }
}

@media (max-width: 992px) {
    .about-section {
        padding: 80px 0;
    }

    .content-box {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: 100%;
        margin-top: -40px;
    }

    .slide-in-right {
        transform: translateX(100%);
    }

        .slide-in-right.active {
            transform: translateX(0);
        }
}

@media (max-width: 768px) {
    .content-box {
        padding: 30px;
        margin-top: -30px;
    }
}

/* Project */
.project-features {
    padding: 80px 10px;
    background-color: #f5f5f6;
}

    .project-features .project-title {
        color: #54453f;
        font-size: 2rem;
        font-weight: 600;
        line-height: 1.2;
        letter-spacing: 0.72px;
        margin-bottom: 48px;
        text-align: left;
    }

@media (max-width: 1200px) {
    .project-features .project-title {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .project-features .project-title {
        font-size: 36px;
        margin-bottom: 36px;
    }
}

@media (max-width: 768px) {
    .project-features .project-title {
        font-size: 28px;
        letter-spacing: 0.5px;
        margin-bottom: 28px;
    }
}

@media (max-width: 576px) {
    .project-features .project-title {
        font-size: 24px;
        letter-spacing: 0.3px;
        margin-bottom: 24px;
    }
}

.feature-image-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    position: relative;
    flex-shrink: 0;
}

.feature-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    /*transition: opacity 0.8s ease;*/
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

    .feature-image.active {
        opacity: 1;
    }

.feature-options h3 {
    padding-bottom: 30px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 15px;
    display: grid;
}

.feature-item {
    padding: 12px 20px;
    margin-bottom: 8px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    color: #333;
    border-left: 2px solid transparent;
}

    .feature-item:before {
        content: '';
        position: absolute;
        left: -50px;
        top: 70%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background-image: url('/images/section-icon.svg');
        background-size: contain;
        background-repeat: no-repeat;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .feature-item.active, .feature-item:hover {
        color: #7b6756;
        border-left-color: #7b6756;
    }

    .feature-item.active {
        font-weight: 500;
    }

        .feature-item.active:before {
            opacity: 1;
        }

@media (max-width: 992px) {
    .feature-left {
        display: none !important;
    }

    .feature-options {
        display: none !important;
    }

    .feature-image-container {
        width: 100%;
        height: 300px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .project-features {
        /*padding: 60px 10px;*/
        padding: 60px 10px 0px 10px;
    }
    .contact-section{
        padding:0px !important;
    }

    .feature-item {
        padding: 10px 15px;
    }

        .feature-item.active:before {
            left: -20px;
        }

    .feature-image-container {
        width: 100%;
        height: 300px;
        margin: 0 auto;
    }
}

.feature-options .feature-list.d-lg-block {
    display: grid !important;
}

.feature-options .mobile-feature-selector.d-lg-none {
    display: none;
}

@media (max-width: 992px) {
    .feature-options .feature-list.d-lg-block {
        display: none !important;
    }

    .feature-options .mobile-feature-selector.d-lg-none {
        display: block;
    }

    .mobile-feature-list {
        position: static;
        margin-top: 10px;
        box-shadow: none;
        border: none;
        max-height: none;
    }

        .mobile-feature-list li {
            padding: 12px 15px;
            border-bottom: 1px solid #eee;
        }

    .feature-item:before {
        display: none;
    }
}

.feature-texts-wrapper {
    position: relative;
    min-height: 400px;
}

@media (min-width: 992px) {
    .feature-texts-wrapper {
        transform: translate(-15%, 0%);
    }
}

@media (max-width: 991px) {
    .feature-texts-wrapper {
        transform: none;
    }
}

.feature-text-group {
    opacity: 0;
    height: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .feature-text-group.active {
        opacity: 1;
        height: auto;
        position: relative;
    }

.feature-box {
    background: #7b6756;
    padding: 20px;
    color: #fff;
    line-height: 1.6;
}

    .feature-box h2 {
        color: #fff;
        margin-bottom: 10px;
        font-size: 1.5rem;
    }

/* Mobil Akordeon Stilleri */
.mobile-accordion {
    display: none;
}

@media (max-width: 992px) {
    .mobile-accordion {
        display: block;
        margin-bottom: 30px;
    }

    .accordion-item {
        /*border: 1px solid #ddd;*/
        margin-bottom: 10px;
        border-radius: 5px;
        overflow: hidden;
    }

    .accordion-header {
        background-color: #f8f9fa;
        padding: 15px 20px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background-color 0.3s;
    }

        .accordion-header:hover {
            background-color: #e9ecef;
        }

        .accordion-header.active {
            background-color: #7b6756;
            color: white;
        }

    .accordion-content {
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

        .accordion-content.active {
            max-height: 1000px;
        }

        .accordion-content .feature-box {
            border-radius: 0;
            margin: 0;
        }

    .accordion-icon {
        transition: transform 0.3s;
    }

    .accordion-header.active .accordion-icon {
        transform: rotate(180deg);
    }

    .accordion-image-container {
        width: 100%;
        /*height: 200px;*/
        overflow: hidden;
        position: relative;
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .accordion-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        opacity: 0;
        transition: opacity 0.8s ease;
    }

        .accordion-image.active {
            opacity: 1;
        }

    /* Mobilde feature-box stilleri */
    .feature-box {
        background: none;
        padding: 5px;
        color: #000000;
        line-height: 1.6;
    }
}

/*-----------------------------------------------*/
/* Daire Planları */
/*-----------------------------------------------*/
.floor-plans-section {
    padding: 80px 0;
    background-color: #ffffff;
}

    .floor-plans-section .plans-title {
        color: #54453f;
        font-size: 2rem;
        font-weight: 600;
        line-height: 1.2;
        letter-spacing: 0.72px;
        margin-bottom: 48px;
        text-align: left;
        /* Responsive font boyutları */
        @media (max-width: 1200px) {
            font-size: 42px;
        }

        @media (max-width: 992px) {
            font-size: 36px;
            margin-bottom: 36px;
        }

        @media (max-width: 768px) {
            font-size: 28px;
            letter-spacing: 0.5px;
            margin-bottom: 28px;
        }

        @media (max-width: 576px) {
            font-size: 24px;
            letter-spacing: 0.3px;
            margin-bottom: 24px;
        }
    }


.plan-tabs {
    display: flex;
    border-bottom: 2px solid #ddd;
    margin-bottom: 30px;
}

.plan-tab {
    padding: 12px 25px;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

    .plan-tab.active {
        color: #7b6756;
        border-bottom-color: #7b6756;
    }

.plan-image-slider {
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.plan-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

    .plan-slide:not(.active),
    .plan-detail:not(.active) {
        display: none;
    }

    .plan-slide.active {
        opacity: 1;
    }

    .plan-slide img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        background-color: #fff;
    }

.plan-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-download, .btn-virtual-tour {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-download {
    background-color: #7b6756;
    color: white;
}

.btn-virtual-tour {
    background-color: #e9e9e9;
    color: #333;
}

.sub-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.sub-tab {
    padding: 8px 15px;
    background-color: #e9e9e9;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.plan-tab.active ~ .sub-tabs .sub-tab[data-plan-type] {
    display: inline-block;
}

.sub-tab.active {
    background-color: #7b6756;
    color: white;
}

.plan-detail {
    display: none;
}

    .plan-detail.active {
        display: block;
    }

.plan-details table {
    width: 100%;
    border-collapse: collapse;
}

.plan-details th, .plan-details td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.plan-details th {
    font-weight: 500;
    color: #555;
    width: 60%;
}

.plan-details td:last-child {
    font-weight: 600;
    color: #7b6756;
    text-align: right;
    width: 40%;
}

.plan-details tr:first-child th {
    font-size: 18px;
    color: #7b6756;
    border-bottom: 2px solid #7b6756;
    padding-bottom: 15px;
}

.plan-details tr:last-child {
    border-bottom: 2px solid #7b6756;
}

.plan-details td {
    font-weight: 400;
}

@media (max-width: 992px) {
    .plan-image-slider {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .plan-tabs {
        flex-wrap: wrap;
    }

    .plan-tab {
        padding: 10px 15px;
        font-size: 14px;
    }

    .plan-image-slider {
        height: 300px;
    }

    .plan-actions {
        justify-content: center;
    }

    .sub-tabs {
        justify-content: center;
        margin-top: 20px;
    }
}

/*Swiper Slider*/
.swiper {
    width: 100%;
    height: 400px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

    .swiper-slide img {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.thumbnail-slider {
    height: 100px;
    box-sizing: border-box;
    padding: 10px 0;
}

    .thumbnail-slider .swiper-slide {
        width: 25%;
        height: 100%;
        opacity: 0.6;
        cursor: pointer;
        border: 2px solid transparent;
        transition: all 0.3s;
    }

        .thumbnail-slider .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .thumbnail-slider .swiper-slide-thumb-active {
        opacity: 1;
        border-color: #7b6756;
    }

.swiper-button-next,
.swiper-button-prev {
    color: #7b6756;
    background: rgba(255,255,255,0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 20px;
        font-weight: bold;
    }

@media (max-width: 768px) {
    .swiper {
        height: 300px;
    }

    .thumbnail-slider {
        /*height: 80px;*/
        display:none;
    }

}

@media (max-width: 576px) {
    .swiper {
        height: 250px;
    }

    .thumbnail-slider {
        height: 100px;
    }
}

/* Lightbox Modal Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /*background-color: rgba(0, 0, 0, 0.95);*/
    background-color: rgb(0 0 0 / 90%);
    animation: fadeIn 0.3s;
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: 0.3s;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .lightbox-close:hover {
        background: rgba(0,0,0,0.8);
        transform: scale(1.1);
    }

.lightbox-caption {
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 18px;
    margin-top: 10px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 30px;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(123, 103, 86, 0.8);
    color: white;
    border: none;
    font-size: 23px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

    .lightbox-prev:hover,
    .lightbox-next:hover {
        background: rgba(123, 103, 86, 1);
        transform: scale(1.1);
    }

/* Swiper slide cursor pointer */
.swiper-slide {
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .swiper-slide:hover {
        transform: scale(1.02);
    }

.lightbox-trigger {
    cursor: zoom-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .lightbox-content {
        width: 98%;
        height: 98%;
        padding: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }

    .lightbox-nav {
        padding: 0 15px;
        top:70% !important;
    }

    .lightbox-prev,
    .lightbox-next {
        padding: 10px 15px;
        font-size: 20px;
        width: 50px;
        height: 50px;
    }

    .lightbox-caption {
        font-size: 16px;
        padding: 10px 0;
    }
}
/*----------------------------------------*/
/*Galeri*/
/*----------------------------------------*/
.galeri-section {
    padding: 80px 0;
    background-color: #f5f5f6;
    position: relative;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #54453f;
    line-height: 1.2;
    letter-spacing: 0.72px;
    font-weight: 600;
}

.full-width-gallery {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 60px;
}

.gallery-scroll-container {
    display: flex;
    transition: transform 0.5s ease;
    padding-bottom: 20px;
}

.gallery-item {
    position: relative;
    height: 180px;
    margin-right: 15px;
    /*border-radius: 8px;*/
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    cursor: pointer;
}

    .gallery-item:last-child {
        margin-right: 0;
    }

    .gallery-item:hover {
        transform: scale(1.03);
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
    }

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
}

/* Navigasyon Butonları */
.gallery-nav {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    z-index: 10;
    padding: 0 20px;
}

.nav-button {
    padding: 8px 20px;
    background-color: #7b6756;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    flex-grow: 1;
    max-width: 100px;
}

    .nav-button:hover {
        background-color: #5d4c3e;
    }

    .nav-button:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

/* Tam Ekran Carousel */
.fullscreen-carousel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 70%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

    .carousel-slide.active {
        opacity: 1;
    }

    .carousel-slide img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.carousel-caption-galeri {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
}

.carousel-nav {
    position: absolute;
    /*top: 50%;*/
    top: 65%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: white;
    z-index: 10;
    transition: background-color 0.3s ease;
}

    .carousel-nav:hover {
        background-color: rgba(255, 255, 255, 0.5);
    }

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 10;
    background: none;
    border: none;
}

/* Tab Stilleri */
.gallery-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
}

.tab-button {
    padding: 10px 20px;
    background-color: transparent;
    border: 1px solid #7b6756;
    color: #7b6756;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

    .tab-button.active {
        background-color: #7b6756;
        color: white;
    }

/* Galeri Container Animasyonları */
.gallery-container {
    display: none;
    animation: slideUp 0.5s ease forwards;
}

    .gallery-container.active {
        display: block;
    }

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Tasarım - Optimize Edilmiş */
@media (max-width: 767px) {
    .galeri-section {
        padding: 60px 10px;
    }
    .fullscreen-carousel {
        z-index: 9999;
    }

    .gallery-scroll-container {
        padding: 0 10px;
    }

    .gallery-item {
        height: 200px;
        /*margin-right: 0;*/
        width:300px;
    }

    .gallery-nav {
        bottom: -60px;
    }

    .nav-button {
        padding: 10px 25px;
        font-size: 16px;
    }

    .gallery-tabs {
        justify-content: center;
        margin-bottom: 30px;
    }
}

@media (min-width: 768px) {
    .gallery-item {
        min-width: calc(33.333% - 13px);
        height: 200px;
    }

    .gallery-nav {
        padding: 0 50px;
    }

    .gallery-tabs {
        justify-content: flex-end;
        margin-bottom: 20px;
    }

    .tab-button {
        padding: 8px 25px;
    }
}

@media (min-width: 992px) {
    .gallery-item {
        min-width: calc(25% - 15px);
        height: 220px;
    }
}

@media (min-width: 1200px) {
    .gallery-item {
        height: 250px;
        min-width: unset;
    }
}



/*----------------------------------------*/
/*Footer*/
/*----------------------------------------*/

footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 50px 0 0;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
    /*align-items: flex-start;*/
}

.footer-logo {
    flex: 0 0 400px;
    padding: 0 15px;
    margin-bottom: 30px;
}

.footer-logo-img {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
}

.footer-phone a{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 23px;
    font-weight: 400;
    border: 1px solid #cccccc;
    border-radius: 28px;
    height: 40px;
    width: 180px;
    margin-top: 10px;
    text-decoration:none;
}
    .footer-phone a:hover {
        background-color: #fff;
        color: #333;
        border: none;
    }

    /*  .footer-item-title {
        margin-top: 30px;
        font-weight: 400;
        font-size: 20px;
        color: #fff;
        letter-spacing: 0;
    }*/
    .footer-column {
        /*min-width: 200px;*/
        margin-bottom: 30px;
        padding: 0 15px;
    }

.footer-title {
    color: #f5f5f5;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #7b6756;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-list li {
        margin-bottom: 15px;
        line-height: 1.5;
        color: #cccccc;
        transition: color 0.3s;
        max-width:350px;
    }
    .footer-list li strong{
       font-weight:500;
    }
        .footer-list li a {
            text-decoration: none;
            color: #cccccc;
        }
            .footer-list li a:hover {
            color: #ffffff;
            cursor: pointer;
        }

        .footer-list li strong {
            color: #ffffff;
            display: block;
            margin-bottom: 5px;
        }

.footer-bottom {
    border-top: 1px solid #333;
    padding: 30px 0;
    background-color: #111;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.footer-bottom-left {
    flex: 1;
    min-width: 33.33%;
    order: 1;
}

.footer-bottom-center {
    flex: 1;
    min-width: 33.33%;
    text-align: center;
    order: 2;
}

.footer-bottom-right {
    flex: 1;
    min-width: 33.33%;
    text-align: right;
    order: 3;
}

.social-icons {
    display: flex;
    gap: 20px;
}
    .social-icons a{
        color:#fff;
    }

    .footer--item__icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        margin-right: 5px;
        background-color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s;
    }

    .footer--item__icon:hover {
        transform: scale(1.1);
    }

    .footer--item__icon img {
        width: 20px;
        height: 20px;
    }

.legal-links {
    display: inline-block;
}

    .legal-links a {
        color: #999;
        text-decoration: none;
        transition: color 0.3s;
        font-size: 13px;
    }

        .legal-links a:hover {
            color: #fff;
        }

.separator {
    color: #555;
    margin: 0 10px;
}

.copyright {
    color: #999;
    font-size: 14px;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-logo {
        text-align: center;
        margin: 0 auto 30px;
        flex: 0 0 170px;
    }

    .footer-column {
        margin-bottom: 30px;
    }

    .footer-bottom-left,
    .footer-bottom-center,
    .footer-bottom-right {
        min-width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }

    .social-icons {
        justify-content: center;
    }

    .social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        color: #1a1a1a;
        font-size: 18px;
        transition: all 0.3s ease;
        text-decoration:none;
    }

        .social-icon:hover {
            transform: scale(1.1);
            background-color: #7b6756;
            color: white;
        }

    .legal-links {
        margin-top: 15px;
    }

    .footer-bottom-left {
        order: 1;
    }

    .footer-bottom-center {
        order: 3;
    }

    .footer-bottom-right {
        order: 2;
    }
}
/*----------------------------------------*/
/*Form*/
/*----------------------------------------*/
.floating-form-container {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1001;
    transition: all 0.3s ease;
}

/* Open Form Styles */
.floating-form {
    width: 470px;
    height: 530px;
    /*background-color: white;*/
    background-color: #fffffff0; border-radius: 8px 0 0 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 20px;
    font-family: Arial, sans-serif;
    position: relative;
    z-index: 1002;
    transition: all 0.3s ease-out;
    transform: translateX(0);
}

    .floating-form.opening {
        animation: slideIn 0.3s ease-out forwards;
    }

    .floating-form.closing {
        animation: slideOut 0.3s ease-out forwards;
    }

    /* Closed Form (Tab) Styles - Vertical */
    .floating-form.closed {
        width: 40px;
        height: 160px;
        padding: 0;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #7b6756;
        color: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

        .floating-form.closed .form-content {
            display: none;
        }

        .floating-form.closed .close-form {
            display: none;
        }

        .floating-form.closed .form-title {
            display: none;
        }

        .floating-form.closed .form-logo {
            display: none;
        }

    .floating-form:not(.closed) .form-title {
        display: block;
    }

    .floating-form:not(.closed) .form-logo {
        display: block;
    }

.form-tab-label {
    display: none;
}

.floating-form.closed .form-tab-label {
    display: block;
    font-weight: 500;
    font-size: 16px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
    margin: 0;
}
.form-content{
    margin-top:50px;
}
/* Form Header */
.form-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.form-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    display: none;
    padding: 10px 0px;
    line-height: 25px;
}

.form-logo {
    display: none;
    width: 150px;
}

.close-form {
    background: none;
    border: none;
    font-size: 25px;
    cursor: pointer;
    color: #fff;
    position: relative;
    z-index: 1003;
    background-color: #7b6756;
    width: 40px;
    height: 40px;
}

/* Form Elements */
.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-size: 14px;
        color: #333;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 8px 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 14px;
    }

        .form-group input::placeholder {
            color: #999;
        }

.phone-input {
    display: flex;
    align-items: center;
}

    .phone-input input {
        flex-grow: 1;
    }

.checkbox-group {
    margin: 15px 0;
    font-size: 12px;
    color: #555;
    display: flex;
}

    .checkbox-group input {
        margin-right: 5px;
    }

.submit-btn {
    width: 100%;
    padding: 10px;
    background-color: #7b6756;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .submit-btn:hover {
        background-color: #1a252f;
    }

/* Mobile Styles */
@media (max-width: 768px) {
    .floating-form {
        width: 100%;
        height: 100%;
        border-radius: 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        overflow-y: auto;
        transform: none !important;
    }

        .floating-form.closed {
            width: 40px;
            height: 160px;
            position: fixed;
            top: 50%;
            right: 0;
            transform: translateY(-50%) !important;
            left: auto;
            padding: 0;
            cursor: pointer;
        }

    .floating-form-container {
        transform: none;
        top: auto;
        bottom: auto;
        right: 0;
        left: auto;
        height: auto;
    }
}

@media (max-width: 768px) {
    .floating-form:not(.closed) {
        animation: fadeIn 0.3s ease-out forwards;
    }

    .floating-form.closing {
        animation: fadeOut 0.3s ease-out forwards;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeOut {
        from {
            opacity: 1;
            transform: translateY(0);
        }

        to {
            opacity: 0;
            transform: translateY(20px);
        }
    }
}

/*Contact*/
.contact-section {
    position: relative;
    width: 100%;
    background: url('/images/bg/bg-contact.webp') no-repeat center center;
    background-size: cover;
    padding: 40px 0px 0px 0px;
    color: #333;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s, transform 0.8s;
    margin-top: 50px;
}

    .contact-section.visible {
        opacity: 1;
        transform: translateY(0);
    }

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 0;
}

.contact-content {
    position: relative;
    z-index: 1;
    /*max-width: 1000px;*/
    margin: 0 auto;
    text-align: center;
}

    .contact-content h2 {
        font-size: 2rem;
        margin-bottom: 80px;
        color: #54453f;
        position: relative;
        display: inline-block;
        font-weight: 600;
        line-height: 1.2;
        letter-spacing: 0.72px;
    }

        .contact-content h2:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 2px;
            background: #7b6756;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

.contact-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
}

.contact-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-item--icon {
    height: 60px;
    min-width: 60px;
    background-color: #7b6756;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 25px;
    color: white;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.contact-item p, .contact-item a {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    text-decoration: none;
}

.contact-item .phone {
    font-size: 20px;
    color: #7b6756;
    margin: 10px 0;
    display: block;
    font-weight: bold;
}

.map-container {
    width: 100%;
    height: 400px;
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

@media (max-width: 768px) {
    .contact-content h2 {
        font-size: 28px;
        margin-bottom: 60px;
    }

    .contact-items {
        gap: 40px;
    }

    .contact-item {
        min-width: 100%;
    }

    .map-container {
        height: 300px;
        /*margin-top: 60px;*/
    }
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.route-section {
    padding: 40px 0;
    margin-bottom: 0;
}

.route-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.route-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.route-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 15px;
    background: #f8f9fa;
    border-radius: 12px;
    border-top: 4px solid #7b6756;
    transition: all 0.3s ease;
    gap: 15px;
}

    .route-item:hover {
        background: #e9ecef;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

.route-icon {
    width: 60px;
    height: 60px;
    background: #7b6756;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .route-icon i {
        color: white;
        font-size: 25px;
    }

.route-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.route-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.route-distance {
    font-size: 18px;
    font-weight: 700;
    color: #7b6756;
}

/* Tablet */
@media (max-width: 1024px) {
    .route-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobil */
@media (max-width: 768px) {
    .route-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .route-item {
        padding: 20px 12px;
        gap: 12px;
    }

    .route-icon {
        width: 50px;
        height: 50px;
    }

        .route-icon i {
            font-size: 20px;
        }

    .route-name {
        font-size: 13px;
        min-height: 32px;
    }

    .route-distance {
        font-size: 16px;
    }
}

/* Küçük mobil */
@media (max-width: 480px) {
    .route-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .route-item {
        padding: 15px 10px;
    }

    .route-name {
        font-size: 12px;
    }
}


/*Hakkımızda Altındaki Section featured*/
/* Angel City Life Section - Mevcut CSS'nizle Uyumlu */
.angel-city-life-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 50%, #f5f5f5 100%);
    position: relative;
}

/* İçerik Stilleri */
.life-content {
    padding-right: 40px;
}

.life-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #54453f;
    font-family: var(--font-heading-primary);
}

.title-line-1 {
    display: block;
    font-weight: 600;
    color: #54453f;
}

.title-line-2 {
    display: block;
    background: #7b6756;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.life-description {
    margin-bottom: 40px;
}

.lead-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #54453f;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: var(--font-text-primary);
}

.secondary-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
    font-family: var(--font-text-primary);
}

/* Özellikler Grid */
.life-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.life-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

    .life-feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(123, 103, 86, 0.15);
        border-color: #d4b896;
    }

.life-feature-icon {
    width: 40px;
    height: 40px;
    background: #7b6756;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 1.2rem;
}

.life-feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #54453f;
    margin-bottom: 5px;
    font-family: var(--font-heading-primary);
}

.life-feature-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
    font-family: var(--font-text-primary);
}

/* CTA Bölümü */
.life-cta-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.btn-life-primary {
    background: #7b6756;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(123, 103, 86, 0.3);
    font-family: var(--font-accent);
    text-decoration:none;
}

    .btn-life-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(123, 103, 86, 0.4);
    }

.life-contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.life-phone a{
    font-size: 1.7rem;
    font-weight: 700;
    color: #54453f;
    margin-bottom: 5px;
    font-family: var(--font-accent);
    text-decoration:none;
}
.life-phone :hover {
    color: #7b6756;
}

/* Galeri Stilleri */
.life-gallery-wrapper {
    position: relative;
}

.life-main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    margin-bottom: 20px;
}

.life-gallery-img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.life-main-image:hover .life-gallery-img {
    transform: scale(1.05);
}
/*
.life-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(123, 103, 86, 0.8), rgba(212, 184, 150, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}*/

.life-main-image:hover .life-image-overlay {
    opacity: 1;
}

.life-overlay-content {
    color: white;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.life-main-image:hover .life-overlay-content {
    transform: translateY(0);
}

.life-overlay-content i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.life-overlay-content span {
    font-weight: 600;
    font-size: 1.1rem;
    font-family: var(--font-accent);
}

/* Thumbnail Grid */
.life-thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.life-thumbnail-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .life-thumbnail-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(123, 103, 86, 0.2);
    }

.life-thumb-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.life-thumbnail-item:hover .life-thumb-img {
    transform: scale(1.1);
}

.life-thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(123, 103, 86, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.life-thumbnail-item:hover .life-thumb-overlay {
    opacity: 1;
}

.life-thumb-overlay i {
    color: white;
    font-size: 1.2rem;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .life-title {
        font-size: 2.5rem;
    }

    .life-features-grid {
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .angel-city-life-section {
        padding: 60px 0;
    }

    .life-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .life-title {
        font-size: 2.2rem;
    }

    .life-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .life-thumbnail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .angel-city-life-section {
        /*padding: 50px 10px;*/
        padding: 50px 10px 0px 10px;
    }

    .life-title {
        font-size: 2rem;
    }

    .lead-text {
        font-size: 1.1rem;
    }

    .life-cta-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .life-gallery-img {
        height: 300px;
    }

    .life-thumb-img {
        height: 80px;
    }

    .life-feature-item {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .life-title {
        font-size: 1.8rem;
    }

    .life-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .btn-life-primary {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .life-thumbnail-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .life-thumb-img {
        height: 70px;
    }
}







/*---------------------------------*/
/*New Section*/
/*---------------------------------*/
/* Karma Yaşam Çözümleri Styles */
.karma-cozumleri-section {
    padding: 10px 0px 80px 0px;
    background: #f5f5f6;
}

.karma-header {
    text-align: center;
    margin-bottom: 60px;
}

.karma-baslik {
    font-size: 2rem;
    font-weight: 600;
    color: #54453f;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.72px;
}

.karma-istatistik {
    display: inline-flex;
    gap: 30px;
    background: #f8f9fa;
    padding: 15px 40px;
    border-radius: 50px;
    border: 2px solid #e9ecef;
}

    .karma-istatistik span {
        font-weight: 600;
        color: #7b6756;
        position: relative;
    }

        .karma-istatistik span:not(:last-child)::after {
            content: "•";
            position: absolute;
            right: -18px;
            color: #54453f;
        }

.karma-ozellik-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.karma-ozellik-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .karma-ozellik-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    }

.karma-ozellik-resim {
    height: 250px;
    overflow: hidden;
}

    .karma-ozellik-resim img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.karma-ozellik-item:hover .karma-ozellik-resim img {
    transform: scale(1.05);
}

.karma-ozellik-icerik {
    padding: 25px;
}

.karma-ozellik-baslik {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #7b6756;
    padding-bottom: 5px;
}

.karma-ozellik-listesi {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .karma-ozellik-listesi li {
        padding: 8px 0;
        padding-left: 20px;
        position: relative;
        color: #555;
        line-height: 1.5;
        border-bottom: 1px solid #f8f9fa;
    }

        .karma-ozellik-listesi li:last-child {
            border-bottom: none;
        }

        .karma-ozellik-listesi li::before {
            content: "•";
            color: #7b6756;
            position: absolute;
            left: 0;
            font-weight: bold;
            font-size: 1.2rem;
        }

/* Responsive */
@media (max-width: 768px) {
    .karma-cozumleri-section {
        /*padding: 60px 10px;*/
        padding: 20px 10px 50px 10px;
    }
    .floor-plans-section {
        padding: 50px 10px 50px 10px;
    }

    .karma-baslik {
        font-size: 2rem;
    }

    .karma-istatistik {
        flex-direction: column;
        gap: 10px;
        padding: 15px 25px;
        width:100%;
        display:flow;
    }

        .karma-istatistik span {
            padding: 0 10px;
        }

            .karma-istatistik span:not(:last-child)::after {
                right: -5px;
            }

    .karma-ozellik-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .karma-ozellik-icerik {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .karma-baslik {
        font-size: 1.8rem;
    }

    .karma-ozellik-baslik {
        font-size: 1.2rem;
    }
}