/* Genel Ayarlar */
body {
    font-family: 'Montserrat';
    /* DEĞİŞTİ */
    background-color: #fff;
    font-weight: 400;
    overflow-x: hidden;
    /* YENİ EKLENEN SİHİRLİ SATIR */
}

/* YUMUŞAK KAYDIRMA (SMOOTH SCROLL) */
html {
    scroll-behavior: smooth;
}

/* Menüden tıklanan bölümlerin header altında kalmamasını sağlar */
section[id] {
    scroll-margin-top: 80px;
    /* Header'ın yüksekliğine göre bir boşluk bırak */
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #ffffff;
    /* Direkt solid beyaz renk */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Daha yumuşak bir gölge */
    padding: 10px 0;
    /* Sabit bir padding */
    transition: padding 0.4s ease;
    /* Sadece padding geçişi kalsın */
}

.main-header .navbar-brand {
    padding: 0;
}

.main-header .main-logo {
    max-height: 50px;
    transition: max-height 0.4s ease;
}

.main-header.scrolled .main-logo {
    max-height: 40px;
    /* Kaydırınca logo biraz küçülecek */
}

/* Navigasyon Linkleri */
.main-header .nav-link {
    color: #333;
    font-weight: 300;
    /* DEĞİŞTİ */
    letter-spacing: 0.7px;
    /* Harf aralığını biraz açmak zarafet katar */
    font-size: 0.9rem;
    /* text-transform: uppercase; */
    padding: 10px 50px !important;
    position: relative;
    transition: color 0.3s ease;
}

.main-header .nav-link:hover {
    color: #c5a47e;
    /* Loren İnşaat'ın altın rengi */
}

/* Linklerin altına gelecek olan hover efekti */
.main-header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #c5a47e;
    transition: width 0.4s ease;
}

.main-header .nav-link:hover::after {
    width: 60%;
}

