/* input(415,1): run-time error CSS1019: Unexpected token, found '@'
input(2649,1): run-time error CSS1019: Unexpected token, found '@' */
/* Genel Değişkenler ve Temel Ayarlar */
:root {
    --primary-dark: #0f2c42; /* Logodaki ve alt kısımdaki koyu lacivert */
    --primary-teal: #00adef/* #187e8f*/; /* Butonlar ve vurgulardaki turkuaz/mavi */
    --light-bg: #f8f9fa; /* Sayfa arka planı (Duvar rengi) */
    --text-dark: #2d3436;
    --text-muted: #6c757d;
}

/* Tarayıcı Scrollbar (Kaydırma Çubuğu) Özelleştirmesi */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-teal);
    border-radius: 5px;
}

    ::-webkit-scrollbar-thumb:hover {
        background-color: var(--primary-dark);
    }

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    padding-bottom: 75px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.text-teal {
    color: var(--primary-teal) !important;
}

.text-dark-blue {
    color: var(--primary-dark) !important;
}

.bg-teal {
    background-color: var(--primary-teal) !important;
}

.bg-dark-blue {
    background-color: var(--primary-dark) !important;
}

/* Üst Menü (Navbar ve Header) */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;  	
	z-index:1050;
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

@media (max-width: 767.98px) {
	
	.site-header {
    position: absolute !important;
	background: transparent!important;
    backdrop-filter: blur(0px)!important;
    box-shadow: none!important;
    transition: none!important;
}
	
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Tasarımı */
.logo-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    line-height: 1;
}

.logo-icon {
    color: var(--primary-teal);
    font-size: 2.2rem;
    margin-bottom: -5px;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: var(--primary-dark);
    font-size: 1.4rem;
    letter-spacing: -0.5px;
    display: flex;
    align-items: baseline;
}

.logo-ext {
    background-color: var(--primary-dark);
    color: #fff;
    font-size: 0.5rem;
    padding: 2px 4px;
    border-radius: 4px;
    margin-left: 2px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

/* Masaüstü Menü Linkleri */
.desktop-menu a.nav-text-link {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s;
    font-size: 0.95rem;
    padding: 10px 0;
}

    .desktop-menu a.nav-text-link:hover, .desktop-menu a.nav-text-link.active {
        color: var(--primary-teal);
    }

/* Masaüstü Dropdown Özelleştirmesi (JS'siz Saf CSS Hover) */
.desktop-menu .dropdown {
    position: relative;

}

.desktop-menu .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 15px;
    transition: all 0.3s ease;
    pointer-events: none;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 10px;
    background: #fff;
    min-width: 200px;
	
}

.desktop-menu .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    pointer-events: auto;
	
}

.desktop-menu .dropdown-item {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s;
    margin-bottom: 2px;
    padding: 8px 15px;
    color: var(--text-dark);
	
}

    .desktop-menu .dropdown-item:hover {
        background-color: var(--primary-teal);
        color: #fff;
        transform: translateX(5px);
    }

/* Sağ Üst - İletişim Hapı ve Menü Butonu */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-pill {
    background: #ffffff;
    border-radius: 50px;
    padding: 5px 15px 5px 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease;
}

    .contact-pill:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(24, 126, 143, 0.15);
        border-color: var(--primary-teal);
    }

.contact-icon-circle {
    background: var(--primary-teal);
    color: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.contact-text-box {
    display: flex;
    flex-direction: column;
    color: var(--primary-dark);
    line-height: 1.1;
}

.contact-number {
    font-weight: 800;
    font-size: 0.6rem;
	text-align:center;
}

.contact-desc {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--text-muted);
}

