@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&display=swap');


* {
        font-family: 'Exo 2', sans-serif;
    }


/* Navigation */
.navbar {
    background-color: #122841 !important;
    padding: 1rem 0;
}

.navbar-brand {
    color: white !important;
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar-brand img {
    width:120px;
}

.navbar-nav .nav-link {
    color: white !important;
    margin: 0 1rem;
}

.navbar-nav .nav-link:hover {
    color: #D2A62D !important;
}


@media (max-width: 991px) {
    .navbar-brand img {
        max-height: 40px;
        width: auto;
    }
    
    .navbar-nav {
        margin-top: 15px;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
        padding: 10px 15px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
}



/* Slide  */

    .slide-section {
        height: 70vh;
        position: relative;
        overflow: hidden;
    }

    .slide-item {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

    .slide-item.active {
        opacity: 1;
    }

    .slide-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .slide-content {
        position: absolute;
        top: 50%;
        left: 50px;
        transform: translateY(-50%);
        color: white;
        z-index: 10;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
    }

    .slide-item.active .slide-content {
        opacity: 1;
    }

    .hero-title {
        font-size: 1.5rem;
        font-weight: bold;
        color: #D2A62D;
        margin-bottom: 20px;
        animation: slideLeft 1s ease-out;
    }

    .hero-subtitle {
        font-size: 1.8rem;
        color: white;
        font-style: italic;
        animation: slideRight 1s ease-out 0.5s both;
    }

    @keyframes slideLeft {
        from { transform: translateX(-100px); opacity: 0; }
        to { transform: translateX(0); opacity: 1; }
    }

    @keyframes slideRight {
        from { transform: translateX(100px); opacity: 0; }
        to { transform: translateX(0); opacity: 1; }
    }

    /* Mobil için */
    @media (max-width: 768px) {
        .slide-content {
            left: 20px;
            right: 20px;
        }
        
        .hero-title {
            font-size: 2rem;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
        }

        .slide-section {
            height: 60vh;
            min-height: 400px;
        }
        
        .slide-content {
            left: 15px;
            right: 15px;
            padding: 0 10px;
        }
        
        .hero-title {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .hero-subtitle {
            font-size: 1.1rem;
            line-height: 1.4;
        }

    }



@media (max-width: 480px) {
    .slide-section {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}







/* About */
.about-section {
    padding: 0px 0;
}

.about-image {
    padding: 0;
}

.about-image img {
    width: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 0;
}

.about-text {
    padding: 80px 60px;
   /* display: flex;
    flex-direction: column;
    justify-content: center;*/
    height: 500px;
}

.about-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #B8860B;
    margin-bottom: 10px;
    animation: fadeInUp 0.8s ease-out;
}

.about-subtitle {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 30px;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 25px;
    text-align: justify;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.about-footer {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 600;
    margin-top: 30px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Mobil responsive */
@media (max-width: 768px) {
    .about-text {
        padding: 20px;
        height: auto;
    }
    
    .about-image img {
        height: 300px;
        min-height: 300px;
    }
    

    .about-title {
        font-size: 1.3rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }


        .about-text,
    .kimdir-text {
        padding: 30px 20px;
        height: auto;
    }
    
    .about-image img,
    .kimdir-image img {
        height: 250px;
        min-height: 250px;
    }
    
    .about-title,
    .kimdir-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .about-subtitle,
    .kimdir-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .about-description,
    .kimdir-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
        text-align: left;
    }
}



@media (max-width: 480px) {
    .about-text,
    .kimdir-text {
        padding: 20px 15px;
    }
    
    .about-image img,
    .kimdir-image img {
        height: 200px;
        min-height: 200px;
    }
}







/* Kimdir */
.kimdir-section {
    padding: 0px 0;
    background-color: #D2A62D;
}

.kimdir-image {
    padding: 0;
}

.kimdir-image img {
    width: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 0;
}

.kimdir-text {
    padding: 80px 60px;
    /*display: flex;
    flex-direction: column;
    justify-content: center;*/
    height: 500px;
    color: #2c3e50;
}

.kimdir-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #122841;
    margin-bottom: 10px;
    animation: fadeInUp 0.8s ease-out;
}

.kimdir-subtitle {
    font-size: 1rem;
    color: #122841;
    margin-bottom: 30px;
    font-weight: 600;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.kimdir-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #122841;
    margin-bottom: 25px;
    text-align: justify;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Mobil responsive */
@media (max-width: 768px) {
    .kimdir-text {
        padding: 20px;
        height: auto;
    }
    
    .kimdir-image img {
        height: 300px;
    }
    
    .kimdir-title {
        font-size: 1.5rem;
    }
    
    .kimdir-subtitle {
        font-size: 1.1rem;
    }
}









/* Faaliyet Alanları */
.services-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
}

.service-card {
    background: linear-gradient(135deg, #122841 0%, #1a3352 100%);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: #D2A62D;
   /* transition: all 0.3s ease;*/
}

/* .service-card:hover::before {
    width: 100px;
    height: 100px;
}*/

.service-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    z-index: 3;
    transition: all 0.3s ease;
    filter: brightness(0) saturate(100%) invert(15%) sepia(25%) saturate(1284%) hue-rotate(193deg) brightness(93%) contrast(91%);
}

.service-card:hover .service-arrow {
    transform: translateX(5px);
    filter: brightness(0) saturate(100%) invert(10%) sepia(35%) saturate(1500%) hue-rotate(193deg) brightness(85%) contrast(95%);
}

.service-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #D2A62D;
    margin-bottom: 15px;
    z-index: 2;
    position: relative;
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ecf0f1;
    z-index: 2;
    position: relative;
    font-weight: 300;
}

/* Animasyon için */
.service-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobil responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.3rem;
    }
    
    .service-card {
        margin-bottom: 20px;
        min-height: 180px;
    }
    
    .service-card::before {
        width: 60px;
        height: 60px;
    }
    
    .service-card:hover::before {
        width: 70px;
        height: 70px;
    }
    
    .service-arrow {
        width: 30px;
        height: 30px;
        top: 15px;
        right: 15px;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.95rem;
        font-weight: 300;
    }

    .services-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 40px;
    }
    
    .service-card {
        margin-bottom: 25px;
        min-height: 160px;
        padding: 25px;
    }
    
    .service-card::before {
        width: 50px;
        height: 50px;
    }
    
    .service-arrow {
        width: 18px;
        height: 18px;
        top: 15px;
        right: 15px;
    }
    
    .service-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .service-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}


