.service-nine__item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Slider hover efektleri başlangıç */
.banner-four__item .content .btn {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    margin-top: 15px;
}

.banner-four__item:hover .content .btn {
    opacity: 1;
    transform: translateY(0);
}

.banner-four__item .content p {
    transform: translateY(0);
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.banner-four__item:hover .content p {
    transform: translateY(-10px);
}
/* Slider hover efektleri bitiş */

.service-nine__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,26,0.03) 0%, rgba(26,26,26,0) 100%);
    z-index: 0;
}
.service-nine__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.service-nine__item .item-head {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}
.service-nine__item .icon {
    width: 80px;
    height: 80px;
    background: rgba(26,26,26,0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding-top: 20px;
    margin: 0 auto;
}
.service-nine__item:hover .icon {
    background: #1a1a1a;
}
.service-nine__item .icon i {
    font-size: 32px;
    color: #1a1a1a;
    transition: all 0.3s ease;
}
.service-nine__item:hover .icon i {
    color: #fff;
}
.service-nine__item .arry-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(26,26,26,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    right: 0;
}
.service-nine__item:hover .arry-btn {
    background: #1a1a1a;
    border-color: #1a1a1a;
}
.service-nine__item .arry-btn i {
    font-size: 14px;
    color: #1a1a1a;
    transition: all 0.3s ease;
}
.service-nine__item:hover .arry-btn i {
    color: #fff;
}
.service-nine__item .title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    position: relative;
    z-index: 1;
}
.service-nine__item p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}
@media (max-width: 991px) {
    .service-nine__item {
        padding: 35px 25px;
    }
    .service-nine__item .icon {
        width: 70px;
        height: 70px;
    }
    .service-nine__item .icon i {
        font-size: 28px;
    }
}
.equal-height-cards {
    display: flex;
    flex-wrap: wrap;
}
.equal-height-cards > [class*='col'] {
    display: flex;
    flex-direction: column;
}
.equal-height-cards .service-nine__item {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Header mobil düzenlemeler başlangıç */
@media (max-width: 991px) {
    .header__main {
        position: relative;
        padding: 15px 0;
    }

    .header__main .container {
        display: flex;
        align-items: center;
    }

    .menu-btns.light {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .menu-btns.light .btn-danger {
        font-size: 14px;
        padding: 6px 12px;
        height: 36px;
    }

    .menu-btns.light .btn-danger i {
        font-size: 14px;
    }

    /* Mobilde görünecek arama butonu */
    .mobile-call-btn {
        display: none;
    }

    @media (max-width: 991px) {
        .mobile-call-btn {
            display: flex;
            align-items: center;
            padding: 6px 12px;
            font-size: 14px;
        }

        .mobile-call-btn i {
            margin-right: 5px;
        }
    }

    @media (max-width: 576px) {
        .menu-btns.light .btn-danger {
            width: 36px;
            padding: 0;
            justify-content: center;
        }

        .menu-btns.light .btn-danger i {
            margin: 0;
        }
    }

    .header__main .logo {
        max-width: 180px;
    }

    .header__main .logo img {
        width: 100%;
        height: auto;
    }

    .menubars {
        margin-left: 10px;
    }
}

/* Arama butonu düzenlemeleri */
.btn.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.btn.btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

.btn.btn-danger i {
    font-size: 16px;
}

/* Mobil menü düzenlemeleri */
@media (max-width: 991px) {
    .header__main .logo {
        max-width: 180px;
    }

    .header__main .logo img {
        width: 100%;
        height: auto;
    }

    .menubars {
        margin-left: 10px;
    }
}
/* Header mobil düzenlemeler bitiş */

/* Hero Section Styles */
.blog-hero {
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.min-vh-50 {
    min-height: 70vh;
}

.hero-content {
    color: #fff;
    max-width: 800px;
    padding: 100px 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 10px 25px;
    border-radius: 4px;
    margin-bottom: 25px;
    border-left: 3px solid #1a1a1a;
}

.hero-badge span {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #fff;
}

.hero-text {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-meta {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
}

.meta-item i {
    font-size: 1.2rem;
    color: #333333;
}

.meta-item span {
    font-size: 1rem;
    font-weight: 400;
}

/* Search and Filter Styles */
.search-filter-bar {
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-top: -50px;
    position: relative;
    z-index: 1;
}

.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 15px 60px 15px 30px;
    border: 2px solid #eee;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: #1a1a1a;
    box-shadow: 0 0 0 5px rgba(26,26,26,0.1);
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #1a1a1a;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover {
    background: #333333;
}

.filter-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.filter-btn {
    padding: 12px 25px;
    border: 2px solid #eee;
    border-radius: 30px;
    background: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
}

/* Blog Card Styles */
.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

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

.blog-card__img {
    position: relative;
    overflow: hidden;
    padding-top: 66.67%;
}

.blog-card__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card__img img {
    transform: scale(1.1);
}

.blog-card__category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #1a1a1a;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 1;
}

.blog-card__body {
    padding: 30px;
    position: relative;
    padding-top: 60px;
}

.blog-card__date {
    position: absolute;
    top: -30px;
    right: 30px;
    z-index: 2;
}

.date-box {
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    min-width: 80px;
}

.date-box .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.date-box .month {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.blog-card__content {
    position: relative;
    z-index: 1;
}

.blog-card__title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card__title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card__title a:hover {
    color: #333333;
}

.blog-card__text {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

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

.author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author span {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

.read-more {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #333333;
    gap: 15px;
}

/* Pagination Styles */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.page-item {
    list-style: none;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #eee;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-item.active .page-link {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
}

.page-link:hover:not(.active) {
    background: #f8f9fa;
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.page-item.disabled .page-link {
    background: #f8f9fa;
    border-color: #eee;
    color: #999;
    cursor: not-allowed;
}

.search-results-info {
    color: #666;
    font-size: 0.95rem;
}

.search-results-info p {
    margin: 0;
}

@media (max-width: 576px) {
    .page-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .min-vh-50 {
        min-height: 60vh;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .hero-meta {
        flex-direction: column;
        gap: 15px;
    }

    .hero-content {
        padding: 60px 0;
    }
}


   /* Hero Section Styles */
   .contact-hero {
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background-size: cover;
    background-position: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.contact-hero .hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.contact-hero .min-vh-50 {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero .hero-content {
    color: #fff;
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 15px;
}

.contact-hero .hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 10px 25px;
    border-radius: 4px;
    margin-bottom: 25px;
    border-left: 3px solid #fff;
}

.contact-hero .hero-badge span {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: #fff;
}

.contact-hero .hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff 0%, rgba(255,255,255,0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-hero .hero-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Blog Card Styles */
.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 100%;
}

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

.blog-card__img {
    position: relative;
    overflow: hidden;
    padding-top: 66.67%;
}

.blog-card__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card__img img {
    transform: scale(1.1);
}

.blog-card__category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #1a1a1a;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 1;
}

.blog-card__body {
    padding: 30px;
    position: relative;
    padding-top: 60px;
}

.blog-card__date {
    position: absolute;
    top: -30px;
    right: 30px;
    z-index: 2;
}

.blog-card .date-box {
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    min-width: 80px;
}

.blog-card .date-box .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.blog-card .date-box .month {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.blog-card__content {
    position: relative;
    z-index: 1;
}

.blog-card__title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card__title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card__title a:hover {
    color: #1a1a1a;
}

.blog-card__text {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

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

/* Contact Card Styles */
.contact-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.card-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 32px;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.contact-card:hover .card-icon {
    background: #1a1a1a;
}

.contact-card:hover .card-icon i {
    color: #fff;
}

.contact-card h4 {
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #333;
    gap: 12px;
}

/* Form Styles */
.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
    padding: 12px 20px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #1a1a1a;
    box-shadow: none;
}

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

/* Working Hours Styles */
.working-hours-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hours-list {
    margin-top: 30px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.hours-item:last-child {
    border: none;
}

.day {
    color: #1a1a1a;
    font-weight: 500;
}

.time {
    color: #666;
}

.hours-note {
    color: #666;
    font-style: italic;
}

.office-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 991px) {
    .contact-hero .hero-title {
        font-size: 2.8rem;
    }
    
    .contact-form-wrapper,
    .map-wrapper {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}
.section-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #333;
}
.expertise-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}
.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,26,0.03) 0%, rgba(26,26,26,0) 100%);
    z-index: 0;
}
.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(26,26,26,0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease;
}
.expertise-card:hover .card-icon {
    background: #1a1a1a;
}
.card-icon i {
    font-size: 24px;
    color: #1a1a1a;
    transition: all 0.3s ease;
}
.expertise-card:hover .card-icon i {
    color: #fff;
}
.card-content {
    position: relative;
    z-index: 1;
}
.card-content h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}
.card-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}
.card-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.card-link i {
    transition: transform 0.3s ease;
}
.card-link:hover {
    color: #333;
}
.card-link:hover i {
    transform: translateX(5px);
}
@media (max-width: 991px) {
    .expertise-card {
        padding: 25px;
    }
}
.feature-list {
    list-style: none;
    padding: 0;
}
.feature-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}
.feature-list i {
    color: #28a745;
    margin-right: 10px;
}
.contact-list, .hours-list {
    list-style: none;
    padding: 0;
}
.contact-list li, .hours-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}
.contact-list i {
    margin-right: 10px;
    width: 20px;
}
.hours-list span {
    font-weight: bold;
    margin-right: 10px;
}
/* Banner Styles */
.breadcrumb-area {
    position: relative;
    padding: 200px 0 120px;
    background: #1a1a1a;
    overflow: hidden;
}