.menu-circle-btn {
    background: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.5rem;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .menu-circle-btn:hover {
        background-color: var(--primary-teal);
        color: #fff;
        border-color: var(--primary-teal);
    }

.altbaslik{color: var(--primary-teal);}
/* =========================================================================
           HERO BÖLÜMÜ (İSTENİLEN BİREBİR TASARIM)
           Çatının sağdan ve soldan inip ortada ev duvarının kaldığı simetrik perspektif.
           ========================================================================= */
.hero-section {
    position: relative;
    background-color: var(--light-bg);
    /* Üçgen (Gable) çatı ve cephe perspektifini sağlayan yüksek çözünürlüklü görsel */
    /*background-image: url('https://images.unsplash.com/photo-1576941089067-2de3c901e126?q=80&w=1920&auto=format&fit=crop');*/
    background-size: cover;
    /* Resmin gerçek merkezi (%50), ortadaki çatının tepe noktasıyla tam
               örtüşmüyor; "center top" farklı ekran genişliklerinde farklı oranda
               kırpma yaptığından tepe noktası metne göre kayıyordu. Odak noktasını
               gerçek tepeye göre kaydırıyoruz, çatı yine en üstte kalıyor. */
    background-position: 44% top;
    background-repeat: no-repeat;
    padding-top: 130px; /* Çatı ucunun görünmesi için yukarıdan boşluk */
    min-height: 55vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Çatı bittikten sonra başlayan "Duvar" hissini veren gradient. 
           Yazılar resmin üzerine değil, bu oluşturduğumuz beyaz/gri duvara oturur. */
.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75%;
background: linear-gradient(to bottom, rgba(248, 249, 250, 0) 0%, rgb(248 249 250 / 24%) 10%, rgb(248 249 250 / 49%) 20%, rgb(248 249 250 / 58%) 30%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-bottom: 24px;
}

.hero-subtitle-top {
    color: var(--primary-teal);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.hero-title {
    color: var(--primary-dark);
    font-size: 1.5rem;
    line-height: 1.15;
    margin-bottom: 15px;
}

    .hero-title span {
        color: var(--primary-teal);
    }

.hero-desc {
    font-size: 0.95rem;
    font-weight: 500;
    color: #444;
    max-width: 380px;
    margin: 0 auto 30px auto;
}

/* Hero Aksiyon Butonları */
.hero-btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0 15px;
}

.btn-hero-solid, .btn-hero-outline {
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex: 1;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-hero-solid {
    background-color: var(--primary-teal);
    color: #fff;
    border: 2px solid var(--primary-teal);
    box-shadow: 0 5px 20px rgba(24, 126, 143, 0.3);
}

    .btn-hero-solid:hover {
        background-color: #126370;
        border-color: #126370;
        color: #fff;
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 10px 25px rgba(24, 126, 143, 0.5);
    }

.btn-hero-outline {
    background-color: #fff;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

    .btn-hero-outline:hover {
        border-color: var(--primary-dark);
        background-color: var(--primary-dark);
        color: #fff;
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

        .btn-hero-outline:hover i {
            color: #fff !important;
        }

.btn-hero-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.1;
}

    .btn-hero-text small {
        font-size: 0.6rem;
        font-weight: 700;
        text-transform: uppercase;
    }

    .btn-hero-text strong {
        font-size: 0.7rem;
        font-weight: 800;
    }

/* ---------------------------------------------------
   HERO YAZI BOYUTLARI (MASAÜSTÜ İÇİN BÜYÜTÜLMÜŞ)
   --------------------------------------------------- */
@@media (min-width: 992px) {
    .hero-section { padding-top: 160px; min-height: 68vh; }
    
    .hero-subtitle-top { 
        font-size: 1.1rem; /* Masaüstünde alt başlık büyür */
        letter-spacing: 2px;
        margin-bottom: 10px;
    }
    
    .hero-title { 
        font-size: 4rem; /* Masaüstünde ana başlık çok daha büyük ve görkemli olur */
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-desc { 
        font-size: 1.2rem; /* Masaüstünde açıklama metni büyür ve genişler */
        max-width: 650px; 
        margin-bottom: 40px;
    }
}

/* Özellikler (Trust Badges) Bölümü */
.features-wrapper {
    background: #fff;
    border-radius: 15px;
    padding: 5px 5px;
    margin-top: 10px;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    justify-content: space-between;
}

.feature-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 10px 5px;
    transition: all 0.3s ease;
}

    .feature-item:hover {
        transform: translateY(-5px);
    }

        .feature-item:hover .feature-icon-wrapper {
            color: var(--primary-teal);
            transform: scale(1.15);
        }

    .feature-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 15%;
        height: 70%;
        width: 1px;
        background-color: #eaeaea;
    }

.feature-icon-wrapper {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    transition: all 0.3s ease;
    display: inline-block;
}

.feature-title {
    display: block;
    font-size: clamp(0.65rem, 2vw, 0.8rem);
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
}

.feature-desc {
    display: block;
    font-size: clamp(0.55rem, 1.5vw, 0.65rem);
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Hizmetler Bölümü */
.services-section {
    padding: 20px 10px 0 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
    padding: 0 15px;
}

.section-subtitle {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 5px;
}

.section-title {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin: 0;
    line-height: 1.2;
}

.view-all-link {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary-teal);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    transition: gap 0.3s;
}

    .view-all-link:hover {
        gap: 8px;
    }

/* Swiper Slider Özelleştirmeleri */
.servicesSwiper {
    width: 100%;
    padding: 15px 15px 40px 15px !important;
}

.swiper-pagination-bullet {
    background-color: var(--primary-dark);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-teal);
    opacity: 1;
    transform: scale(1.2);
}

/* Hizmet Kartları */
.srv-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.02);
    height: 100%;
}

    .srv-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        border-color: rgba(24, 126, 143, 0.2);
    }

.srv-img-box {
    position: relative;
    height: 160px;
    border-radius: 16px 16px 0 0;
    /*overflow: hidden;*/
}

    .srv-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
		border-top-left-radius: 16px;
		border-top-right-radius: 16px;
        /*transition: transform 0.6s ease;*/
    }

