/* CSS AYARLARI */
:root {
    --bhdr-gold: #ffc107;
    --bhdr-dark: #0b0e13;
    --bhdr-white: #ffffff;
    --bhdr-blue: rgb(16, 124, 233);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: var(--bs-body-line-height) 1.5;
    color: #57595b;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

.fw-black {
    font-weight: 900;
}

/* Top Bar */
.bg-top {
    background: var(--bhdr-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1002;
    /* Navbar'ın üstünde kalmalı */
    height: 48px;
}

.btn-lang {
    color: var(--bhdr-white);
    background: rgb(15, 114, 202);
    padding: 5px 14px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.btn-lang:hover {
    background: var(--bhdr-gold);
    color: var(--bhdr-dark);
}

/* Navbar Temel Yapı */
.ftco-navbar-light {
    background: transparent !important;
    position: fixed;
    /* En başından beri fixed yapıyoruz */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    padding: 1.5rem 0;
    /* Üst barın yüksekliği kadar aşağıda başlatıyoruz */
    margin-top: 48px;
    /* Tüm geçişleri pürüzsüzleştir */
    transition:
        margin-top 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.4s ease,
        box-shadow 0.4s ease;
}

/* 3. Scrolled Hali - Sarsıntı ve Boşluk Yapmayan Anlık Geçiş */
.ftco-navbar-light.scrolled {
    position: fixed !important;
    top: 0 !important;
    right: 0;
    left: 0;
    margin-top: 0 !important;
    background: white !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    padding: 0 !important;
    backdrop-filter: blur(10px);

    /* KRİTİK: Yavaşça gelme efektini (slideInDown vb.) tamamen öldürür */
    animation: none !important;
    transition: none !important;
    transform: none !important;
}

/* 4. Logo Ayarı - Merkeze Odaklı */
.main-logo {
    height: 120px;
    width: auto;
    display: block;
    transform-origin: center center;
    /* Normalde logo geçişi yumuşak kalsın dersen süreyi tut, ama sarsıntı istemiyorsan bunu da 0 yapabilirsin */
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* 5. Scrolled Durumunda Logo Ölçekleme */
.scrolled .main-logo {
    /* Logo küçülürken de anlık olsun istiyorsan buraya da transition: none !important; ekleyebilirsin */
    transform: scale(0.5);
    height: 100px;
}

/* Scrolled link renkleri */
.scrolled .navbar-nav .nav-link {
    font-size: 13px;
    font-weight: 400;
    color: black !important;
    transition: none !important;
    /* Linklerdeki kaymaları da anlık yap */
}

/* Havalı Toggler CSS */
.navbar-toggler {
    width: 45px;
    height: 45px;
    position: absolute;
    top: 40px;
    right: 30px;
    transition: .5s ease-in-out;
    cursor: pointer;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler span {
    display: block;
    position: absolute;
    height: 3px;
    width: 30px;
    background: #ffc107;
    /* Gold rengin */
    border-radius: 9px;
    opacity: 1;
    left: 7px;
    transition: .25s ease-in-out;
}

/* 3 Çizgi Pozisyonları */
.navbar-toggler span:nth-child(1) {
    top: 12px;
}

.navbar-toggler span:nth-child(2) {
    top: 21px;
}

.navbar-toggler span:nth-child(3) {
    top: 30px;
}

/* X Animasyonu */
.navbar-toggler.open span:nth-child(1) {
    top: 21px;
    transform: rotate(135deg);
}

.navbar-toggler.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.navbar-toggler.open span:nth-child(3) {
    top: 21px;
    transform: rotate(-135deg);
}

/* Linkler */
.navbar-nav .nav-link {
    color: var(--bhdr-white) !important;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 18px !important;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--bhdr-gold) !important;
}

/* Menü ve alt menü arasındaki boşluğu kapatan görünmez köprü */
.navbar-nav .nav-item.dropdown>.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -25px;
    left: 0;
    width: 100%;
    height: 25px;
    background: transparent;
    z-index: -1;
}

/* Dropdown */
.dropdown-menu {
    background: var(--bhdr-dark);
    border-top: 3px solid var(--bhdr-gold);
    border-radius: 0 0 10px 10px;
    margin-top: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.dropdown-item {
    color: var(--bhdr-white);
    padding: 10px 25px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: rgba(255, 184, 0, 0.1);
    color: var(--bhdr-gold);
}

/* Scroll to Top Buton Stilleri */
#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 1000;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#btn-back-to-top:hover {
    transform: translateY(-5px);
}

@media (min-width: 992px) {
    .ftco-navbar-light.scrolled {
        height: 60px;
    }
}

.lang-mobile {
    position: absolute;
    top: 50px;
}

@media (max-width: 991.98px) {
    .ftco-navbar-light {
        margin-top: 0;
        top: 0;
    }

    .navbar-brand {
        width: 100%;
    }

    .navbar-collapse {
        max-height: 85vh;
        /* Ekranın %85'inden fazlasını kaplamasın */
        overflow-y: auto;
        background: #000;
    }

    .dropdown-menu {
        background: #111 !important;
        /* Biraz daha derin siyah */
        border-top: 2px solid #ffc107 !important;
        margin-bottom: 15px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .main-logo {
        height: 70px;
    }

    .navbar-nav .nav-link {
        font-size: 11px;
    }
}

/* İç sayfalarda navbar'ın varsayılan hali */
.inner-page .ftco-navbar-light {
    background: var(--bhdr-white) !important;
    padding: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.inner-page .navbar-collapse {
    background: none;
}

/* İç sayfalarda link renklerini sabitleme (Beyaz zemin yapacaksan siyah yapmalısın) */
.inner-page .navbar-nav .nav-link {
    color: var(--bhdr-dark) !important;
}

/* Sayfa başlığı (Breadcrumb) alanına üstten boşluk ver */
.inner-page .page-header {
    margin-top: 108px;
    padding: 3rem 0;
    background: #be170105;
}

.inner-page .page-header a {
    color: #898282;
}

/* --- HERO SECTION --- */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
}

.hero h1 {
    font-weight: 900;
    font-size: 4rem;
}

.hero span {
    color: var(--bhdr-gold);
}

/* --- SERVICE CARDS --- */
.service-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-bottom: 5px solid var(--bhdr-gold);
    margin-top: -100px;
    transition: transform 0.3s;
}

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

.service-card i {
    font-size: 2.5rem;
    color: var(--bhdr-gold);
    margin-bottom: 20px;
}

/* --- FLOAT CONTACT --- */
.float-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.btn-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
    font-size: 24px;
}

/* fixed contact butonlar */
.fixed-contact-wrapper {
    position: fixed;
    bottom: 35%;
    right: 20px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.c-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 50px;
    width: 50px;
    overflow: hidden;
    color: #fff !important;
    border: 2px solid #64ff00;
}

.c-btn i {
    font-size: 22px;
    min-width: 55px;
    text-align: center;
}

.c-btn span {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.4s ease, padding 0.4s ease, opacity 0.3s;
    font-weight: 600;
    font-size: 15px;
    opacity: 0;
}

/* Hover Durumu */
@media (min-width: 992px) {
    .c-btn:hover {
        width: 200px;
        justify-content: flex-start;
    }

    .c-btn:hover span {
        max-width: 140px;
        opacity: 1;
        padding-left: 5px;
    }
}

/* Buton Renkleri */
.btn-offer {
    background: linear-gradient(135deg, #0763db 0%, #0549a3 100%);
}

.btn-offer i {
    min-width: 65px;
}

.btn-whatsapp {
    background: #25d366;
}

.btn-phone {
    background: #168099;
}

/* Teklif Butonu Nabız Efekti */
.btn-offer::after {
    content: &#39;
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    z-index: -1;
    animation: c_pulse 2s infinite;
}

@keyframes c_pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@media (max-width: 999px) {
    .contact-button {
        width: 45px;
        height: 45px;
    }

    .main-logo {
        margin: auto;
    }

    .my-mobile-padding {
        padding-top: 0 !important;
    }

    .fixed-contact-wrapper {
        bottom: 95px;
        right: 20px;
        gap: 10px;
    }
}

/* Modal Tasarım İyileştirmeleri */
#teklifModal .modal-content {
    background: #1a1a1a;
    /* Sitenin koyu teması */
    border: 2px solid #ffc107;
    /* Altın sarısı çerçeve */
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

#teklifModal .modal-header {
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
}

#teklifModal .modal-title {
    color: #ffc107;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#teklifModal .btn-close-custom {
    background: none;
    border: 1px solid #ffc107;
    color: #ffc107;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    opacity: 0.7;
}

#teklifModal .btn-close-custom:hover {
    opacity: 1;
    background: #ffc107;
    color: #000;
}