/* Bootstrap'in varsayılan davranışını ezip menüleri yanlara dağıtmak için */
.navbar>.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav-left,
.main-nav-right {
    flex: 1;
    /* Eşit alan kaplamalarını sağlıyoruz */
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav-left {
    justify-content: flex-end;
    /* Öğeleri sağa yasla */
    padding-right: 30px;
    /* Logoyla arasına boşluk */
}

.main-nav-right {
    justify-content: flex-start;
    /* Öğeleri sola yasla */
    padding-left: 30px;
    /* Logoyla arasına boşluk */
}

/* ======================================= */
/* MEGA MENÜ FİNAL SÜRÜM (Rönesans Yöntemi) */
/* ======================================= */

/* Mega menüyü tetikleyecek olan menü öğesi */
.nav-item.has-megamenu {
    position: static;
    /* Bu önemli, menünün header'a göre hizalanmasını sağlar */
}

/* Mega Menünün Kendisi */
.mega-menu {
    position: absolute;
    top: 100%;
    /* Header'ın hemen altından başla */
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
    padding: 40px 0;
    border-top: 1px solid #e9e9e9;

    /* Senin de dediğin gibi, başlangıçta gizli */
    opacity: 0;
    visibility: hidden;

    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Menü öğesinin üzerine gelince mega menüyü görünür yap */
.nav-item.has-megamenu:hover>.mega-menu {
    opacity: 1;
    visibility: visible;
}

/* Mega Menü İçerik Stilleri (Bunlar aynı kalabilir) */
.mega-menu-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9e9e9;
}

.mega-menu-list {
    list-style: none;
    padding-left: 0;
}

.mega-menu-list li a {
    display: block;
    padding: 8px 0;
    color: #555;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.mega-menu-list li a:hover {
    color: #c5a47e;
    padding-left: 5px;
}


/* ============================ */
/* VİDEO HERO BÖLÜMÜ STİLLERİ   */
/* ============================ */

.hero-section {
    position: relative;
    height: 100vh;
    /* Ekran yüksekliğinin tamamını kapla */
    width: 100%;
    overflow: hidden;
    /* Taşan kısımları gizle */
    display: flex;
    /* İçeriği ortalamak için */
    align-items: center;
    justify-content: center;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    /* İçeriğin arkasında kalsın */
    object-fit: cover;
    /* Videoyu orantılı şekilde kapla */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    /* Video üzerine hafif siyah bir katman */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.hero-title {
    font-size: 4rem;
    /* 64px */
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    /* 20px */
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobil cihazlar için başlık boyutunu küçültelim */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* ======================================= */
/* DİNAMİK SIDEBAR STİLLERİ (GÜNCELLENMİŞ) */
/* ======================================= */

.dynamic-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 90px;
    background-color: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1050;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    /* Animasyonlar için en önemli kısım */
}

/* --- 1. Katman: Ana Görünüm Stilleri --- */
.sidebar-main-view {
    padding: 20px 0;
}

.sidebar-main-view .option-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* YANLIŞ GÖRÜNÜME SEBEP OLAN KISIM BURADA DÜZELTİLDİ */
.sidebar-main-view .option-item {
    display: flex;
    flex-direction: column;
    /* İkon ve metin alt alta */
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #f0f0f0;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 15px 5px;
    /* Padding ayarlandı */
    width: 100%;
    text-align: center;
    transition: background-color 0.3s ease;
}

.sidebar-main-view .option-item i {
    font-size: 1.4rem;
    margin-bottom: 5px;
    /* İkon ve metin arası boşluk */
}

.sidebar-main-view .option-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.sidebar-main-view .category-item {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-main-view .category-item:hover {
    background-color: #c5a47e;
    color: #111;
}


/* --- 2. ve 3. Katman: İç Panel Stilleri --- */
.sidebar-view {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.sidebar-view:not(.is-active) {
    transform: translateY(100%);
}

.sidebar-main-view.is-hidden {
    transform: translateY(-100%);
}

.panel-title {
    color: #fff;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 20px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    text-align: center;
    flex-shrink: 0;
    /* Küçülmesini engelle */
}

.panel-list {
    list-style: none;
    padding: 0;
    width: 100%;
    text-align: center;
    flex-grow: 1;
    /* Esneyerek alanı doldur */
    overflow-y: auto;
    /* İçerik sığmazsa scroll çıksın */
}

.panel-list li a {
    display: block;
    padding: 12px 10px;
    color: #f0f0f0;
    text-decoration: none;
    font-size: 0.65rem;
    transition: background-color 0.3s;
}

.panel-list li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.panel-list .more-link a {
    color: #c5a47e;
    font-weight: 500;
}

.sidebar-back-btn {
    background: none;
    border: none;
    color: #c5a47e;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    padding: 20px 0;
    width: 100%;
    flex-shrink: 0;
    /* Küçülmesini engelle */
}

.panel-social-icons {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    /* Küçülmesini engelle */
}

.panel-social-icons a {
    color: #fff;
    font-size: 1.2rem;
    margin: 0 10px;
}


/* ================================== */
/* MOBİLDE GİZLEME KODU             */
/* ================================== */

@media (max-width: 991.98px) {

    /* Sidebar'ı tamamen gizle */
    .dynamic-sidebar {
        display: none;
    }

    /* Header'ı tekrar tam genişliğe getir */
    .main-header {
        right: 0;
        width: 100%;
    }
}

/* ================================== */
/* MOBİL AKORDEON MENÜ STİLLERİ       */
/* ================================== */

/* Ana menü linkini, içindeki ikonu sağa yaslayacak şekilde ayarla */
.mobile-nav-list .nav-link[data-bs-toggle="collapse"] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* + ikonu için stil */
.accordion-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

/* İkonun yatay ve dikey çizgileri */
.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background-color: #333;
    transition: transform 0.3s ease;
}

.accordion-icon::before {
    /* Yatay çizgi */
    top: 50%;
    left: 2px;
    width: 16px;
    height: 2px;
    margin-top: -1px;
}

.accordion-icon::after {
    /* Dikey çizgi */
    top: 2px;
    left: 50%;
    width: 2px;
    height: 16px;
    margin-left: -1px;
}

/* Menü AÇIK olduğunda (Bootstrap aria-expanded="true" ekler) ikonu - yap */
.mobile-nav-list .nav-link[aria-expanded="true"] .accordion-icon::after {
    transform: rotate(90deg);
    /* Dikey çizgiyi döndürerek + işaretini - yapar */
}

/* Açılan alt menünün kendisi */
.submenu {
    padding-left: 1rem;
    /* İçeriden başlasın */
    background-color: #f8f8f8;
    margin: 0;
}

/* Alt menü linkleri */
.submenu-item {
    display: block;
    padding: 0.8rem 1rem;
    color: #555;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.submenu-item:hover {
    color: #c5a47e;
    background-color: #f0f0f0;
}

.submenu li:last-child .submenu-item {
    border-bottom: none;
}

.main-logo-mobile {
    max-height: 40px;
    /* Mobil logo için makul bir yükseklik */
}

/* ============================ */
/* HAKKIMIZDA BÖLÜMÜ STİLLERİ   */
/* ============================ */

#hakkimizda {
    background-color: #fff;
}

.about-img {
    padding-left: 0;
}

.full-width-img {
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    min-height: 500px;
    /* Resmin çok daralmamasını sağlar */
}

.section-title {
    font-weight: 400;
    font-size: 2.5rem;
    letter-spacing: 1px;
    /* Harf aralığı açıldı */
    margin-bottom: 1rem;
    color: #333;
}

.title-underline {
    width: 80px;
    height: 3px;
    background-color: #c5a47e;
    /* Altın rengi */
    border: none;
    opacity: 1;
    margin: 15px 0;
}

.about-text p {
    color: #555;
    line-height: 1.8;
}

/* ======================================================= */
/* TÜM MASAÜSTÜ (ve üzeri) ÖZEL STİLLERİ (992px+)           */
/* ======================================================= */

@media (min-width: 992px) {

    /* 1. Header'ı sidebar için daralt ve sağa yanaştır */
    .main-header {
        right: 85px;
        width: calc(100% - 85px);
    }

    .main-header .navbar>.container {
        padding-right: 0;
    }

    /* 2. Hakkımızda yazı alanı için sidebar'dan boşluk bırak */
    .about-text {
        padding-right: 120px;
    }

    /* 3. Diğer bölümlerin container'ları için sağdan boşluk bırak */
    #hakkimizda .services-section .container,
    #yorumlar .container,
    #iletisim .container {
        padding-right: calc(1.5rem + 85px);
    }

    /* 4. Projeler Slider'ının navigasyon oklarını sidebar'dan kurtar */
    #projeler {
        --swiper-navigation-sides-offset: 95px;
    }

    .project-slider {
        padding-right: calc(85px + 15px);
        /* Sidebar Genişliği + Güvenlik Payı */
    }
}