.srv-card:hover .srv-img-box img {
    /*transform: scale(1.15);*/
}

.srv-icon-badge {
    position: absolute;
    bottom: -22px;
    left: 20px;
    width: 48px;
    height: 48px;
    background-color: var(--primary-teal);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: 4px solid #fff;
    z-index: 2;
    transition: all 0.3s ease;
}

.srv-card:hover .srv-icon-badge {
    background-color: var(--primary-dark);
    transform: rotate(360deg);
}

.srv-body {
    padding: 40px 20px 20px 20px;
    position: relative;
    flex-grow: 1;
}

.srv-title {
    font-size: .8rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 8px;
    transition: color 0.3s;
}

.srv-card:hover .srv-title {
    color: var(--primary-teal);
}

.srv-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.srv-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: var(--primary-teal);
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.srv-card:hover .srv-arrow {
    transform: translateX(5px);
}

/* Hizmet Alanlarımız (İlçe Akordeonu) Bölümü */
.areas-section {
    padding: 10px 0 50px 0;
}

.accordion-custom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 768px) {
    .accordion-custom {
        grid-template-columns: 1fr 1fr;
        column-gap: 16px;
        align-items: start;
    }
}

.accordion-custom .accordion-item {
    border: none;
    border-radius: 14px !important;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

.accordion-custom .accordion-button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--primary-dark);
    background-color: #fff;
    padding: 16px 20px;
    box-shadow: none !important;
}

    .accordion-custom .accordion-button::after {
        flex-shrink: 0;
    }

    .accordion-custom .accordion-button:focus {
        border-color: transparent;
    }

    .accordion-custom .accordion-button:not(.collapsed) {
        background-color: var(--primary-teal);
        color: #fff;
    }

        .accordion-custom .accordion-button:not(.collapsed)::after {
            filter: brightness(0) invert(1);
        }

.area-icon {
    color: var(--primary-teal);
    font-size: 1.05rem;
    margin-right: 12px;
    transition: color 0.2s;
}

.accordion-custom .accordion-button:not(.collapsed) .area-icon {
    color: #fff;
}

.accordion-custom .accordion-body {
    padding: 18px 20px 22px 20px;
    background-color: #fff;
}

.area-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.area-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.area-badge {
    background-color: rgba(24, 126, 143, 0.08);
    color: var(--primary-teal);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.area-btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-dark);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .area-btn-call:hover {
        background-color: var(--primary-teal);
        color: #fff;
        transform: translateY(-2px);
    }

/* Google Yorumları (Reviews) Bölümü */
.reviews-section {
    padding: 10px 10px;
}

.reviews-badge-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.google-g-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.reviews-rating-summary {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 6px;
}

    .reviews-rating-summary .stars-mini {
        color: #fbbc05;
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

.reviewsSwiper {
    width: 100%;
    padding: 15px 15px 40px 15px !important;
}

.swiper-pagination-reviews {
    position: relative;
    margin-top: 5px;
}

    .swiper-pagination-reviews .swiper-pagination-bullet {
        background-color: var(--primary-dark);
        opacity: 0.3;
    }

    .swiper-pagination-reviews .swiper-pagination-bullet-active {
        background-color: var(--primary-teal);
        opacity: 1;
        transform: scale(1.2);
    }

.review-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    padding: 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

    .review-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        border-color: rgba(24, 126, 143, 0.2);
    }

.review-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.review-stars {
    color: #fbbc05;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.88rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 18px;
    flex-grow: 1;
}

.review-user-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    color: #fff;
    flex-shrink: 0;
}

.review-user-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
}

.review-user-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

    .review-user-sub svg {
        width: 12px;
        height: 12px;
    }

.cta-container {
    padding: 0 15px 40px 15px;
}

.cta-box {
    background-color: var(--primary-dark);
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    box-shadow: 0 15px 40px rgba(15, 44, 66, 0.2);
}

.cta-bg-wrapper {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    border-radius: 0 20px 20px 0;
    overflow: hidden;
    z-index: 1;
}

    .cta-bg-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.4;
    }

    .cta-bg-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, var(--primary-dark) 0%, transparent 100%);
    }

.cta-content {
    position: relative;
    z-index: 2;
    width: 80%;
}

.cta-top-text {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
}

.cta-title {
    color: #fff;
    font-size: 1rem;
    line-height: 1.35;
    margin-bottom: 15px;
    font-weight: 700;
}

    .cta-title span {
        color: var(--primary-teal);
    }