#teklifModal .form-control {
    background: #252525;
    border: 1px solid #333;
    color: #fff;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s;
}

#teklifModal .form-control:focus {
    border-color: #ffc107;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.1);
    background: #2a2a2a;
}

#teklifModal .form-control::placeholder {
    color: #888;
}

#teklifModal .btn-submit {
    background: #ffc107;
    color: #1a1a1a;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    padding: 15px;
}

#teklifModal .btn-submit:hover {
    background: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

#teklifModal .form-check-label {
    color: #ccc;
    cursor: pointer;
}

#teklifModal .form-check-input:checked {
    background-color: #ffc107;
    border-color: #ffc107;
}

#teklifModal select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffc107'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
}

.home-slider-wrapper {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 700px;
    overflow: hidden;
    background: #000;
}

/* Arka Plan Videosu */
.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.home-slider {
    position: relative;
    z-index: 5;
    height: 100%;
}

.slider-item {
    height: 90vh;
    min-height: 700px;
    background-size: cover;
    background-position: center center;
    position: relative;
    display: flex;
    align-items: center;
    background-color: transparent;
}

.slider-item .overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.slider-text {
    position: relative;
    z-index: 10;
}

.slider-text h1 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: #fff;
    margin-bottom: 25px;
}

.slider-text .subheading {
    color: var(--bhdr-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    display: block;
    margin-bottom: 15px;
}

.btn-warning {
    background-color: var(--bhdr-gold);
    border: none;
    color: #000;
    font-weight: 800;
    padding: 15px 40px;
    border-radius: 0;
    transition: 0.3s;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    color: #fff !important;
    z-index: 20;
}

.owl-prev {
    left: 20px;
}

.owl-next {
    right: 20px;
}

/* BHDR Hizmetler Tasarım CSS */
* --- Animasyon Hazırlık Ayarları --- */ .ftco-animate {
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.ftco-animate.animated {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* --- Tasarım Detayları --- */
.sub-title {
    color: var(--bhdr-gold);
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

.main-title {
    font-weight: 800;
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.gold-divider {
    width: 80px;
    height: 3px;
    background-color: var(--bhdr-gold);
}

.bh-service-box {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    padding: 12px;
    transition: all 0.3s ease;
}

.bh-img-container {
    position: relative;
    height: 240px;
    border-radius: 8px;
    overflow: hidden;
}

.bh-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.bh-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bh-service-box:hover .bh-img-container img {
    transform: scale(1.1);
}

.bh-service-box:hover h3 a {
    color: var(--bhdr-gold);
}

.bh-service-box:hover .bh-overlay {
    opacity: 1;
}

.bh-btn-circle {
    width: 80px;
    height: 80px;
    background: var(--bhdr-gold);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transform: scale(0.8);
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.bh-service-box:hover .bh-btn-circle {
    transform: scale(1);
}

.bh-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 15px 0;
}

.bh-info h3 a {
    color: var(--bhdr-dark);
    text-decoration: none;
    font-size: 1.5rem;
}

.btn-bhdr-gold {
    display: inline-block;
    padding: 14px 35px;
    background: var(--bhdr-gold);
    color: #000;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--bhdr-gold);
}

.btn-bhdr-gold:hover {
    background: transparent;
    color: var(--bhdr-gold);
}

/* Kurumsal Blok Özel Stilleri */
.text-bhdr-gold {
    color: var(--bhdr-gold);
}

.bhdr-subtitle {
    display: block;
    font-weight: 700;
    color: var(--bhdr-gold);
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.bhdr-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bhdr-dark);
}

@media (max-width:1023px) {
    .bhdr-title {
        font-size: 2rem;
    }
}

/* Görsel Katmanları */
.gold-accent-frame {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 70%;
    height: 70%;
    border: 10px solid var(--bhdr-gold);
    z-index: 1;
    opacity: 0.2;
}

.main-image-wrapper {
    position: relative;
    z-index: 2;
    border-bottom: 5px solid var(--bhdr-gold);
}

.experience-card {
    position: absolute;
    bottom: -15px;
    right: 15px;
    background: var(--bhdr-dark);
    color: #fff;
    padding: 20px 30px;
    z-index: 3;
    border-radius: 2px;
}

.experience-card .year {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--bhdr-gold);
}

.experience-card .text {
    font-size: 0.75rem;
    text-transform: uppercase;
}

/* İçerik */
.bhdr-text {
    color: #444;
    line-height: 1.7;
}

.f-item i {
    color: var(--bhdr-gold);
}

.f-item span {
    font-weight: 600;
    color: var(--bhdr-dark);
}

.btn-bhdr-dark {
    background: var(--bhdr-dark);
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
}

.text-gold {
    color: var(--bhdr-gold);
}

.btn-bhdr-dark:hover {
    background: var(--bhdr-gold);
    color: var(--bhdr-dark);
}

/* Sektörler */
.transition-all {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sektor-kart {
    background-color: #fff;
    cursor: pointer;
    border: 1px solid #eee !important;
}

.icon-box {
    width: 90px;
    height: 90px;
    border: 1px solid #ccc;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.icon-box .fa-2x {
    font-size: 2em;
    color: #555252;
}

.sektor-kart:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: #ffc107 !important;
}

.sektor-kart:hover .icon-box {
    background-color: #ffc107;
    border-color: #ffc107;
}

.sektor-kart:hover .icon-box i {
    color: #fff !important;
    transform: scale(1.1);
}

.sektor-kart h5 {
    transition: color 0.3s ease;
}

/* Parallax ve Overlay Çözümü */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    position: relative;
    /* Katmanlama için şart */
    overflow: hidden;
}

.parallax-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    opacity: .65;
    z-index: 1;
    /* En altta (arka planın hemen üstünde) */
}

.parallax-bg .container {
    position: relative;
    /* Overlay'in üstüne çıkması için */
    z-index: 2;
    /* Overlay'den daha yüksek değer */
}

.counter-card {
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 20px;
    transition: all 0.4s ease;
    height: 100%;
}

.counter-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--bhdr-gold);
}