.breadcrumb-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #1a1a1a 0%, #333333 100%);
    opacity: 0.8;
    z-index: 1;
}

.breadcrumb__wrp {
    position: relative;
    z-index: 3;
    text-align: center;
}

.breadcrumb__item h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.breadcrumb__item ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb__item ul li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.breadcrumb__item ul li a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb__item ul li a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb__item ul li i {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 991px) {
    .breadcrumb-area {
        padding: 150px 0 80px;
    }
    
    .breadcrumb__item h1 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .breadcrumb-area {
        padding: 120px 0 60px;
    }
    
    .breadcrumb__item h1 {
        font-size: 28px;
    }
    
    .breadcrumb__item ul li {
        font-size: 14px;
    }
}




  /* Blog Detail Hero Styles */
  .blog-detail-hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.blog-detail-hero .hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.blog-detail-hero .min-vh-50 {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-detail-hero .hero-content {
    color: #fff;
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 15px;
}

.blog-detail-hero .hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 10px 25px;
    border-radius: 4px;
    margin-bottom: 25px;
    border-left: 3px solid #fff;
}

.blog-detail-hero .hero-badge span {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: #fff;
}

.blog-detail-hero .hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    background: linear-gradient(to right, #fff 0%, rgba(255,255,255,0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-detail-hero .hero-meta {
    display: inline-flex;
    gap: 30px;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    padding: 20px 40px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    margin: 0 auto;
}