/* ======================================================= */
/* TÜM MOBİL (ve altı) ÖZEL STİLLERİ (991.98px-)             */
/* ======================================================= */

@media (max-width: 991.98px) {

    /* 1. Sidebar'ı tamamen gizle */
    .right-fixed-options {
        display: none;
    }

    /* 2. Header'ı tekrar tam genişliğe getir (önceki kuralı ezmek için) */
    .main-header {
        right: 0;
        width: 100%;
    }

    /* 3. Hakkımızda yazısının padding'ini mobilde biraz azalt */
    .about-text.p-5 {
        padding: 2rem !important;
    }

    /* 4. Mobil header'da logo ve menü butonunu hizala */
    .main-header .navbar>.container {
        justify-content: space-between;
    }

    /* 5. Hero başlıklarını mobilde küçült */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* ============================ */
/* HİZMET KARTLARI STİLLERİ     */
/* ============================ */

.services-section {
    position: relative;
}

.services-section .col-lg-4 {
    display: flex;
    flex-direction: column;
}

.service-box {
    background-color: #f3f3f3;
    padding: 60px 30px 30px 30px;
    /* İkonun üstte kalması için üstten boşluk */
    border-radius: 10px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    margin-top: 45px;
    /* İkonun yarısının içine girmesi için */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-grow: 1;
    width: 100%;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.service-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #c5a47e;
    /* Altın Rengi */
    color: #fff;
    font-size: 2rem;
    position: absolute;
    top: -45px;
    /* Kutunun yarısı dışarıda kalacak şekilde */
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(197, 164, 126, 0.5);
}

.service-box h3 {
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 15px;
}

/* ============================ */
/* SCROLL ANİMASYON STİLLERİ    */
/* ============================ */

/* Animasyon uygulanacak elementlerin başlangıç durumu (görünmez ve yerinden kaymış) */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.fade-in-left {
    transform: translateX(-50px);
}

.animate-on-scroll.fade-in-right {
    transform: translateX(50px);
}

.animate-on-scroll.fade-in-up {
    transform: translateY(50px);
}

/* JavaScript tarafından eklendiğinde animasyonu tetikleyecek olan class */
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* ============================ */
/* PROJELER SLIDER STİLLERİ     */
/* ============================ */




/* ============================ */
/* SAYILARLA BİZ BÖLÜMÜ STİLLERİ*/
/* ============================ */

#counter-section {
    /* Geçici bir arkaplan görseli, bunu istediğiniz bir görselle değiştirebilirsiniz */
    background-image: url('https://images.pexels.com/photos/1216589/pexels-photo-1216589.jpeg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    /* Parallax efekti için */
    position: relative;
    z-index: 1;
}

/* Görselin üzerine karartma efekti */
#counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.7);
    z-index: -1;
}