.stat-icon {
    color: var(--bhdr-gold);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    display: block;
    min-height: 3.8rem;
    /* Sayarken zıplama yapmaması için */
}

.stat-label {
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

/* CTA Alanı Düzenlemesi */
.cta-banner {
    background-color: var(--bhdr-gold);
    border-radius: 30px;
    padding: 60px;
    margin-top: 80px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.btn-bhdr-dark {
    background-color: var(--bhdr-dark);
    color: white;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-bhdr-dark:hover {
    background-color: #000;
    transform: scale(1.05);
    color: #fff;
}

.bhdr-refs {
    background-color: #f8f9fa;
}

/* =============================================
   REFERANS KARTLARI - GÜNCELLENMİŞ STİLLER
   ============================================= */

.bhdr-refs {
    background: linear-gradient(135deg, #f8f9fa 0%, #eef0f2 100%) !important;
}

/* Kart yüksekliklerini eşitle */
.carousel-referans .item {
    display: flex;
    height: 100%;
}

.referans-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

/* İçerik kutusu alta yapışsın */
.content-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 14px 16px 16px !important;
    background: #fff;
    border-top: none !important;
}

/* Resim yüksekliği sabit kalsın */
.img-wrapper {
    height: 220px;
    flex-shrink: 0;
}

/* Owl Carousel satır yüksekliği eşitleme */
.owl-carousel .owl-stage {
    display: flex !important;
}

/* Kart */
.referans-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.referans-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

/* Resim alanı */
.img-wrapper {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

.referans-card:hover .project-img {
    transform: scale(1.08);
}

/* Resim üzerine hafif gradient overlay */
.img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent);
    pointer-events: none;
}

/* İçerik kutusu */
.content-box {
    padding: 14px 16px 16px !important;
    background: #fff;
    border-top: none !important;
}

/* Hizmet badge'leri */
.my-ref-banner {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem !important;
    font-weight: 600;
    letter-spacing: 0.3px;
    background-color: #fff8e1 !important;
    color: #7a5c00 !important;
    border: 1px solid #f0c040 !important;
    border-radius: 6px !important;
    padding: 3px 10px !important;
    margin: 2px 2px !important;
    text-transform: uppercase;
}

/* Badge içindeki logo */
.ref-banner-logo {
    max-width: 16px !important;
    height: 16px;
    object-fit: contain;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0.85;
}

/* Referans başlığı */
.ref-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 6px 0 0 0 !important;
    line-height: 1.3;
}

/* Badge wrapper - ortala */
.badge-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    min-height: 28px;
}