.btn-cta-white {
    background-color: #fff;
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

    .btn-cta-white:hover {
        background-color: var(--primary-teal);
        color: #fff;
        transform: translateY(-3px);
    }

.cta-badge-circle {
    position: absolute;
    bottom: -20px;
    right: -10px;
    width: 95px;
    height: 95px;
    background-color: var(--primary-teal);
    border-radius: 50%;
    border: 4px solid #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    z-index: 5;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    animation: pulse-border 2s infinite;
}

    .cta-badge-circle i {
        font-size: 1.5rem;
        margin-bottom: 2px;
    }

    .cta-badge-circle span {
        font-size: 0.55rem;
        font-weight: 800;
        line-height: 1.1;
    }

/* Profesyonel Footer (Alt Bilgi) Bölümü */
.site-footer {
    background-color: var(--primary-dark);
    color: #fff;
    padding: 60px 0 20px 0;
    margin-top: 40px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.footer-logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

    .footer-logo-box i {
        font-size: 2rem;
        color: var(--primary-teal);
    }

.footer-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
}

    .footer-logo-text span {
        color: var(--primary-teal);
    }

.footer-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

    .footer-heading::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 3px;
        background-color: var(--primary-teal);
        border-radius: 2px;
    }

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .footer-links a:hover {
            color: var(--primary-teal);
            transform: translateX(5px);
        }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contact-icon {
    color: var(--primary-teal);
    font-size: 1.2rem;
}

.footer-contact-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

/* Mobil Alt Sabit Bar (Sticky Bottom) */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: var(--primary-dark);
    z-index: 1030;
    border-radius: 25px 25px 0 0;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.15);
    overflow: visible;
}

.sbb-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    padding: 0 15px;
}

    .sbb-action-btn.call-btn {
        background-color: var(--primary-teal);
        border-radius: 25px 0 0 0;
    }

    .sbb-action-btn.wp-btn {
        background-color: var(--primary-dark);
        border-radius: 0 25px 0 0;
    }

.sbb-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

    .sbb-btn-text small {
        font-size: 0.6rem;
        font-weight: 600;
        opacity: 0.9;
    }

    .sbb-btn-text strong {
        font-size: 0.85rem;
        font-weight: 800;
    }

.scroll-top-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    box-shadow: 0 -3px 12px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 1031;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

    .scroll-top-badge:hover {
        background-color: var(--primary-teal);
        color: #fff;
        transform: translateX(-50%) scale(1.1);
    }


/* =========================================================================
           MOBİL MENÜ (OFFCANVAS) - BEMBEYAZ, FERAH, KALIN FONT VE NET İKONLAR
           ========================================================================= */
.offcanvas-custom {
    z-index: 1060; /* .site-header (1050) altında kalıp kendi başlığını gizlemesin diye yükseltildi */
    background-color: #ffffff;
    color: var(--primary-dark);
    border-left: none;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}

    .offcanvas-custom .offcanvas-header {
        padding: 25px 20px;
        border-bottom: 1px solid #f0f0f0 !important;
        background-color: #fff;
    }

    .offcanvas-custom .btn-close {
        opacity: 0.5;
        transition: transform 0.3s;
    }

        .offcanvas-custom .btn-close:hover {
            transform: rotate(90deg);
            opacity: 1;
        }
    /* Menü Linkleri - Güçlü Montserrat fontu, belirgin ikonlar */
    .offcanvas-custom .nav-link {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.85rem;
        font-weight: 600;
        padding: 12px 20px;
        border-bottom: 1px solid #f8f9fa;
        color: var(--primary-dark);
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
    }

        .offcanvas-custom .nav-link i {
            font-size: 0.95rem;
            color: var(--primary-teal); /* İkonlar kurumsal turkuaz renk */
            margin-right: 12px; /* İkon ile yazı arası net boşluk */
            width: 18px; /* İkonların dikeyde kusursuz hizalanması için */
            text-align: center;
            transition: all 0.3s ease;
        }

    .offcanvas-custom .nav-link {
        position: relative;
    }

        .offcanvas-custom .nav-link:hover, .offcanvas-custom .nav-link.active {
            background-color: rgba(24, 126, 143, 0.05); /* Çok hafif turkuaz arkaplan */
            color: var(--primary-teal);
            padding-left: 30px; /* Kayma animasyonu */
        }

            .offcanvas-custom .nav-link.active::before {
                content: '';
                position: absolute;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
                width: 4px;
                height: 55%;
                background-color: var(--primary-teal);
                border-radius: 0 4px 4px 0;
            }

/* Akordeon Alt Menü (Hizmetler) - Aydınlık Tema */
.offcanvas-submenu {
    background-color: #f8f9fa; /* Hafif gri iç boşluk */
    border-bottom: 1px solid #f0f0f0;
}

    .offcanvas-submenu a {
        font-family: 'Poppins', sans-serif;
        padding: 11px 20px 11px 54px; /* İkon hizasına uygun mükemmel girinti */
        color: var(--text-muted);
        font-weight: 500;
        text-decoration: none;
        display: block;
        font-size: 0.85rem;
        transition: all 0.2s;
    }

        .offcanvas-submenu a:hover {
            color: var(--primary-teal);
            background-color: #fff;
            padding-left: 58px;
            font-weight: 600;
        }