@media (max-width: 480px) {
    .service-card {
        padding: 20px;
        min-height: 140px;
    }
    
    .service-title {
        font-size: 1rem;
    }
    
    .service-description {
        font-size: 0.85rem;
    }
}












//* Faaliyet Alanları Sayfası Özel Stilleri */
.faaliyet-intro {
    text-align: justify;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
}

.faaliyet-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    margin-bottom: 40px;
    border: 1px solid rgba(210, 166, 45, 0.1);
    position: relative;
}

.faaliyet-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: #D2A62D;
}

.faaliyet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D2A62D 0%, #B8860B 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.faaliyet-card:hover::before {
    transform: scaleX(1);
}

.faaliyet-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #D2A62D 0%, #B8860B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 25px auto;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faaliyet-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #B8860B 0%, #D2A62D 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faaliyet-card:hover .faaliyet-icon::before {
    opacity: 1;
}

.faaliyet-icon img {
    width: 50px;
    height: 50px;
    z-index: 2;
    position: relative;
    filter: brightness(0) invert(1);
    transition: transform 0.4s ease;
}

.faaliyet-card:hover .faaliyet-icon img {
    transform: scale(1.1) rotate(5deg);
}

.faaliyet-content {
    padding: 0 40px 40px 40px;
    text-align: center;
}

.faaliyet-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #122841;
    margin-bottom: 20px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.faaliyet-card:hover .faaliyet-title {
    color: #D2A62D;
}

.faaliyet-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #6c757d;
    text-align: justify;
    margin-bottom: 25px;
}

/* Neden Biz Bölümü */
.neden-biz-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.neden-biz-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23D2A62D" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
}

.neden-biz-section .container {
    position: relative;
    z-index: 2;
}