/* Carousel item padding */
.carousel-referans .item {
    padding: 8px 10px !important;
}

/* Başlık alanı */
.bhdr-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
}

/* BHDR Modern Blog Tasarım Detayları */
.bhdr-blog-section {
    padding: 50px 0 100px;
    background-color: #f8f9fa;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    border: none;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-img-link {
    display: block;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ffc107;
    /* BHDR Ana Rengi */
    color: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    line-height: 1;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.date-badge .day {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

.date-badge .month {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.9;
}

.blog-content {
    padding: 30px;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: #ffc107;
}

.blog-excerpt {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.read-more {
    font-weight: 600;
    color: #ffc107;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 10px;
    color: #ffc107;
}

.author-info {
    font-size: 13px;
    color: #999;
    font-weight: 500;
}

.section-subtitle {
    color: #ffc107;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.blog_details h1,
.blog_details h2,
.blog_details h3 {
    font-size: 1.6rem;
    margin: 30px 0 0;
}

@media (max-width:1200px) {

    .blog_details h1,
    .blog_details h2,
    .blog_details h3 {
        font-size: 1.15rem;
    }
}

/* BHDR Footer Özel Stilleri */
.bhdr-footer {
    background: #111111;
    padding: 80px 0 0 0;
    color: #acacac;
    font-size: 15px;
}

.bhdr-footer-widget h2 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.bhdr-footer-widget h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #ffc107;
}

.bhdr-footer-logo {
    max-width: 60px;
    height: auto;
    margin-bottom: 25px;
}

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

.footer-links li a {
    color: #acacac;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links li a:hover {
    color: #ffc107;
    padding-left: 5px;
}

.footer-links li a i {
    font-size: 12px;
    margin-right: 10px;
    color: #ffc107;
}

.contact-info-list {
    padding: 0;
    list-style: none;
}

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

.contact-info-list li i {
    color: #ffc107;
    margin-right: 15px;
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: #ffc107;
    transform: translateY(-3px);
}

.copyright-bar {
    background: #000;
    padding: 25px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.my-ref {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

/* Çerez Barı Modernize */
#cookie-consent-bar {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    z-index: 999;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    display: none;
    max-width: 500px;
}

.cc-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.cc-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.cc-buttons {
    display: flex;
    gap: 10px;
}

.cc-btn {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.cc-accept {
    background: #ffc107;
    color: #fff;
}

.cc-reject {
    background: #f1f1f1;
    color: #666;
}

.cc-accept:hover {
    background: #ffc107;
}

/* SSS Bölümü Özel CSS */
.bhdr-custom-accordion .accordion-item {
    transition: all 0.3s ease;
}

.bhdr-custom-accordion .accordion-button {
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
    background-color: #fff;
    color: #333;
    border: none;
    box-shadow: none;
}

.bhdr-custom-accordion .accordion-button:not(.collapsed) {
    background-color: #fff;
    color: var(--gold-color, #d4af37);
    /* Senin gold rengin */
}

.bhdr-custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.bhdr-custom-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d4af37'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.bhdr-custom-accordion .accordion-body {
    font-size: 1rem;
    line-height: 1.7;
}

/* İletişim Sayfasına Özel Ek Stiller */
.contact-header {
    background-color: #1a1a1a;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.contact-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
    text-align: center;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 35px;
    color: #ffc107;
    /* Gold renginiz */
    margin-bottom: 20px;
}

.contact-info-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-info-card p,
.contact-info-card a {
    color: #666;
    text-decoration: none;
    transition: 0.3s;
    word-wrap: break-word;
}

.contact-info-card a:hover {
    color: #ffc107;
}

.form-container {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.form-control {
    border: 1px solid #e1e1e1;
    padding: 12px 15px;
    border-radius: 8px;
}

.form-control:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 0.25rem rgba(197, 160, 89, 0.25);
}

.btn-submit {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #fff;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-submit:hover {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #fff;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
}

/* Blog Sayfalama (Pagination) Tasarımı */
.block-27 {
    margin-top: 50px;
    display: inline-block;
}

.block-27 ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 8px;
    /* Butonlar arası boşluk */
}

.block-27 ul li {
    display: inline-block;
}

.block-27 ul li a,
.block-27 ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 8px;
    /* Modern karemsi-oval yapı */
    border: 1px solid #e1e1e1;
    background: #fff;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}


.block-27 ul li a:hover {
    background: #ffc107;
    color: #fff;
    border-color: #ffc107;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}


.block-27 ul li.active span {
    background: #ffc107;/ Koyu gri / Siyah tonu / color: #c5a059;/ Gold metin */ border-color: #1a1a1a;
    cursor: default;
}

/* Önceki-Sonraki Ok İşaretleri Özel Stil */
.block-27 ul li:first-child a,
.block-27 ul li:last-child a {
    font-size: 18px;
    background: #f8f9fa;
}

/* Mobil Uyumluluk */
@media (max-width: 576px) {

    .block-27 ul li a,
    .block-27 ul li span {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

.tag-cloud-link {
    background: #f8f9fa;
    border: 1px solid #eee;
    padding: 5px 15px;
    border-radius: 5px;
    display: inline-block;
    margin: 2px;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

.tag-cloud-link:hover {
    background: #c00;
    color: #fff;
}

.share-section .social-links .btn {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eee;
    color: #333;
    transition: 0.3s;
    font-size: 1.2rem;
}

.share-section .social-links .btn:hover {
    background: var(--bhdr-blue);
    color: #fff;
}

.sidebar-box {
    background: #fff;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
}

.block-21 .blog-img {
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    flex-shrink: 0;
}

.block-21 .text {
    padding-left: 20px;
}

.block-21 .heading {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 5px;
}

.block-21 .meta {
    font-size: 12px;
    color: #999;
}

.sektor-detail-content {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: #444;
}

.sektor-detail-content h3,
.sektor-detail-content h4 {
    color: #1a1a1a;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.sektor-icon-badge {
    width: 80px;
    height: 80px;
    background: #fdf2e9;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff9800;
    margin-bottom: 1.5rem;
    transition: 0.3s;
}

.sektor-card:hover .sektor-icon-badge {
    background: #ff9800;
    color: #fff;
    transform: scale(1.05);
}

.sidebar-list-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    text-decoration: none !important;
    color: #333;
}

.sidebar-list-item:hover {
    border-color: #ff9800;
    background: #fffaf5;
    transform: translateX(5px);
    color: #ff9800;
}

.sidebar-list-item i {
    width: 35px;
    text-align: center;
    margin-right: 10px;
    color: #666;
    transition: 0.3s;
}

.sidebar-list-item:hover i {
    color: #ff9800;
}

.cta-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    border-radius: 20px;
    padding: 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-box::after {
    content: '\f1ad';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 100px;
    opacity: 0.05;
}

/* İçerik Alanı */
.content-box {
    background: #fff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.05);
}

.service-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    aspect-ratio: 16/9;
}

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

.service-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--bhdr-dark);
}

.entry-content {
    line-height: 1.7;
    font-size: 1.05rem;
}

.entry-content p {
    margin-bottom: 5px;
}

/* Sidebar Stil */
.sidebar-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-list {
    list-style: none;
    padding: 0;
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    margin-bottom: 10px;
    border-radius: 12px;
    text-decoration: none;
    color: #444;
    font-weight: 600;
    border: 1px solid #eee;
    transition: all 0.3s;
}

.sidebar-link:hover {
    border-color: var(--bhdr-gold);
    background: #fffaf0;
    transform: translateX(5px);
    color: var(--bhdr-dark);
}

.sidebar-link i {
    margin-left: auto;
    color: var(--bhdr-gold);
    opacity: 0;
    transition: 0.3s;
}

.sidebar-link:hover i {
    opacity: 1;
    transform: translateX(5px);
}

/* CTA Kutusu */
.cta-sidebar {
    background: var(--bhdr-dark);
    color: #fff;
    padding: 35px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.cta-sidebar::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--bhdr-gold);
    opacity: 0.1;
    border-radius: 50%;
}

@media (max-width: 991px) {
    .service-title {
        font-size: 1.8rem;
    }

    .content-box {
        padding: 30px 20px;
    }

    .sayfa-bread {
        display: block;
        margin-top: 10px;
        font-weight: 700;
    }
}

/* sertifikala */
.cert-card {
    background: #ffffff;
    border: 1px solid #e1dada;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.cert-card:hover {
    transform: translateY(-10px);
    border-color: var(--bhdr-gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.cert-icon-box {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #333;
    font-size: 3rem;
    color: var(--bhdr-gold);
    transition: all 0.4s;
}

.cert-card:hover .cert-icon-box {
    background: linear-gradient(135deg, var(--bhdr-gold) 0%, var(--bhdr-gold) 100%);
    color: #fff;
}

.cert-content {
    padding: 1.5rem;
    text-align: center;
}

.cert-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    min-height: 50px;
}

.cert-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-cert {
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-view {
    background: transparent;
    border: 1px solid var(--bhdr-gold);
    color: var(--bhdr-gold);
}

.btn-view:hover {
    background: var(--bhdr-gold);
    color: #000;
}