.blog-detail-hero .meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.blog-detail-hero .meta-item i {
    color: rgba(255,255,255,0.7) !important;
    font-size: 1.1rem;
}

.blog-detail-hero .meta-item span {
    color: #fff;
    font-size: 1rem;
}

@media (max-width: 991px) {
    .blog-detail-hero .hero-title {
        font-size: 2.6rem;
    }
}

@media (max-width: 768px) {
    .blog-detail-hero {
        padding: 80px 0;
    }
    
    .blog-detail-hero .hero-title {
        font-size: 2rem;
    }
    
    .blog-detail-hero .hero-meta {
        flex-direction: column;
        gap: 15px;
        padding: 15px 30px;
    }
}

/* Modern Search Styles */
.modern-search {
    position: relative;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 8px;
    transition: all 0.3s ease;
}

.modern-search:focus-within {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.modern-search input {
    width: 100%;
    padding: 15px 50px 15px 25px;
    border: none;
    background: none;
    font-size: 1rem;
    color: #333;
    outline: none;
}

.modern-search input::placeholder {
    color: #999;
    font-weight: 400;
}

.modern-search button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: #1a1a1a;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-search button:hover {
    background: #333;
    transform: translateY(-50%) scale(1.05);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-meta {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .modern-search input {
        padding: 12px 45px 12px 20px;
    }

    .modern-search button {
        width: 38px;
        height: 38px;
    }
}

/* Article Styles */
.blog-detail-article {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.article-content {
    padding-top: 20px;
}

.article-content h2 {
    margin: 40px 0 20px;
    font-size: 1.8rem;
    color: #1a1a1a;
}

.article-quote {
    background: #f8f9fa;
    padding: 30px;
    border-left: 4px solid #1a1a1a;
    margin: 30px 0;
    font-style: italic;
}

.article-quote cite {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.article-list {
    padding-left: 20px;
    margin: 20px 0;
}

.article-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.article-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1a1a1a;
}

.article-tags .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.tag {
    padding: 8px 20px;
    background: #f8f9fa;
    border-radius: 30px;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #1a1a1a;
    color: #fff;
}

.article-author {
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.author-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
}

.author-info h5 {
    margin: 15px 0;
    color: #1a1a1a;
}

/* Sidebar Styles */
.sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 15px;
}

.widget-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #1a1a1a;
}