.counter-box i {
    font-size: 2.7rem;
    color: #c5a47e;
    /* Altın rengi ikonlar */
    margin-bottom: 15px;
}

.counter-number {
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.counter-text {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================ */
/* DEĞERLERİMİZ BÖLÜMÜ STİLLERİ */
/* ============================ */

#degerlerimiz {
    background-color: #ffffff;
}

.value-card {
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
    text-align: center;
    height: 100%;
    /* Kartların eşit yüksekliğe sahip olması için */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
}

.value-icon {
    font-size: 2.5rem;
    color: #c5a47e;
    /* Altın rengi ikonlar */
    margin-bottom: 20px;
}

.value-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

/* Kartları içeren kolonların dikeyde esnemesi için */
#degerlerimiz .col-lg-4 {
    display: flex;
}

/* ============================ */
/* MÜŞTERİ YORUMLARI STİLLERİ   */
/* ============================ */

#yorumlar {
    position: relative;
}

.testimonial-slider {
    padding-bottom: 50px;
    /* Alttaki noktalara yer aç */
}

.testimonial-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    margin: 0 20px;
    /* Kenarlardan boşluk */
    text-align: center;
}

.testimonial-card .fa-quote-left {
    font-size: 3rem;
    color: #c5a47e;
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
}

.testimonial-author {
    font-weight: 600;
    color: #333;
}

/* Bu slider'a özel pagination stili */
.testimonial-slider .swiper-pagination-bullet-active {
    background-color: #c5a47e;
}

/* ============================ */
/* İLETİŞİM BÖLÜMÜ STİLLERİ     */
/* ============================ */

#iletisim {
    background-color: #fff;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-info-list i {
    font-size: 1.5rem;
    color: #c5a47e;
    margin-right: 20px;
    margin-top: 5px;
}

.contact-info-list p {
    margin-bottom: 0;
    color: #555;
}

/* Form Stilleri */
.form-control {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 12px 15px;
}

.form-control:focus {
    border-color: #c5a47e;
    box-shadow: 0 0 0 0.25rem rgba(197, 164, 126, 0.25);
}

.custom-btn {
    background-color: #c5a47e;
    border-color: #c5a47e;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
}

.custom-btn:hover {
    background-color: #b38f5a;
    border-color: #b38f5a;
}

/* ============================ */
/* FOOTER BÖLÜMÜ STİLLERİ       */
/* ============================ */