/* Animasyon gelişmiş efektler */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animasyon için delay'ler */
.faaliyet-card:nth-child(1) { transition-delay: 0.1s; }
.faaliyet-card:nth-child(2) { transition-delay: 0.2s; }
.faaliyet-card:nth-child(3) { transition-delay: 0.3s; }
.faaliyet-card:nth-child(4) { transition-delay: 0.4s; }
.faaliyet-card:nth-child(5) { transition-delay: 0.5s; }
.faaliyet-card:nth-child(6) { transition-delay: 0.6s; }

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .content-section {
        padding: 60px 0;
    }
    
    .faaliyet-intro {
        margin-bottom: 40px;
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .faaliyet-card {
        margin-bottom: 30px;
    }
    
    .faaliyet-icon {
        width: 80px;
        height: 80px;
        margin: 25px auto 20px auto;
    }
    
    .faaliyet-icon img {
        width: 40px;
        height: 40px;
    }
    
    .faaliyet-content {
        padding: 0 25px 30px 25px;
    }
    
    .faaliyet-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .faaliyet-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .faaliyet-intro {
        padding: 0 10px;
    }
    
    .faaliyet-content {
        padding: 0 20px 25px 20px;
    }
    
    .faaliyet-title {
        font-size: 1.1rem;
    }
    
    .faaliyet-description {
        font-size: 0.9rem;
        text-align: left;
    }
}