.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    border-bottom: 1px solid #eee;
}

.categories-list li:last-child {
    border: none;
}

.categories-list a {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.categories-list a:hover {
    color: #1a1a1a;
    padding-left: 10px;
}

.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.recent-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.post-thumb {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.post-info {
    flex: 1;
    min-width: 0;
}

.post-info h6 {
    margin: 0 0 8px;
    font-size: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.4;
    max-height: 4.2em;
}

.post-info h6 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-info h6 a:hover {
    color: #1a1a1a;
}

.post-info span {
    font-size: 0.9rem;
    color: #666;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 991px) {
    .sidebar-widget {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .hero-meta {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .blog-detail-article {
        padding: 20px;
    }
}

/* Blog Görseli Styles */
.blog-featured-image {
    margin-bottom: 30px;
    position: relative;
}

.featured-image-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
}

.featured-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Popüler Yazılar Styles */
.popular-posts {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin-top: 50px;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #1a1a1a;
}

.popular-post-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.popular-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.post-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.popular-post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 20px;
}

.post-category {
    display: inline-block;
    padding: 5px 15px;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.post-content h5 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    line-height: 1.4;
}

.post-content h5 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-content h5 a:hover {
    color: #333;
}

.post-meta {
    font-size: 0.9rem;
    color: #666;
}

.post-meta i {
    margin-right: 5px;
}

@media (max-width: 991px) {
    .blog-featured-image {
        margin-top: -30px;
    }
}

@media (max-width: 768px) {
    .blog-featured-image {
        margin-top: -20px;
    }

    .popular-posts {
        padding: 20px;
    }

    .post-image {
        height: 180px;
    }
}

/* İletişim Formu Widget Styles */
.contact-widget {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form .form-control {
    background: #f8f9fa;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.contact-form .btn-dark {
    background: #1a1a1a;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-form .btn-dark:hover {
    background: #333;
    transform: translateY(-2px);
}

.quick-contact {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 14px;
}

.contact-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #1a1a1a;
}

@media (max-width: 991px) {
    .contact-widget {
        margin-top: 30px;
    }
}

/* Sosyal Medya Paylaşım Butonları */
.social-share {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-share-title {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.social-share-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.share-button {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-button i {
    font-size: 0.9rem;
}

.share-button:hover {
    transform: translateY(-3px);
    color: #fff;
}

.share-facebook {
    background: #1877f2;
}

.share-twitter {
    background: #1DA1F2;
}

.share-linkedin {
    background: #0a66c2;
}

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

/* Etiketler Bölümü */
.tags-section {
    flex: 1;
    min-width: 0;
}

.tags-section h4 {
    margin-bottom: 15px;
}

.article-tags .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
}

.tag {
    padding: 6px 15px;
    background: #f8f9fa;
    border-radius: 20px;
    color: #666;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid #eee;
}

.tag:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

@media (max-width: 768px) {
    .article-tags .d-flex {
        flex-direction: column;
        gap: 20px;
    }

    .social-share {
        justify-content: flex-start;
        width: 100%;
    }

    .tags-section {
        width: 100%;
    }
}