/* Özhan Yapı CSS */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Genel Stil */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #94258e;
    transition: all 0.3s ease;
}

a:hover {
    color: #c1121f;
}

/* Düğmeler */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin: 5px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 12px;
}

.btn-primary {
    background-color: #94258e;
    color: #fff;
    border: 2px solid #94258e;
}

.btn-primary:hover {
    background-color: #94258e;
    border-color: #94258e;
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: #e63946;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 40px;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-top {
    background-color: #94258e;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.header-top-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
}

.social-links a {
    color: #fff;
    margin-left: 15px;
    font-size: 16px;
}

.social-links a:hover {
    color: #f1faee;
}

.logo img {
    max-height: 70px;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.nav-menu {
    display: flex;
    list-style-type: none;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    padding: 10px 15px;
    display: block;
    color: #333;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
}

.nav-menu li a:hover,
.nav-menu li.active a {
    color: #94258e;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* Slider */
.main-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider-item {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slider-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.slider-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 150px 0;
    max-width: 600px;
}

.slider-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.slider-content h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
}

.slider-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Bölüm Başlıkları */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    color: #333;
}

.section-title h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #e63946;
    margin: 15px auto;
}

.section-title p {
    font-size: 18px;
    color: #666;
}

/* Hizmetler */
.services {
    padding: 80px 0;
}

.service-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 48px;
    color: #94258e;
}

.service-box h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-box p {
    color: #666;
}

/* Ödeme Seçenekleri Bölümü */
.payment-options {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.payment-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.payment-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.payment-icon {
    margin-bottom: 20px;
}

.payment-icon i {
    font-size: 40px;
    color: #94258e;
}

.payment-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.payment-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
}