/* Container padding düzenlemeleri */
@media (min-width: 992px) {
    .content-section .container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (min-width: 1200px) {
    .content-section .container {
        padding-left: 60px;
        padding-right: 60px;
    }
}

/* Geçici renk placeholder'ları (görseller için) */
.faaliyet-icon {
    /* Bu renkler görsel gelene kadar geçici */
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.faaliyet-card:nth-child(1) .faaliyet-icon {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.faaliyet-card:nth-child(2) .faaliyet-icon {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.faaliyet-card:nth-child(3) .faaliyet-icon {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.faaliyet-card:nth-child(4) .faaliyet-icon {
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
}

.faaliyet-card:nth-child(5) .faaliyet-icon {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
}

.faaliyet-card:nth-child(6) .faaliyet-icon {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

.faaliyet-card:nth-child(7) .faaliyet-icon {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

.faaliyet-card:nth-child(8) .faaliyet-icon {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
}









/* Blog Bölümü */
.blog-section {
    padding: 80px 0;
    background-color: #fff;
}

.blog-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #122841;
    margin-bottom: 50px;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    cursor: pointer;
}

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

.blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

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

.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(210, 166, 45, 0.9);
    color: #122841;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-category {
    color: #D2A62D;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-post-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #122841;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-post-title {
    color: #D2A62D;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.blog-author {
    color: #495057;
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-read-more {
    color: #D2A62D;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-read-more:hover {
    color: #122841;
    transform: translateX(3px);
}

.blog-read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.blog-read-more:hover::after {
    transform: translateX(3px);
}

/* Animasyon */
.blog-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.3s; }
.blog-card:nth-child(3) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobil responsive */
@media (max-width: 768px) {
    .blog-title {
        font-size: 1.2rem;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-post-title {
        font-size: 1.1rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .blog-section {
        padding: 60px 0;
    }
    
    .blog-title {
        font-size: 1.4rem;
        margin-bottom: 40px;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-post-title {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .blog-excerpt {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}


@media (max-width: 480px) {
    .blog-image {
        height: 160px;
    }
    
    .blog-content {
        padding: 15px;
    }
    
    .blog-post-title {
        font-size: 1rem;
    }
    
    .blog-date {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}





/* Footer */
.footer {
    background-color: #122841;
    color: #ecf0f1;
    padding: 60px 0 30px 0;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 200px;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bdc3c7;
    margin-bottom: 20px;
    margin-top: 13px;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #95a5a6;
}

.footer-menu {
    margin-bottom: 30px;
}

.footer-menu h5 {
    color: #D2A62D;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-menu h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #D2A62D;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu ul li {
    margin-bottom: 10px;
}

.footer-menu ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 3px 0;
}

.footer-menu ul li a:hover {
    color: #D2A62D;
    padding-left: 5px;
    transform: translateX(3px);
}

.footer-services {
    margin-bottom: 30px;
}

.footer-services h5 {
    color: #D2A62D;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-services h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #D2A62D;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.services-grid a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    padding: 5px 0;
    border-left: 2px solid transparent;
    padding-left: 8px;
}

.services-grid a:hover {
    color: #D2A62D;
    border-left-color: #D2A62D;
    background-color: rgba(210, 166, 45, 0.1);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-menu h5,
    .footer-services h5 {
        font-size: 1rem;
    }
    
    .footer-logo img {
        max-width: 150px;
    }

    .footer {
        padding: 40px 0 20px 0;
    }
    
    .footer-content {
        margin-bottom: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .footer-menu h5,
    .footer-services h5 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .footer-logo img {
        max-width: 130px;
    }
    
    .footer-description {
        font-size: 0.9rem;
        margin-top: 15px;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .services-grid {
        gap: 5px;
    }
    
    .services-grid a {
        font-size: 0.8rem;
        padding: 3px 0;
    }

    .footer {
        padding: 30px 0 15px 0;
    }
    
    .services-grid {
        gap: 5px;
    }
    
    .services-grid a {
        font-size: 0.8rem;
        padding: 4px 0;
    }
    
    .footer-menu ul li a {
        font-size: 0.85rem;
    }
    
    .footer-logo img {
        max-width: 120px;
    }
}







/* 7. Genel Container Düzeltmeleri */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .container,
    .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* 8. Text Overflow Düzeltmeleri */
@media (max-width: 768px) {
    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .service-title,
    .blog-post-title {
        hyphens: auto;
        word-break: break-word;
    }
}

/* 9. Touch Target Düzeltmeleri */
@media (max-width: 768px) {
    .service-card,
    .blog-card {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    .footer-menu ul li a,
    .services-grid a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

/* 10. Animation Performans Düzeltmeleri */
@media (max-width: 768px) {
    .service-card,
    .blog-card {
        will-change: transform;
    }
    
    .service-card:hover,
    .blog-card:hover {
        transform: translateY(-5px);
    }
}

/* 11. Landscape Mode Düzeltmeleri */
@media (max-height: 500px) and (orientation: landscape) {
    .slide-section {
        height: 80vh;
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
}











/* Hakkında Sayfası Özel Stilleri */
.page-header {
    background: linear-gradient(rgba(18, 40, 65, 0.8), rgba(26, 51, 82, 0.8)), url('../img/hakkinda-header.jpg') center/cover;
    padding: 120px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #D2A62D;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #ecf0f1;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.breadcrumb-custom {
    background: transparent;
    padding: 0;
    margin: 0;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.breadcrumb-custom .breadcrumb-item {
    color: #bdc3c7;
}

.breadcrumb-custom .breadcrumb-item.active {
    color: #D2A62D;
}

.breadcrumb-custom .breadcrumb-item a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-custom .breadcrumb-item a:hover {
    color: #D2A62D;
}

/* İçerik Bölümleri */
.content-section {
    padding: 80px 0;
}

.content-section.gray {
    background-color: #f8f9fa;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #122841;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

/*.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #D2A62D;
}*/

.intro-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #495057;
    text-align: center;
    margin-bottom: 50px;
    /*max-width: 800px;*/
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D2A62D 0%, #B8860B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #122841;
    margin-bottom: 15px;
}

.feature-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
}

/* Değerler Bölümü */
.values-section {
    background: linear-gradient(135deg, #122841 0%, #1a3352 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/img/pattern.png') repeat;
    opacity: 0.05;
    z-index: 1;
}

.values-content {
    position: relative;
    z-index: 2;
}

.values-section .section-title {
    color: #D2A62D;
}

.values-section .intro-text {
    color: #ecf0f1;
    margin-bottom: 40px;
}

.value-item {
    text-align: center;
    margin-bottom: 40px;
}

.value-number {
    width: 60px;
    height: 60px;
    background: #D2A62D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #122841;
    margin: 0 auto 20px auto;
}

.value-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #D2A62D;
    margin-bottom: 15px;
}

.value-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #ecf0f1;
}

/* İstatistikler */
.stats-section {
    background: #D2A62D;
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    color: #122841;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}













/* Ekip Bölümü */
.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.team-image {
    height: 300px;
    background: linear-gradient(135deg, #122841 0%, #1a3352 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D2A62D;
    font-size: 4rem;
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #122841;
    margin-bottom: 10px;
}

.team-position {
    font-size: 1rem;
    color: #D2A62D;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
}

/* CTA Bölümü */
.cta-section {
    background: linear-gradient(135deg, #D2A62D 0%, #B8860B 100%);
    padding: 80px 0;
    text-align: center;
    color: #122841;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    background: #122841;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #1a3352;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(18, 40, 65, 0.3);
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
}













/* Ekibimiz Sayfası Özel Stilleri */

/* Ekip Tanıtım Metni */
.ekip-intro {
    text-align: justify;
    margin-bottom: 60px;
}

/* Ekip Fotoğrafı */
.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ekip İkon Placeholder */
.team-icon-placeholder {
    background: linear-gradient(135deg, #122841 0%, #1a3352 100%);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D2A62D;
    font-size: 4rem;
    transition: all 0.3s ease;
}

.team-card:hover .team-icon-placeholder {
    background: linear-gradient(135deg, #1a3352 0%, #243a63 100%);
    transform: scale(1.05);
}

/* İletişim Butonu */
.contact-btn {
    background: linear-gradient(135deg, #D2A62D 0%, #B8860B 100%);
    color: #122841;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #B8860B 0%, #D2A62D 100%);
    color: #122841;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(210, 166, 45, 0.3);
}

/* Ekip İletişim Alanı */
.team-contact {
    text-align: center;
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

/* Ekip Kartları Özel Düzenlemeler */
.team-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.team-description {
    flex-grow: 1;
    margin-bottom: 20px;
}

/* Özellikler Bölümü */
.ekip-features-section {
    background-color: #f8f9fa;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .team-card {
        margin-bottom: 30px;
    }
    
    .contact-btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
    
    .team-icon-placeholder {
        font-size: 3rem;
    }
    
    .ekip-intro {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .team-contact {
        padding-top: 15px;
    }
    
    .contact-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .team-icon-placeholder {
        font-size: 2.5rem;
    }
}








/* Blog Sayfası Özel Stilleri */

/* Öne Çıkan Yazı Bölümü */
.featured-post-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.featured-post {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.featured-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.featured-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

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

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

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #D2A62D;
    color: #122841;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-content {
    padding: 40px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-meta-info {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.blog-category {
    color: #D2A62D;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-date {
    color: #6c757d;
    font-size: 0.9rem;
}

.featured-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #122841;
    line-height: 1.3;
    margin-bottom: 20px;
}

.featured-excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 30px;
    flex-grow: 1;
}

.featured-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

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

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #122841;
    font-size: 0.95rem;
}

.author-title {
    font-size: 0.85rem;
    color: #6c757d;
}

.featured-read-btn {
    background: linear-gradient(135deg, #D2A62D 0%, #B8860B 100%);
    color: #122841;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.featured-read-btn:hover {
    background: linear-gradient(135deg, #B8860B 0%, #D2A62D 100%);
    color: #122841;
    transform: translateX(3px);
}

.featured-read-btn::after {
    content: '→';
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.featured-read-btn:hover::after {
    transform: translateX(3px);
}

/* Kategoriler Bölümü */
.categories-section {
    padding: 60px 0;
    background: white;
}

.categories-filter {
    text-align: center;
}

.filter-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #122841;
    margin-bottom: 30px;
}

.category-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.category-btn {
    background: transparent;
    border: 2px solid #e9ecef;
    color: #6c757d;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-btn:hover,
.category-btn.active {
    background: #D2A62D;
    border-color: #D2A62D;
    color: #122841;
    transform: translateY(-2px);
}

/* Blog Yazıları */
.blog-posts-section {
    padding: 80px 0;
}

.blog-post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

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

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

.post-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(210, 166, 45, 0.9);
    color: #122841;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-category {
    color: #D2A62D;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.post-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #122841;
    line-height: 1.4;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.blog-post-card:hover .post-title {
    color: #D2A62D;
}

.post-excerpt {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 20px;
    flex-grow: 1;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

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

.author-mini-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.author-mini-name {
    font-size: 0.85rem;
    color: #495057;
    font-weight: 500;
}

.read-more-btn {
    color: #D2A62D;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more-btn:hover {
    color: #122841;
    transform: translateX(3px);
}

.read-more-btn::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more-btn:hover::after {
    transform: translateX(3px);
}

/* Blog Item Geçiş Efekti */
.blog-item {
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

/* Pagination */
.pagination-section {
    padding: 60px 0;
    text-align: center;
}

.pagination .page-link {
    color: #6c757d;
    border: 1px solid #e9ecef;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: #D2A62D;
    border-color: #D2A62D;
    color: #122841;
}

.pagination .page-item.active .page-link {
    background: #D2A62D;
    border-color: #D2A62D;
    color: #122841;
}

/* Newsletter Bölümü */
.newsletter-section {
    background: linear-gradient(135deg, #122841 0%, #1a3352 100%);
    padding: 80px 0;
}

.newsletter-content {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.newsletter-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #D2A62D;
    margin-bottom: 15px;
}

.newsletter-text {
    font-size: 1rem;
    color: #ecf0f1;
    margin-bottom: 0;
}

.newsletter-form {
    display: flex;
    justify-content: flex-end;
}

.newsletter-input-group {
    display: flex;
    width: 100%;
    max-width: 400px;
    background: white;
    border-radius: 25px;
    overflow: hidden;
}

.newsletter-input {
    flex: 1;
    border: none;
    padding: 15px 20px;
    font-size: 0.95rem;
    outline: none;
}

.newsletter-btn {
    background: #D2A62D;
    color: #122841;
    border: none;
    padding: 15px 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #B8860B;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .featured-post-section {
        padding: 60px 0;
    }
    
    .featured-image {
        height: 250px;
    }
    
    .featured-content {
        padding: 30px 20px;
        height: auto;
    }
    
    .featured-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .featured-excerpt {
        margin-bottom: 20px;
    }
    
    .categories-section {
        padding: 40px 0;
    }
    
    .category-buttons {
        gap: 10px;
    }
    
    .category-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    
    .blog-posts-section {
        padding: 60px 0;
    }
    
    .post-image {
        height: 200px;
    }
    
    .post-content {
        padding: 20px;
    }
    
    .post-title {
        font-size: 1rem;
    }
    
    .post-excerpt {
        font-size: 0.85rem;
    }
    
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-content {
        padding: 30px 20px;
        text-align: center;
    }
    
    .newsletter-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .newsletter-text {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .newsletter-form {
        justify-content: center;
    }
    
    .newsletter-input-group {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .featured-content {
        padding: 25px 15px;
    }
    
    .featured-title {
        font-size: 1.3rem;
    }
    
    .category-btn {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
    
    .post-content {
        padding: 15px;
    }
    
    .post-title {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .newsletter-content {
        padding: 25px 15px;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .newsletter-input {
        border-radius: 15px 15px 0 0;
    }
    
    .newsletter-btn {
        border-radius: 0 0 15px 15px;
    }
}










/* Blog Detay Sayfası Özel Stilleri */

/* Blog Detay Header */
.blog-detail-header {
    background: linear-gradient(rgba(18, 40, 65, 0.9), rgba(26, 51, 82, 0.9)), url('../img/blog-detail-bg.jpg') center/cover;
    padding: 120px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.blog-detail-header-content {
    position: relative;
    z-index: 2;
    color: white;
}

.blog-detail-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog-detail-category {
    background: #D2A62D;
    color: #122841;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-detail-date,
.blog-detail-read-time {
    color: #bdc3c7;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/*.blog-detail-date::before {
    content: '📅';
}*/

.blog-detail-read-time::before {
    content: '⏱️';
}

.blog-detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out;
}

.blog-detail-author {
    display: flex;
    align-items: center;
    gap: 15px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.author-detail-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #D2A62D;
}

.author-detail-info {
    display: flex;
    flex-direction: column;
}

.author-detail-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #D2A62D;
    margin-bottom: 5px;
}

.author-detail-title {
    font-size: 0.9rem;
    color: #bdc3c7;
}

/* Blog İçerik */
.blog-content-section {
    padding: 80px 0;
    background: white;
}

.blog-detail-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.blog-detail-image {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
}

.blog-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    background: #f8f9fa;
    padding: 15px;
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
    text-align: center;
    border-left: 4px solid #D2A62D;
}

/* Blog Metin İçeriği */
.blog-text-content {
    line-height: 1.8;
    color: #495057;
}

.blog-intro .lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: #122841;
    margin-bottom: 40px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 5px solid #D2A62D;
    border-radius: 0 10px 10px 0;
}

.blog-text-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #122841;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #D2A62D;
}

.blog-text-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #122841;
    margin: 30px 0 15px 0;
}

.blog-text-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #122841;
    margin: 25px 0 12px 0;
}

.blog-text-content p {
    margin-bottom: 20px;
    text-align: justify;
}

/* Özel Listeler */
.custom-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.custom-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.custom-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #D2A62D;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Özel Kutular */
.info-box,
.highlight-box,
.warning-box {
    padding: 25px;
    margin: 30px 0;
    border-radius: 10px;
    border-left: 5px solid;
}

.info-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left-color: #2196f3;
}

.info-box h4 {
    color: #1976d2;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.highlight-box {
    background: linear-gradient(135deg, #fff3e0 0%, #ffcc02 100%);
    border-left-color: #D2A62D;
}

.highlight-box h4 {
    color: #122841;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.warning-box {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border-left-color: #f44336;
}

.warning-box h4 {
    color: #d32f2f;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Blockquote */
blockquote {
    background: #f8f9fa;
    border-left: 5px solid #D2A62D;
    margin: 30px 0;
    padding: 25px;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #495057;
}

blockquote cite {
    display: block;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #6c757d;
    font-style: normal;
    font-weight: 600;
}

blockquote cite::before {
    content: '— ';
}

/* Sosyal Medya Paylaşım */
.social-share {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 40px 0;
    text-align: center;
}

.social-share h5 {
    color: #122841;
    margin-bottom: 20px;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.linkedin {
    background: #0077b5;
    color: white;
}

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

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: white;
}

/* Yazar Kutusu */
.author-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.author-box-avatar {
    flex-shrink: 0;
}

.author-box-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #D2A62D;
}

.author-box-content {
    flex-grow: 1;
}

.author-box-content h4 {
    color: #122841;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.author-box-title {
    color: #D2A62D;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.author-box-bio {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.author-box-btn {
    background: #D2A62D;
    color: #122841;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.author-box-btn:hover {
    background: #B8860B;
    color: #122841;
    transform: translateY(-2px);
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.widget-title {
    color: #122841;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #D2A62D;
}

/* İlgili Yazılar */
.related-post {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

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

.related-post-image {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-content h5 {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 8px;
}

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

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

.related-post-date {
    font-size: 0.8rem;
    color: #6c757d;
}

/* Kategori Listesi */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list li a {
    color: #495057;
    text-decoration: none;
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e9ecef;
}

.category-list li a:hover {
    color: #D2A62D;
    padding-left: 10px;
}

.category-list li a span {
    background: #e9ecef;
    color: #6c757d;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
}

/* Popüler Yazılar */
.popular-post {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

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

.popular-rank {
    background: #D2A62D;
    color: #122841;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.popular-post-content h5 {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 8px;
}

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

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

.popular-post-views {
    font-size: 0.8rem;
    color: #6c757d;
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, #D2A62D 0%, #B8860B 100%);
    color: #122841;
}

.cta-widget .widget-title {
    color: #122841;
    border-bottom-color: #122841;
}

.cta-widget-content h4 {
    color: #122841;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.cta-widget-content p {
    color: #122841;
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-widget-btn {
    background: #122841;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-widget-btn:hover {
    background: #1a3352;
    color: white;
    transform: translateY(-2px);
}

/* Benzer Yazılar Bölümü */
.similar-posts-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.similar-post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.similar-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

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

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

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

.similar-post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(210, 166, 45, 0.9);
    color: #122841;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.similar-post-content {
    padding: 25px;
}

.similar-post-content h3 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

.similar-post-content h3 a {
    color: #122841;
    text-decoration: none;
    transition: color 0.3s ease;
}

.similar-post-content h3 a:hover {
    color: #D2A62D;
}

.similar-post-content p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.similar-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
    font-size: 0.85rem;
}

.similar-post-author {
    color: #495057;
    font-weight: 500;
}

.similar-post-date {
    color: #6c757d;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .blog-detail-header {
        padding: 100px 0 60px 0;
    }
    
    .blog-detail-title {
        font-size: 2rem;
    }
    
    .blog-detail-meta {
        gap: 15px;
    }
    
    .blog-content-section {
        padding: 60px 0;
    }
    
    .blog-detail-content {
        padding: 25px 20px;
    }
    
    .blog-text-content h2 {
        font-size: 1.5rem;
    }
    
    .blog-text-content h3 {
        font-size: 1.3rem;
    }
    
    .share-buttons {
        gap: 10px;
    }
    
    .share-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .similar-posts-section {
        padding: 60px 0;
    }
    
    .blog-sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .blog-detail-header {
        padding: 80px 0 50px 0;
    }
    
    .blog-detail-title {
        font-size: 1.8rem;
    }
    
    .blog-detail-content {
        padding: 20px 15px;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .share-btn {
        width: 200px;
        justify-content: center;
    }
    
    .similar-post-image {
        height: 150px;
    }
    
    .sidebar-widget {
        padding: 20px 15px;
    }
}







 /* İletişim Sayfası Özel Stilleri */
        .contact-section {
            padding: 80px 0;
        }

        .contact-card {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            height: 100%;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #D2A62D 0%, #B8860B 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px auto;
            color: #122841;
            font-size: 1.5rem;
            font-weight: 600;
        }

        .contact-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #122841;
            margin-bottom: 15px;
            text-align: center;
        }

        .contact-info {
            font-size: 1rem;
            color: #6c757d;
            text-align: center;
            line-height: 1.6;
        }

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

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

        /* İletişim Formu */
        .contact-form {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .form-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #122841;
            margin-bottom: 30px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-label {
            font-weight: 600;
            color: #122841;
            margin-bottom: 8px;
            display: block;
        }

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

        .form-control:focus {
            border-color: #D2A62D;
            box-shadow: 0 0 0 0.2rem rgba(210, 166, 45, 0.25);
        }

        .form-select {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 15px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-select:focus {
            border-color: #D2A62D;
            box-shadow: 0 0 0 0.2rem rgba(210, 166, 45, 0.25);
        }

        .submit-btn {
            background: linear-gradient(135deg, #D2A62D 0%, #B8860B 100%);
            color: #122841;
            border: none;
            padding: 15px 40px;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: linear-gradient(135deg, #B8860B 0%, #D2A62D 100%);
            color: #122841;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(210, 166, 45, 0.3);
        }

        /* Harita Bölümü */
        .map-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }

        .map-container {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 400px;
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6c757d;
            font-size: 1.2rem;
            font-weight: 500;
        }

        /* Çalışma Saatleri */
        .hours-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #122841 0%, #1a3352 100%);
            color: white;
        }

        .hours-card {
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            padding: 30px;
            backdrop-filter: blur(10px);
        }

        .hours-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #D2A62D;
            margin-bottom: 25px;
            text-align: center;
        }

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

        .hours-list li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

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

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

        .time {
            font-weight: 600;
            color: #D2A62D;
        }

        /* FAQ Bölümü */
        .faq-section {
            padding: 80px 0;
        }

        .faq-item {
            background: white;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            overflow: hidden;
        }

        .faq-question {
            background: #f8f9fa;
            padding: 20px;
            font-weight: 600;
            color: #122841;
            cursor: pointer;
            border: none;
            width: 100%;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
        }

        .faq-question:hover {
            background: #e9ecef;
        }

        .faq-question.active {
            background: #D2A62D;
            color: #122841;
        }

        .faq-icon {
            transition: transform 0.3s ease;
        }

        .faq-question.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-answer.active {
            padding: 20px;
            max-height: 200px;
        }

        .faq-answer p {
            color: #6c757d;
            line-height: 1.6;
            margin: 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .contact-section {
                padding: 60px 0;
            }

            .contact-card,
            .contact-form {
                padding: 25px 20px;
            }

            .map-section,
            .hours-section,
            .faq-section {
                padding: 60px 0;
            }

            .hours-card {
                padding: 25px 20px;
            }

            .map-container {
                height: 300px;
            }
        }

        @media (max-width: 480px) {
            .contact-card,
            .contact-form {
                padding: 20px 15px;
            }

            .hours-card {
                padding: 20px 15px;
            }

            .faq-question,
            .faq-answer.active {
                padding: 15px;
            }

            .hours-list li {
                flex-direction: column;
                text-align: center;
                gap: 5px;
            }
        }










/* Navbar içi sosyal medya ikonları */
.navbar-social {
    position: absolute;
    top: 15px;
    right: 30px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.footer-social {

    display: flex;
    gap: 10px;

}

.navbar-social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    color: white;
}

.navbar-social-icon:hover {
    transform: translateY(-2px);
    color: #D2A62D;
}

/* Mobil uyumlu */
@media (max-width: 991px) {
    .navbar-social {
        position: static;
        justify-content: center;
        margin-bottom: 15px;
        order: -1;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .navbar-social-icon {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
}