/* Mobil Menü Alt İletişim Bilgisi */
.offcanvas-contact-box {
    padding: 25px;
    background: var(--light-bg);
    border-top: 1px solid #f0f0f0;
    margin-top: auto; /* Kalan boşluğu doldurup en alta iter */
}

    .offcanvas-contact-box .text-small {
        font-size: 0.75rem;
        color: var(--text-muted);
        margin-bottom: 5px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .offcanvas-contact-box .phone-number {
        font-size: 1.3rem;
        font-weight: 900;
        color: var(--primary-dark);
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 14px;
    }

.offcanvas-btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #fff;
    border: 2px solid #e5f7ea;
    color: #25D366;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px;
    padding: 10px;
    text-decoration: none;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

    .offcanvas-btn-whatsapp:hover {
        background-color: #25D366;
        color: #fff;
        border-color: #25D366;
    }

.offcanvas-socials {
    display: flex;
    gap: 10px;
}

    .offcanvas-socials a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background-color: #fff;
        border: 1px solid #eaeaea;
        color: var(--primary-dark);
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .offcanvas-socials a:hover {
            background-color: var(--primary-teal);
            border-color: var(--primary-teal);
            color: #fff;
        }

/* Keyframes animasyonları */
@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(24, 126, 143, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(24, 126, 143, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(24, 126, 143, 0);
    }
}

/* MOBİL: "cover" oranı dar/uzun ekranlarda 3 çatıyı birden gösteriyordu.
           Sabit yüzdeli bir background-size ile sadece ORTADAKİ çatı büyük
           görünüyor; sağı-solu düz duvara/gradyana karışarak kayboluyor. */
@media (max-width: 767.98px) {
    .hero-section {
        background-size: 230% auto;
        background-position: 48% 8%;
    }
	
	.logo-box img{width:100px !important;height:40px !important;}
}

/* MASAÜSTÜ (DESKTOP) UYARLAMALARI */
@media (min-width: 992px) {
    body {
        padding-bottom: 0;
    }

    .hero-section {
        padding-top: 160px;
        min-height: 68vh;
        background-position: 47% top;
    }

    .hero-title {
        font-size: 3.8rem;
    }

    .hero-desc {
        font-size: 1.1rem;
        max-width: 600px;
    }

    .btn-hero-solid, .btn-hero-outline {
        flex: none;
        padding: 15px 30px;
    }

    .cta-box {
        padding: 40px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-badge-circle {
        right: 30px;
        bottom: 30px;
        width: 120px;
        height: 120px;
    }

        .cta-badge-circle i {
            font-size: 2rem;
        }

        .cta-badge-circle span {
            font-size: 0.75rem;
        }

    .cta-content {
        width: 60%;
    }
}




/* ---------------------------------------------------
       4. HİZMET DETAY SAYFASI ÖZEL STİLLERİ
       --------------------------------------------------- */

/* Sayfa Üst Başlık Banner (Breadcrumb) Alanı */
.page-header-banner {
    background-image: linear-gradient(rgba(15, 44, 66, 0.85), rgba(15, 44, 66, 0.85)), url('/website/images/catiarkaplan.jpg?v=z7uLQkXQ3Nb9tuRWCES2-2xoBOA');
    background-size: cover;
    background-position: center;
    margin-top: 85px; /* Sabit menünün altında kalmaması için dış boşluk */
    padding: 80px 0;
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}

.page-header-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.breadcrumb-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
    font-weight: 500;
}

    .breadcrumb-custom li {
        display: flex;
        align-items: center;
    }

        .breadcrumb-custom li a {
            color: var(--primary-teal);
            text-decoration: none;
            transition: color 0.3s;
        }

            .breadcrumb-custom li a:hover {
                color: #fff;
            }

        .breadcrumb-custom li i {
            margin: 0 10px;
            font-size: 0.7rem;
            color: rgba(255,255,255,0.5);
        }

        .breadcrumb-custom li.active {
            color: rgba(255,255,255,0.8);
        }

/* Sol İçerik Alanı Stilleri */
.service-detail-content {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    margin-bottom: 40px;
}

.service-featured-img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 30px;
    object-fit: cover;
    max-height: 450px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

    .service-tags .custom-tag {
        background: rgba(24, 126, 143, 0.1);
        color: var(--primary-teal);
        padding: 6px 14px;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

        .service-tags .custom-tag.dark-tag {
            background: rgba(15, 44, 66, 0.1);
            color: var(--primary-dark);
        }

.service-content-text h3 {
    color: var(--primary-dark);
    font-size: 1.6rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-content-text p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* İçerik İçi Özellik Listesi (Checklist) */
.service-checklist {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

    .service-checklist li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        background: var(--light-bg);
        padding: 15px;
        border-radius: 10px;
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--primary-dark);
    }

        .service-checklist li i {
            color: #fff;
            background-color: var(--primary-teal);
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

/* Sağ Yan Menü (Sidebar) Stilleri */
.sidebar-widget {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-bg);
    position: relative;
}

    .widget-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 40px;
        height: 2px;
        background-color: var(--primary-teal);
    }

/* Yan Menü Hizmet Linkleri */
.sidebar-service-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .sidebar-service-menu li {
        margin-bottom: 10px;
    }

        .sidebar-service-menu li a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 15px;
            background-color: var(--light-bg);
            color: var(--text-muted);
            text-decoration: none;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

            .sidebar-service-menu li a i {
                font-size: 0.8rem;
                transition: transform 0.3s;
            }

            .sidebar-service-menu li a:hover {
                background-color: rgba(24, 126, 143, 0.1);
                color: var(--primary-teal);
            }

                .sidebar-service-menu li a:hover i {
                    transform: translateX(5px);
                }

            .sidebar-service-menu li a.active {
                background-color: var(--primary-teal);
                color: #fff;
                box-shadow: 0 5px 15px rgba(24, 126, 143, 0.3);
            }

/* Yan Menü İletişim Widget'ı (Hızlı Destek) */
.widget-contact-box {
    background: linear-gradient(135deg, var(--primary-dark), #16405f);
    color: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(15, 44, 66, 0.2);
}

    .widget-contact-box::before {
        content: '\F5C1'; /* Bootstrap Telefon İkonu Kodu */
        font-family: "bootstrap-icons";
        position: absolute;
        top: -20px;
        right: -20px;
        font-size: 8rem;
        opacity: 0.05;
        transform: rotate(-15deg);
    }

    .widget-contact-box h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .widget-contact-box p {
        font-size: 0.85rem;
        color: rgba(255,255,255,0.7);
        margin-bottom: 20px;
    }

    .widget-contact-box .phone {
        font-size: 1.6rem;
        font-weight: 900;
        color: var(--primary-teal);
        margin-bottom: 20px;
        display: block;
        text-decoration: none;
    }

.widget-btn-call {
    display: inline-block;
    background: var(--primary-teal);
    color: #fff;
    font-weight: 700;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s, transform 0.3s;
}

    .widget-btn-call:hover {
        background: #fff;
        color: var(--primary-dark);
        transform: translateY(-3px);
    }

/* Detay Sayfası Özel Responsive (@media) Ayarları */
@media (min-width: 768px) {
    .service-checklist {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767.98px) {
    .page-header-banner {
        margin-top: 70px;
        padding: 60px 0;
        margin-bottom: 30px;
    }

    .page-header-title {
        font-size: 2rem;
    }

    .service-detail-content {
        padding: 20px;
    }
}


/* ---------------------------------------------------
               5. İLETİŞİM SAYFASI ÖZEL STİLLERİ
               --------------------------------------------------- */
.contact-section {
    padding: 60px 0 20px 0;
}

/* İletişim Bilgi Kartları */
.contact-info-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

    .contact-info-card:hover {
        transform: translateY(-5px);
        border-color: rgba(24, 126, 143, 0.2);
    }

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(24, 126, 143, 0.1);
    color: var(--primary-teal);
    font-size: 1.6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon-wrapper {
    background: var(--primary-teal);
    color: #fff;
    transform: scale(1.1);
}

.contact-info-title {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-info-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

    .contact-info-text a {
        color: var(--text-muted);
        text-decoration: none;
        transition: color 0.3s;
    }

        .contact-info-text a:hover {
            color: var(--primary-teal);
            font-weight: 600;
        }

/* İletişim Formu */
.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
}

.contact-form-title {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.contact-form-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.custom-form-control {
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background-color: var(--light-bg);
}

    .custom-form-control:focus {
        background-color: #fff;
        border-color: var(--primary-teal);
        box-shadow: 0 0 0 4px rgba(24, 126, 143, 0.1);
        outline: none;
    }

.custom-form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.btn-submit-form {
    background-color: var(--primary-teal);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 30px;
    font-weight: 700;
    font-size: 0.95rem;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .btn-submit-form:hover {
        background-color: var(--primary-dark);
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(15, 44, 66, 0.2);
    }

/* Harita Alanı */
.map-container {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    margin-top: 50px;
    border: 1px solid rgba(0,0,0,0.02);
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

/* ===================================================
               5. HAKKIMIZDA SAYFASI ÖZEL CSS STİLLERİ
               (SADECE BU SAYFAYA AİT BÖLÜM BURADAN BAŞLAR)
               =================================================== */

/* Hakkımızda İçerik Bölümü */
.about-section {
    padding: 40px 0 60px 0;
}

/* Sol Görsel ve Tecrübe Rozeti */
.about-img-wrapper {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.about-main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    object-fit: cover;
    height: 500px;
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--primary-teal);
    color: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(24, 126, 143, 0.3);
    border: 5px solid #fff;
    min-width: 180px;
    animation: float-badge 4s ease-in-out infinite;
}

    .experience-badge .years {
        font-family: 'Montserrat', sans-serif;
        font-size: 3.5rem;
        font-weight: 900;
        line-height: 1;
        margin-bottom: 5px;
        display: block;
    }

    .experience-badge .text {
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

/* Sağ Metin Alanı */
.about-content-box {
    padding-left: 20px;
}

.about-subtitle {
    color: var(--primary-teal);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.about-title {
    color: var(--primary-dark);
    font-size: 2.2rem;
    line-height: 1.25;
    margin-bottom: 25px;
}

    .about-title span {
        color: var(--primary-teal);
    }

.about-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Vizyon & Misyon Listesi */
.vm-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

    .vm-list li {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
    }

.vm-icon {
    background-color: rgba(24, 126, 143, 0.1);
    color: var(--primary-teal);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.vm-text h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.vm-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* İstatistikler Bölümü */
.stats-section {
    background-color: var(--primary-dark);
    padding: 60px 0;
    margin: 40px 0;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

    .stats-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('');
        background-size: cover;
        background-position: center;
        opacity: 0.05; /* Arka planda hafif çatı dokusu */
    }

.stat-item {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
}

.stat-icon {
    color: var(--primary-teal);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Neden Bizi Seçmelisiniz Kartları */
.core-values-section {
    padding: 40px 0 80px 0;
}

.value-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    height: 100%;
    transition: all 0.3s ease;
}

    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(24, 126, 143, 0.1);
        border-color: rgba(24, 126, 143, 0.2);
    }

.value-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-bg);
    color: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px auto;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background-color: var(--primary-teal);
    color: #fff;
}

.value-title {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 800;
}

.value-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Float Animasyonu (Badge İçin) */
@keyframes float-badge {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ===================================================
               (HAKKIMIZDA SAYFASI ÖZEL CSS BİTİŞİ)
               =================================================== */


/* ===================================================
               5. HİZMET BÖLGELERİMİZ SAYFASI ÖZEL CSS STİLLERİ
               =================================================== */

/* Yan menüsüz, merkeze hizalı ana içerik alanı */
.areas-page-section {
    padding: 20px 0 60px 0;
}

.areas-content-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 35px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
}

/* Ana Görsel (Sayfa Başı) */
.areas-featured-img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 35px;
    object-fit: cover;
    /*height: 400px;*/
}

/* Etiketler (Tags) */
.areas-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

    .areas-tags .custom-tag {
        background: rgba(24, 126, 143, 0.1);
        color: var(--primary-teal);
        padding: 8px 18px;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

        .areas-tags .custom-tag.dark-tag {
            background: rgba(15, 44, 66, 0.1);
            color: var(--primary-dark);
        }

/* Metin Stilleri */
.areas-text-content {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

    .areas-text-content h2 {
        color: var(--primary-dark);
        font-size: 2rem;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .areas-text-content p {
        color: var(--text-muted);
        line-height: 1.8;
        font-size: 1rem;
        margin-bottom: 0;
    }

/* Bölge Kartları (Anadolu & Avrupa Yakası) */
.region-card {
    background: var(--light-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    border: 1px solid transparent;
}

    .region-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        border-color: rgba(24, 126, 143, 0.2);
    }

.region-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.region-body {
    padding: 30px 25px;
}

.region-title {
    color: var(--primary-dark);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .region-title i {
        color: var(--primary-teal);
    }

/* İlçe Etiketleri (Hap Şeklinde) */
.district-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.district-tag {
    background-color: #fff;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

.region-card:hover .district-tag {
    border-color: rgba(24, 126, 143, 0.3);
}

/* İçerik İçi Özellik Listesi (Checklist) */
.areas-checklist {
    list-style: none;
    padding: 0;
    margin: 50px 0 0 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

    .areas-checklist li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        background: var(--light-bg);
        padding: 15px 20px;
        border-radius: 12px;
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--primary-dark);
    }

        .areas-checklist li i {
            color: #fff;
            background-color: var(--primary-teal);
            border-radius: 50%;
            width: 26px;
            height: 26px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

/* ===================================================
(HİZMET BÖLGELERİMİZ SAYFASI ÖZEL CSS BİTİŞİ)
 =================================================== */

/* =========================================================================
           NEDEN BİZ, PROJELER VE SSS BÖLÜMÜ ÖZEL STİLLERİ
           ========================================================================= */

/* --- 4. NEDEN BİZ? BÖLÜMÜ --- */
.why-us-section {
    padding: 20px 10px;
    background-color: var(--light-bg);
}
.why-card {
    text-align: center;
    padding: 10px 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.why-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    border-radius: 14px;
    background-color: rgba(24, 126, 143, 0.08);
    color: var(--primary-teal);
    font-size: 2rem;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-card:hover .why-icon-box {
    background-color: var(--primary-teal);
    color: #fff;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 20px rgba(24, 126, 143, 0.2);
}

.why-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.why-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Responsive Ayarlar (@@media) */
@media (max-width: 767.98px) {
    /* DÜZELTME: Mobilde 4'lü yapının sığması için iyice küçültülmüş boyutlar */
    .why-icon-box {
        width: 38px;
        height: 38px;
        font-size: 1rem;
        margin-bottom: 8px;
        border-radius: 8px;
    }

    .why-title {
        font-size: 0.9rem;
        margin-bottom: 4px;
        line-height: 1.1;
    }

    .why-desc {
        font-size: 0.75rem;
        line-height: 1.2;
    }

    .why-card {
        padding: 5px 2px;
    }
}

/* --- 5. REFERANSLAR / PROJELER BÖLÜMÜ --- */
.projects-section {
    padding: 20px 10px;
    background-color: #fff;
}

.project-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    position: relative;
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.4s ease;
}

    .project-card:hover {
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        transform: translateY(-5px);
    }

.project-img-box {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

    .project-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.project-card:hover .project-img-box img {
    transform: scale(1.1);
}

.projectsSwiper {
    width: 100%;
    padding: 15px 15px 50px 15px !important;
}

    .projectsSwiper .swiper-pagination-bullet {
        background-color: var(--primary-dark);
        opacity: 0.3;
    }

    .projectsSwiper .swiper-pagination-bullet-active {
        background-color: var(--primary-teal);
        opacity: 1;
        transform: scale(1.2);
    }

/* --- 7. SIKÇA SORULAN SORULAR (SSS) BÖLÜMÜ --- */
.faq-section {
    padding: 20px 10px;
    background-color: #fff;
}

.custom-faq-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #f0f0f0;
    background-color: transparent;
    margin-bottom: 0;
    border-radius: 0 !important;
}

.custom-faq-accordion .accordion-button {
    background-color: transparent;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--primary-dark);
    padding: 22px 0;
    box-shadow: none !important;
    font-size: 1.05rem;
    transition: color 0.3s;
}

    .custom-faq-accordion .accordion-button:focus {
        outline: none;
    }

    .custom-faq-accordion .accordion-button:not(.collapsed) {
        color: var(--primary-teal);
        background-color: transparent;
    }
    /* Özel Artı/Eksi İkonları (Görseldeki gibi temiz görünüm) */
    .custom-faq-accordion .accordion-button::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%230f2c42' class='bi bi-plus-lg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2Z'/%3E%3C/svg%3E");
        transition: all 0.3s ease;
        background-size: 14px;
    }

    .custom-faq-accordion .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%23187e8f' class='bi bi-dash-lg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8Z'/%3E%3C/svg%3E");
        transform: rotate(180deg);
        background-size: 14px;
    }

.custom-faq-accordion .accordion-body {
    padding: 0 0 25px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 500;
}

/* ===================================================
   GALERİ / REFERANSLAR SAYFASI ÖZEL CSS STİLLERİ
   =================================================== */

/* Galeri Ana Alanı */
.gallery-section {
    padding: 20px 0 60px 0;
}

/* Galeri Filtreleme/Kategori Başlığı Alanı */
.gallery-header-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

    .gallery-header-text p {
        color: var(--text-muted);
        font-size: 0.95rem;
        line-height: 1.7;
    }

/* Galeri Kartı (Grid Yapısı) */
.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    display: block;
    text-decoration: none;
    height: 100%;
    cursor: pointer;
}

    .gallery-item img {
        width: 100%;
        height: 320px; /* Görsellerin sabit ve estetik yüksekliği */
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

/* Kartın üzerine gelince beliren gradient overlay */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px 20px 20px 20px;
    background: linear-gradient(to top, rgba(15, 44, 66, 0.95) 0%, rgba(15, 44, 66, 0.4) 50%, rgba(15, 44, 66, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: opacity 0.4s ease;
    opacity: 0; /* Başlangıçta gizli */
}

.gallery-item:hover .gallery-overlay {
    opacity: 1; /* Hover durumunda görünür */
}

/* Overlay içindeki metinler */
.gallery-title {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-category {
    color: var(--primary-teal);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-title,
.gallery-item:hover .gallery-category {
    transform: translateY(0);
}

/* ---------------------------------------------------
   GALERİ BÖLÜMÜ RESPONSIVE (@@media) AYARLARI
   --------------------------------------------------- */
@@media (max-width: 767.98px) {
    /* Galeri Mobil Ayarları */
    .gallery-item img {
        height: 250px;
    }

    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(15, 44, 66, 0.9) 0%, rgba(15, 44, 66, 0) 70%);
    }
    /* Mobilde overlay her zaman görünür olsun */
    .gallery-title {
        transform: translateY(0);
        font-size: 1.1rem;
    }

    .gallery-category {
        transform: translateY(0);
        font-size: 0.75rem;
    }
}
  