@media screen and (max-width: 991px) {
    .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media screen and (max-width: 575px) {
    .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Hakkımızda Bölümü */
.about-section {
    background-color: #f8f9fa;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.about-content {
    padding: 30px 0 30px 30px;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.about-content p {
    margin-bottom: 20px;
    color: #666;
}

.about-content ul {
    margin-bottom: 30px;
    list-style-type: none;
}

.about-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.about-content ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #e63946;
}

/* Projeler */
.projects {
    background-color: #fff;
}

.project-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.project-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.project-image {
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.project-box:hover .project-image img {
    transform: scale(1.1);
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.project-info p {
    color: #666;
    margin-bottom: 15px;
}

/* Müşteri Görüşleri */
.testimonials {
    background-color: #f8f9fa;
}

.testimonial-slider {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-item {
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
    margin: 0 15px 30px;
}

.testimonial-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-content:after {
    content: '\201D';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 60px;
    color: #e63946;
    opacity: 0.1;
    font-family: serif;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
}

.client-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.client-info span {
    color: #666;
    font-size: 14px;
}

/* Blog */
.blog-section {
    background-color: #fff;
}

.blog-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.blog-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-box:hover .blog-image img {
    transform: scale(1.1);
}

.blog-info {
    padding: 20px;
}

.blog-info .date {
    display: inline-block;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.blog-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-info p {
    color: #666;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: #1d3557;
    color: #fff;
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-col {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
}

.footer-col h3:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #e63946;
    margin-top: 10px;
}

.footer-links {
    list-style-type: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #a8dadc;
}

.footer-links li a:hover {
    color: #fff;
    padding-left: 8px;
}

.footer-contact p {
    margin-bottom: 15px;
}

.footer-contact i {
    margin-right: 10px;
    color: #e63946;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
}

/* İletişim Sayfası */
.contact-section {
    display: flex;
    flex-wrap: wrap;
}

.contact-info-box {
    flex: 0 0 40%;
    max-width: 40%;
    padding: 0 15px;
}

.contact-form-box {
    flex: 0 0 60%;
    max-width: 60%;
    padding: 0 15px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: #e63946;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    margin-right: 20px;
}

.contact-info-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.form-control:focus {
    border-color: #e63946;
    outline: none;
}

textarea.form-control {
    height: 150px;
    resize: none;
}

/* Duyarlı Tasarım */
@media screen and (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding-top: 50px;
        transition: all 0.3s ease;
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu li a {
        padding: 15px;
    }

    .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .testimonial-item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media screen and (max-width: 767px) {
    .slider-content h1 {
        font-size: 36px;
    }

    .slider-content h2 {
        font-size: 24px;
    }

    .col-md-4, 
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .about-content {
        padding: 30px 0;
    }

    .contact-info-box,
    .contact-form-box {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .contact-info-box {
        margin-bottom: 30px;
    }
}

/* Breadcrumb Stili */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 0;
    margin-bottom: 0;
    list-style: none;
    background-color: transparent;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: 8px;
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: 8px;
    color: #fff;
    content: "/";
}

.breadcrumb-item a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
}

/* Sayfa Başlık Stili */
.page-header {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    margin-bottom: 60px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Sayfa Başlığı Responsive */
@media screen and (max-width: 767px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
}

/* Galeri Sayfası Stilleri */
.gallery-page {
    background-color: #fff;
    padding: 60px 0;
}

.gallery-filter {
    margin-bottom: 40px;
    text-align: center;
}

.gallery-filter ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.gallery-filter ul li {
    margin: 0 5px 10px;
}

.gallery-filter ul li a {
    display: block;
    padding: 8px 20px;
    border-radius: 30px;
    background-color: #f8f9fa;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.gallery-filter ul li a:hover,
.gallery-filter ul li.active a {
    background-color: #e63946;
    color: #fff;
}

.gallery-container {
    margin-bottom: 30px;
}

.gallery-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.gallery-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.view-details {
    width: 50px;
    height: 50px;
    background-color: #e63946;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transform: scale(0);
    transition: all 0.3s ease;
}

.gallery-item:hover .view-details {
    transform: scale(1);
}

.gallery-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.gallery-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.gallery-info .category {
    display: inline-block;
    background-color: #f8f9fa;
    color: #666;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
}

.gallery-info p {
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
}

.gallery-info .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* Galeri Detay Sayfası */
.gallery-detail {
    background-color: #fff;
    padding: 60px 0;
}

.gallery-detail-image {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.gallery-detail-image img {
    width: 100%;
    height: auto;
}

.gallery-detail-info {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.gallery-detail-info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.gallery-detail-info .meta {
    display: flex;
    margin-bottom: 20px;
}

.gallery-detail-info .meta span {
    margin-right: 20px;
    font-size: 14px;
    color: #666;
}

.gallery-detail-info .meta i {
    margin-right: 5px;
    color: #e63946;
}

.gallery-detail-info .description {
    margin-bottom: 20px;
}

/* Duyarlı Tasarım - Galeri */
@media screen and (max-width: 991px) {
    .gallery-image {
        height: 220px;
    }
}

@media screen and (max-width: 767px) {
    .gallery-filter ul {
        flex-direction: row;
    }
    
    .gallery-filter ul li {
        margin-bottom: 10px;
    }
    
    .gallery-image {
        height: 200px;
    }
}

@media screen and (max-width: 575px) {
    .gallery-image {
        height: 220px;
    }
}

/* Proje Detay Sayfası Stilleri */
.project-details {
    padding: 60px 0;
    background-color: #fff;
}

.project-details .project-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.project-details .project-image img {
    width: 100%;
    height: auto;
    display: block;
}

.project-details .project-info {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.project-details .project-info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.project-details .project-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.project-details .project-meta li {
    margin-bottom: 10px;
    font-size: 15px;
}

.project-details .project-meta li:last-child {
    margin-bottom: 0;
}

.project-details .project-meta li span {
    font-weight: 600;
    color: #333;
    margin-right: 10px;
}

.project-details .project-description {
    margin-bottom: 30px;
}

.project-details .project-description p {
    color: #666;
    line-height: 1.7;
}

.project-details .project-share {
    display: flex;
    align-items: center;
}

.project-details .project-share span {
    font-weight: 600;
    margin-right: 15px;
}

.project-details .project-share .social-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-details .project-share .social-links li {
    margin-right: 10px;
}

.project-details .project-share .social-links li:last-child {
    margin-right: 0;
}

.project-details .project-share .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f8f9fa;
    color: #333;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.project-details .project-share .social-links a:hover {
    background: #e63946;
    color: #fff;
}

/* Benzer Projeler Bölümü */
.related-projects {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.related-projects .project-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.related-projects .project-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.related-projects .project-image {
    height: 200px;
    overflow: hidden;
}

.related-projects .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.related-projects .project-box:hover .project-image img {
    transform: scale(1.1);
}

.related-projects .project-info {
    padding: 20px;
}

.related-projects .project-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.related-projects .project-info .category {
    display: inline-block;
    background-color: #f8f9fa;
    color: #666;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
}

.related-projects .project-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Duyarlı Tasarım - Proje Detay */
@media screen and (max-width: 991px) {
    .project-details .project-info {
        margin-top: 30px;
    }
}

@media screen and (max-width: 767px) {
    .project-details .project-meta {
        padding: 10px 0;
    }
    
    .project-details .project-meta li {
        font-size: 14px;
    }
    
    .related-projects .project-image {
        height: 180px;
    }
}

/* Hakkımızda Sayfası Stilleri */
.about-page {
    padding: 60px 0;
    background-color: #fff;
}

.about-page .about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.about-page .about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-page .about-content {
    padding: 0 0 0 20px;
}

.about-page .about-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    position: relative;
}

.about-page .about-content h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #e63946;
    margin: 15px 0;
}

.about-page .about-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 25px 0 15px 0;
    color: #333;
}

.about-page .about-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Neden Bizi Tercih Etmelisiniz Bölümü */
.why-choose-us {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.why-choose-us .row {
    margin: 0 -25px;
}

.why-choose-us .col-md-4 {
    padding: 0 25px;
    margin-bottom: 25px;
}

.feature-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background: #e63946;
}

.feature-icon i {
    font-size: 36px;
    color: #e63946;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon i {
    color: #fff;
}

.feature-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-box p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* Ekip Üyeleri Bölümü */
.our-team {
    padding: 60px 0;
    background-color: #fff;
}

.team-member {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.member-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-info h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.member-info span {
    display: block;
    color: #e63946;
    font-size: 15px;
    margin-bottom: 15px;
}

.member-info p {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
}

.member-info .social-links {
    display: flex;
    justify-content: center;
}

.member-info .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f8f9fa;
    color: #333;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.member-info .social-links a:hover {
    background: #e63946;
    color: #fff;
}

/* Markalar Bölümü */
.brands {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.brand-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.brand-item {
    padding: 0 15px;
    margin-bottom: 30px;
    flex: 0 0 20%;
    max-width: 15%;
    text-align: center;
}

.brand-item img {
    max-width: 100%;
    height: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* CTA Bölümü */
.cta {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

.cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Duyarlı Tasarım - Hakkımızda */
@media screen and (max-width: 991px) {
    .about-page .about-content {
        padding: 0;
        margin-top: 20px;
    }
    
    .brand-item {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media screen and (max-width: 767px) {
    .about-page .about-content h2 {
        font-size: 28px;
    }
    
    .about-page .about-content h3 {
        font-size: 22px;
    }
    
    .member-image {
        height: 250px;
    }
    
    .brand-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

/* Blog Sayfası Stilleri */
.blog-page {
    padding: 60px 0;
    background-color: #fff;
}

.blog-page .section-title.text-left {
    text-align: left;
}

.blog-page .section-title.text-left h2:after {
    margin-left: 0;
    margin-right: auto;
}

.blog-container {
    margin-bottom: 40px;
}

.blog-container .row {
    margin: 0 -15px;
}

.blog-container .col-md-6 {
    padding: 0 15px;
    margin-bottom: 30px;
}

.blog-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.blog-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-box:hover .blog-image img {
    transform: scale(1.1);
}

.blog-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-info .date {
    display: inline-block;
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-info h3 a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-info h3 a:hover {
    color: #e63946;
}

.blog-info .category {
    display: inline-block;
    background-color: #f8f9fa;
    color: #666;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
}

.blog-info p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-info .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* Sayfalama */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    margin: 0 5px 10px;
    background-color: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pagination a.prev, .pagination a.next {
    padding: 0 15px;
}

.pagination a:hover {
    background-color: #f8f9fa;
    color: #e63946;
}

.pagination span.current {
    background-color: #e63946;
    color: #fff;
}

/* Sidebar */
.sidebar {
    margin-top: 30px;
}

.widget {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.widget-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #e63946;
}

/* Kategoriler Widget */
.categories-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-widget ul li {
    border-bottom: 1px solid #f1f1f1;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.categories-widget ul li:last-child {
    border-bottom: none;
}

.categories-widget ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.categories-widget ul li a span {
    background-color: #f8f9fa;
    color: #666;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.categories-widget ul li:hover a {
    color: #e63946;
    padding-left: 5px;
}

.categories-widget ul li:hover a span {
    background-color: #e63946;
    color: #fff;
}

.categories-widget ul li.active a {
    color: #e63946;
    font-weight: 500;
}

.categories-widget ul li.active a span {
    background-color: #e63946;
    color: #fff;
}

/* Son Yazılar Widget */
.recent-posts-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts-widget ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f1f1;
}

.recent-posts-widget ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.post-thumb {
    flex: 0 0 80px;
    max-width: 80px;
    height: 60px;
    margin-right: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.post-thumb:hover img {
    transform: scale(1.1);
}

.post-info {
    flex-grow: 1;
}

.post-info h5 {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 5px;
}

.post-info h5 a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-info h5 a:hover {
    color: #e63946;
}

.post-info .date {
    display: block;
    font-size: 12px;
    color: #666;
}

/* Etiketler Widget */
.tags-widget .tags {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}

.tags-widget .tags a {
    display: inline-block;
    padding: 6px 15px;
    margin: 5px;
    background-color: #f8f9fa;
    color: #666;
    font-size: 13px;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tags-widget .tags a:hover {
    background-color: #e63946;
    color: #fff;
}

/* Blog Detay CSS Düzeltmeleri */
.blog-detail {
    padding: 60px 0;
    background-color: #fff;
}

.blog-detail .post-content {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.blog-detail .post-image {
    position: relative;
    overflow: hidden;
}

.blog-detail .post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-detail .post-meta {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 30px;
    border-bottom: 1px solid #f1f1f1;
}

.blog-detail .post-meta span {
    margin-right: 20px;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.blog-detail .post-meta span i {
    margin-right: 5px;
    color: #e63946;
}

.blog-detail .post-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    padding: 25px 30px 0;
    margin-bottom: 20px;
}

.blog-detail .post-text {
    padding: 0 30px 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.blog-detail .post-text p {
    margin-bottom: 20px;
}

.blog-detail .post-share {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    border-top: 1px solid #f1f1f1;
}

.blog-detail .post-share span {
    font-weight: 600;
    margin-right: 15px;
    color: #333;
}

.blog-detail .post-share .social-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-detail .post-share .social-links li {
    margin-right: 10px;
}

.blog-detail .post-share .social-links li:last-child {
    margin-right: 0;
}

.blog-detail .post-share .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f8f9fa;
    color: #333;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.blog-detail .post-share .social-links a:hover {
    background: #e63946;
    color: #fff;
}

/* İlgili Yazılar */
.blog-detail .related-posts {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.blog-detail .related-posts h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.blog-detail .related-posts h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #e63946;
}

.blog-detail .related-post {
    margin-bottom: 20px;
}

.blog-detail .related-post .post-image {
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.blog-detail .related-post .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.blog-detail .related-post .post-image:hover img {
    transform: scale(1.1);
}

.blog-detail .related-post h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-detail .related-post h4 a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-detail .related-post h4 a:hover {
    color: #e63946;
}

.blog-detail .related-post .date {
    display: block;
    font-size: 13px;
    color: #666;
}

/* Duyarlı Tasarım - Blog */
@media screen and (max-width: 991px) {
    .blog-info h3 {
        font-size: 18px;
    }
    
    .sidebar {
        margin-top: 40px;
    }
}

@media screen and (max-width: 767px) {
    .blog-image {
        height: 200px;
    }
    
    .blog-detail-content h2 {
        font-size: 28px;
    }
    
    .blog-detail-meta span {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 575px) {
    .pagination a, .pagination span {
        min-width: 35px;
        height: 35px;
        margin: 0 3px 8px;
        font-size: 13px;
    }
} 