﻿





/* =========================================
   LOCATIONS / SERVICE AREAS
   Her projede kullanılabilir genel tasarım
========================================= */

.locations-section {
    position: relative;
    padding: 80px 0;
    background: #f7f8fa;
}

    .locations-section .row {
        align-items: stretch;
    }

/* CARD */
.location-card {
    position: relative;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e8eaed;
    border-radius: 18px;
    padding: 28px;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
}

    /* Sol üst dekoratif çizgi */
    .location-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 70px;
        height: 4px;
        background: var(--theme-color, #b68b5a);
        transition: width 0.35s ease;
    }

    /* Hafif dekoratif daire */
    .location-card::after {
        content: "";
        position: absolute;
        width: 140px;
        height: 140px;
        right: -80px;
        top: -80px;
        border-radius: 50%;
        background: var(--theme-color, #b68b5a);
        opacity: 0.05;
        transition: all 0.4s ease;
    }

    .location-card:hover {
        transform: translateY(-7px);
        border-color: rgba(182, 139, 90, 0.35);
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.09);
    }

        .location-card:hover::before {
            width: 100%;
        }

        .location-card:hover::after {
            width: 190px;
            height: 190px;
            opacity: 0.08;
        }


/* =========================================
   HEADER
========================================= */

.location-header {
    position: relative;
    z-index: 2;
    padding-bottom: 18px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eef0f2;
}

    .location-header h3 {
        margin: 0;
        padding: 0;
        font-size: 21px;
        line-height: 1.45;
        font-weight: 700;
    }

        .location-header h3 a {
            color: #1c1d20;
            text-decoration: none;
            transition: color 0.25s ease;
        }

            .location-header h3 a:hover {
                color: var(--theme-color, #b68b5a);
            }

        .location-header h3 span {
            font-weight: 500;
            color: #646970;
        }


/* =========================================
   DISTRICT LIST
========================================= */

.district-list {
    position: relative;
    z-index: 2;
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

    .district-list li {
        position: relative;
        padding: 11px 0 11px 26px;
        border-bottom: 1px dashed #e8eaed;
        transition: all 0.25s ease;
    }

        .district-list li:last-child {
            border-bottom: 0;
        }

        /* Liste ikonu */
        .district-list li::before {
            content: "→";
            position: absolute;
            left: 0;
            top: 10px;
            font-size: 15px;
            font-weight: 700;
            color: var(--theme-color, #b68b5a);
            transition: transform 0.25s ease;
        }

        .district-list li:hover {
            padding-left: 31px;
        }

            .district-list li:hover::before {
                transform: translateX(4px);
            }

        .district-list li a {
            display: block;
            color: #4f5358;
            font-size: 15px;
            font-weight: 500;
            line-height: 1.5;
            text-decoration: none;
            transition: color 0.25s ease;
        }

            .district-list li a:hover {
                color: #17181a;
            }

            .district-list li a span {
                color: #7d8187;
                font-size: 14px;
            }


/* =========================================
   FOOTER BUTTON
========================================= */

.location-footer {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding-top: 6px;
}

.more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 19px;
    border-radius: 10px;
    background: #f4f1ed;
    color: var(--theme-color-dark, #8e683e);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .more-btn:hover {
        background: var(--theme-color, #b68b5a);
        color: #ffffff;
        transform: translateX(3px);
    }


/* Kart içerisindeki footer'ı aşağı sabitle */
.location-card {
    display: flex;
    flex-direction: column;
}

.location-header,
.district-list {
    flex-shrink: 0;
}

.location-footer {
    margin-top: auto;
}


/* =========================================
   PAGE HEADER
========================================= */

.cs_page_header_style_1 {
    position: relative;
    overflow: hidden;
}

    .cs_page_header_style_1::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(15, 16, 18, 0.88) 0%, rgba(15, 16, 18, 0.67) 50%, rgba(15, 16, 18, 0.30) 100% );
        z-index: 1;
    }

    .cs_page_header_style_1 .container {
        position: relative;
        z-index: 2;
    }

.cs_page_header_in {
    max-width: 900px;
    padding-top: 125px;
    padding-bottom: 105px;
}

.cs_page_header_title {
    color: #ffffff;
    margin-bottom: 16px;
}

.cs_page_header_in p {
    max-width: 850px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

    .locations-section {
        padding: 70px 0;
    }

    .location-card {
        padding: 25px;
    }

    .location-header h3 {
        font-size: 20px;
    }
}


@media (max-width: 991px) {

    .locations-section {
        padding: 60px 0;
    }

    .cs_page_header_in {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .cs_page_header_title {
        font-size: 45px !important;
    }

    .cs_page_header_in p {
        font-size: 16px;
    }
}


@media (max-width: 767px) {

    .locations-section {
        padding: 45px 0;
    }

    .location-card {
        padding: 22px;
        border-radius: 14px;
    }

        .location-card:hover {
            transform: translateY(-3px);
        }

    .location-header {
        padding-bottom: 15px;
        margin-bottom: 14px;
    }

        .location-header h3 {
            font-size: 18px;
        }

    .district-list li {
        padding-top: 9px;
        padding-bottom: 9px;
    }

        .district-list li::before {
            top: 8px;
        }

        .district-list li a {
            font-size: 14px;
        }

    .more-btn {
        width: 100%;
        padding: 12px 16px;
    }

    .cs_page_header_in {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .cs_page_header_title {
        font-size: 34px !important;
        line-height: 1.2;
    }

    .cs_page_header_in p {
        font-size: 15px;
        line-height: 1.7;
    }
}



/* =========================
   CITY DETAIL PAGE
========================= */

.service-details {
    padding: 150px 0;
    background: #f8f8f6;
}

.service-details-left-wrapper {
    background: #ffffff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.thumbnail-large-service {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 30px;
}

    .thumbnail-large-service .hd_img {
        width: 100%;
        height: 460px;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .thumbnail-large-service:hover .hd_img {
        transform: scale(1.03);
    }

.service-details-left-wrapper > .title {
    font-size: 34px;
    line-height: 1.3;
    font-weight: 700;
    color: #222222;
    margin-bottom: 20px;
}

    .service-details-left-wrapper > .title span {
        color: #8b6f47;
    }

.city-content,
.service-details-left-wrapper .disc {
    font-size: 17px;
    line-height: 1.85;
    color: #656565;
}

    .city-content p {
        margin-bottom: 16px;
    }

    .city-content strong {
        color: #252525;
        font-weight: 600;
    }

    .city-content a {
        color: #8b6f47;
        text-decoration: none;
        font-weight: 600;
    }

        .city-content a:hover {
            text-decoration: underline;
        }


/* =========================
   HIGHLIGHT BOX
========================= */

.highlight-box {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 26px;
    border-radius: 14px;
    background: #f3efe8;
    border-left: 4px solid #8b6f47;
}

    .highlight-box i {
        min-width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #8b6f47;
        color: #ffffff;
        font-size: 20px;
    }

    .highlight-box p {
        margin: 0;
        font-size: 16px;
        line-height: 1.7;
        color: #4d4d4d;
    }


/* =========================
   DISTRICT SIDEBAR
========================= */

.single-rightsidebar-single {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

    .single-rightsidebar-single > .title {
        font-size: 21px;
        line-height: 1.4;
        font-weight: 700;
        color: #222222;
        padding-bottom: 16px;
        margin-bottom: 15px;
        border-bottom: 1px solid #eeeeee;
    }

.single-department-service-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    border-radius: 10px;
    background: #f7f7f5;
    border: 1px solid #ece9e3;
    text-decoration: none;
    transition: all 0.25s ease;
}

    .single-department-service-wrapper:last-child {
        margin-bottom: 0;
    }

    .single-department-service-wrapper::after {
        content: "›";
        font-size: 22px;
        font-weight: 700;
        line-height: 1;
        color: #8b6f47;
        transition: all 0.25s ease;
    }

    .single-department-service-wrapper:hover {
        background: #8b6f47;
        border-color: #8b6f47;
        transform: translateX(4px);
    }

        .single-department-service-wrapper:hover::after {
            color: #ffffff;
            transform: translateX(3px);
        }

    .single-department-service-wrapper .left-side {
        padding-right: 15px;
    }

    .single-department-service-wrapper .title {
        margin: 0;
        font-size: 15px;
        line-height: 1.5;
        font-weight: 600;
        color: #333333;
        transition: color 0.25s ease;
    }

    .single-department-service-wrapper:hover .title {
        color: #ffffff;
    }


/* =========================
   CTA BOX
========================= */

.cta-premium-box {
    position: relative;
    overflow: hidden;
    margin-top: 25px;
    padding: 35px 28px;
    border-radius: 18px;
    background: #252525;
}

.cta-bg-shape {
    position: absolute;
    width: 180px;
    height: 180px;
    right: -60px;
    top: -70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

    .cta-bg-shape::after {
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        left: -80px;
        bottom: -160px;
        border-radius: 50%;
        background: rgba(139, 111, 71, 0.18);
    }

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 50%;
    background: #8b6f47;
    color: #ffffff;
    font-size: 23px;
}

.cta-content h3 {
    font-size: 25px;
    line-height: 1.35;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .cta-buttons .btn-outline-light {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        min-height: 48px;
        padding: 11px 20px;
        border: 1px solid rgba(255, 255, 255, 0.55);
        border-radius: 9px;
        color: #ffffff;
        text-decoration: none;
        font-weight: 600;
        font-size: 15px;
        transition: all 0.25s ease;
    }

        .cta-buttons .btn-outline-light:hover {
            background: #ffffff;
            border-color: #ffffff;
            color: #252525;
        }


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .service-details {
        padding: 120px 0;
    }

    .service-details-left-wrapper {
        padding: 22px;
    }

    .thumbnail-large-service .hd_img {
        height: 380px;
    }

    .single-rightsidebar-single {
        margin-top: 30px !important;
    }
}

@media (max-width: 767px) {

    .service-details {
        padding: 120px 0;
    }

    .service-details-left-wrapper {
        padding: 16px;
        border-radius: 14px;
    }

    .thumbnail-large-service {
        border-radius: 12px;
        margin-bottom: 22px;
    }

        .thumbnail-large-service .hd_img {
            height: 260px;
        }

    .service-details-left-wrapper > .title {
        font-size: 26px;
    }

    .city-content,
    .service-details-left-wrapper .disc {
        font-size: 15px;
        line-height: 1.75;
    }

    .highlight-box {
        padding: 19px;
        gap: 13px;
    }

        .highlight-box i {
            min-width: 42px;
            height: 42px;
            font-size: 17px;
        }

        .highlight-box p {
            font-size: 14px;
        }

    .single-rightsidebar-single {
        padding: 20px;
    }

        .single-rightsidebar-single > .title {
            font-size: 19px;
        }

    .single-department-service-wrapper {
        padding: 15px !important;
    }

        .single-department-service-wrapper .title {
            font-size: 14px;
        }

    .cta-premium-box {
        padding: 28px 22px;
    }

    .cta-content h3 {
        font-size: 21px;
    }
}


/* =========================
   LOCATION INFO BOX
========================= */

.location-info-box {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #ece9e3;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.location-info-icon {
    min-width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f3efe8;
    color: #8b6f47;
    font-size: 20px;
}

.location-info-content span {
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .7px;
    color: #8b6f47;
}

.location-info-content h4 {
    margin: 0 0 8px;
    font-size: 21px;
    font-weight: 700;
    color: #222222;
}

.location-info-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #666666;
}

@media (max-width: 767px) {

    .location-info-box {
        padding: 20px;
    }

    .location-info-icon {
        min-width: 45px;
        height: 45px;
        font-size: 17px;
    }

    .location-info-content h4 {
        font-size: 18px;
    }
}

/* =========================================
   PROJEYE GÖRE SADECE BUNU DEĞİŞTİR
========================================= */