.site-footer {
    background-color: #222529;
    /* Koyu gri arkaplan */
    color: #aeb1b7;
    padding-top: 60px;
}

.footer-logo {
    max-width: 200px;
    opacity: 0.8;
}

.site-footer h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links li a {
    color: #aeb1b7;
    text-decoration: none;
    padding: 5px 0;
    display: block;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #c5a47e;
    /* Altın rengi */
}

.contact-info-footer li {
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.contact-info-footer i {
    color: #c5a47e;
    margin-right: 10px;
}

.footer-bottom {
    background-color: #1c1e22;
    padding: 20px 0;
    margin-top: 40px;
    font-size: 0.9rem;
}

.social-icons a {
    color: #aeb1b7;
    font-size: 1.1rem;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #fff;
}

/* ============================ */
/* PARALLAX ARA BÖLÜM STİLLERİ  */
/* ============================ */

.parallax-divider {
    height: 15vh;
    /* Ekran yüksekliğinin %30'u kadar ince bir alan */
    min-height: 200px;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    /* Parallax efektini yaratan sihirli kod */
}

/* ======================================= */
/* PROJE DETAY SAYFASI STİLLERİ            */
/* ======================================= */

/* Proje Hero Alanı */
.project-hero {
    height: 50vh;
    min-height: 400px;
    background-size: cover;
    background-position: center center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.project-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.project-hero p {
    font-size: 1.2rem;
    font-weight: 300;
}

/* Sayfa içi küçük başlıklar */
.section-title-small {
    font-weight: 400;
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

/* Sağdaki Bilgi Kartı */
.project-info-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.project-info-card h4 {
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.project-info-card ul li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.project-info-card ul li:last-child {
    border-bottom: none;
}

.project-info-card ul li span {
    color: #555;
    font-weight: 400;
}

/* Galeri Resimleri */
.project-section .g-3 img {
    transition: opacity 0.3s ease;

}

.project-section .g-3 img:hover {
    opacity: 0.8;
}

/* Haritanın responsive olması için */
.map-responsive {
    overflow: hidden;
    position: relative;
    height: 0;
}

.map-responsive.map-thin {
    padding-bottom: 35%;
    /* Yüksekliği azalttık (16:9 yerine daha ince) */
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 80%;
    width: 100%;
    position: absolute;
    /* border-radius: 10px; -> Tam genişlikte bu kurala gerek yok */
}

/* Galeri Tab Menüsü Stilleri */
.gallery-tabs {
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
}

.gallery-tabs .nav-link {
    border: none;
    color: #555;
    font-weight: 500;
}

.gallery-tabs .nav-link.active {
    color: #c5a47e;
    border-bottom: 2px solid #c5a47e;
}

/* Galeri Slider Stilleri */
.gallery-slider {
    width: 100%;
    height: 200px;
}

.gallery-slider .swiper-slide {
    height: 200px;
    /* Her bir slaytın yüksekliğini sabitle */
    background-color: #f0f0f0;
    /* Resim yüklenene kadar gri bir arkaplan */
}

.gallery-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Resmi, oranını bozmadan kutuya sığdırır */
    cursor: pointer;
}

.gallery-slider .swiper-button-next,
.gallery-slider .swiper-button-prev {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.gallery-slider .swiper-button-next::after,
.gallery-slider .swiper-button-prev::after {
    font-size: 1rem;
    font-weight: bold;
}

/* ======================================= */
/* KARİYER MEGA MENÜSÜ EK STİLLERİ         */
/* ======================================= */

.career-promo-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 100%;
}

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

.career-promo-card .promo-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
}

.career-promo-card h5 {
    font-weight: 600;
    color: #fff;
}

.career-promo-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* ======================================= */
/* GENEL İÇ SAYFA STİLLERİ                 */
/* ======================================= */

/* Proje detaydakine benzer ama daha genel bir hero */
.page-hero {
    height: 40vh;
    min-height: 300px;
    background-size: cover;
    background-position: center center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.1rem;
    font-weight: 300;
}

/* Başvuru formu için stiller */
.application-form {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.application-form .form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* ============================ */
/* LİSTELEME SAYFASI FİLTRE BUTONLARI */
/* ============================ */

#project-filters .btn-outline-primary {
    --bs-btn-color: #c5a47e;
    /* Yazı Rengi */
    --bs-btn-border-color: #c5a47e;
    /* Kenarlık Rengi */
    --bs-btn-hover-color: #fff;
    /* Üzerine Gelince Yazı Rengi */
    --bs-btn-hover-bg: #c5a47e;
    /* Üzerine Gelince Arka Plan Rengi */
    --bs-btn-hover-border-color: #c5a47e;
    /* Üzerine Gelince Kenarlık Rengi */
    --bs-btn-active-color: #fff;
    /* Aktif Olduğunda Yazı Rengi */
    --bs-btn-active-bg: #c5a47e;
    /* Aktif Olduğunda Arka Plan Rengi */
    --bs-btn-active-border-color: #c5a47e;
    /* Aktif Olduğunda Kenarlık Rengi */
    --bs-btn-focus-shadow-rgb: 197, 164, 126;
    /* Odaklanma Parlaması Rengi */
    border-radius: 0;
    /* Köşeleri keskin yapalım */
    font-weight: 500;
}

/* ============================ */
/* YENİ PORTFOLYO/PROJE KARTI STİLLERİ */
/* ============================ */

.portfolio-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 0;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
    text-decoration: none;
    /* Link alt çizgisini kaldır */
}

.portfolio-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.portfolio-card-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-card:hover .portfolio-card-img {
    transform: scale(1.08);
    /* Hafif zoom efekti */
}

.portfolio-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 60%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* İçeriği en alta gönderir */
    align-items: flex-start;
    /* İçeriği sola yaslar */
    padding: 1.5rem;
    opacity: 0;
    /* Başlangıçta gizli */
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-card:hover .portfolio-card-overlay {
    opacity: 1;
    /* Fare üzerine gelince görünür yap */
}

.portfolio-card-overlay .card-title {
    font-weight: bold;
    margin-bottom: 0.25rem;
    color: #fff;
}

.portfolio-card-overlay .card-text {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8) !important;
}

/* ============================ */
/* GOOGLE HARİTA RESPONSIVE YAPISI */
/* ============================ */
.map-responsive {
    overflow: hidden;
    padding-bottom: 40%;
    /* Yüksekliği ayarlar, 16:9 için 56.25% kullanabilirsiniz */
    position: relative;
    height: 0;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

.project-hero {
    position: relative;
    /* ... (mevcut diğer stiller) ... */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video-bg,
.hero-image-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 2; /* <-- BU SATIRI EKLEYİN */
}
/* ============================ */
/* VİTRİN (SHOWCASE) SLIDER STİLLERİ */
/* ============================ */

/* project-slider için olan stilleri showcase-slider için de geçerli kıl */
.showcase-slider {
    width: 100%;
    padding: 10px 0 50px 0;
    /* Altta navigasyon noktaları için boşluk */

    /* Eğer sidebar kullanılıyorsa, sağdan boşluk bırakmak için */
    @media (min-width: 992px) {
        padding-right: calc(85px + 15px);
        /* Sidebar Genişliği + Güvenlik Payı */
        --swiper-navigation-sides-offset: 95px;
    }
}

.showcase-slider .project-card {
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 450px;
    /* Kartların sabit bir yüksekliği olsun */
}

.showcase-slider .project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-slider .project-card:hover img {
    transform: scale(1.05);
    /* Üzerine gelince resim hafifçe büyüsün */
}

.showcase-slider .project-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 20px 20px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.showcase-slider .project-content h3 {
    font-weight: 600;
}

.showcase-slider .project-content p {
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 20px;

}

/* Swiper Navigasyon Stilleri */
.showcase-slider .swiper-button-next,
.showcase-slider .swiper-button-prev {
    color: #c5a47e;
    /* Altın rengi */
}

.showcase-slider .swiper-pagination-bullet-active {
    background-color: #c5a47e;
    /* Aktif nokta altın rengi */
}

