* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.header.sticky {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    padding: 15px 0;
    position: relative;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #007bff;
}

.header-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-btn {
    display: inline-block;
    background-color: #007bff; /* Mavi tonu */
    color: #fff; /* Beyaz yazı */
    padding: 12px 25px; /* İç boşluk */
    border-radius: 5px; /* Hafif yuvarlak köşeler */
    text-decoration: none; /* Alt çizgiyi kaldır */
    font-size: 1rem; /* Yazı boyutu */
    font-weight: 500; /* Kalınlık */
    transition: background-color 0.3s ease; /* Geçiş efekti */
    border: none; /* Kenarlığı kaldır */
    cursor: pointer; /* İmleç tipi */
}

.contact-btn:hover {
    background-color: #0056b3; /* Hover'da daha koyu mavi */
    color: #fff; /* Hover'da da beyaz yazı */
    text-decoration: none; /* Hover'da da alt çizgiyi kaldır */
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Footer Styles */
.footer {
    background: #333;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    color: #007bff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 80vw;
        max-width: 320px;
        background: linear-gradient(135deg, #162447 0%, #7b25eb 100%);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 0 0 0;
        z-index: 2000;
        box-shadow: 2px 0 16px rgba(0,0,0,0.15);
        transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.25s;
        transform: translateX(-100%);
        opacity: 0;
        pointer-events: none;
    }
    .nav.active {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
        padding-left: 32px;
    }
    .nav-link {
        color: #fff;
        font-size: 1.1rem;
        padding: 8px 0;
        width: 100%;
        text-align: left;
        border-radius: 6px;
        transition: background 0.2s, color 0.2s;
    }
    .nav-link:hover {
        background: rgba(255,255,255,0.08);
        color: #ffe600;
    }
    .menu-toggle {
        display: flex;
        position: absolute;
        top: 18px;
        right: 18px;
        z-index: 2100;
    }
    .mobile-nav-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
        padding: 32px 0 18px 0;
        margin-top: auto;
        gap: 24px;
        margin-bottom: 100px;
    }
    .mobile-nav-btn {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
        text-align: center;
        font-size: 1.1rem;
        padding: 14px 0;
        display: block;
        background: #fff;
        color: #2563eb;
        border-radius: 8px;
        font-weight: 700;
        border: none;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    .mobile-nav-btn:hover {
        background: #2563eb;
        color: #fff;
    }
    .mobile-nav-logo {
        margin-top: 0;
        margin-bottom: 8px;
    }
    .mobile-nav-logo img {
        width: 180px;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    .nav-overlay {
        display: none;
    }
    .nav.active ~ .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(37,99,235,0.18);
        backdrop-filter: blur(6px);
        z-index: 1500;
        transition: opacity 0.3s;
        opacity: 1;
    }
}
@media (min-width: 769px) {
    .mobile-nav-bottom, .mobile-nav-btn, .mobile-nav-logo {
        display: none !important;
    }
    .nav-overlay {
        display: none !important;
    }

    /* Navigasyonun pozisyonunu flexbox'a uygun ayarla */
    .nav {
        position: static; /* Absolute konumlandırmayı iptal et */
        transform: none; /* Transformu iptal et */
        left: auto; /* Left değerini sıfırla */
        margin: 0 auto; /* Header-content içinde ortalamak için */
        flex-grow: 1; /* Mevcut alanı doldurmasını sağla */
        text-align: center; /* Nav içindeki ul'nin ortalanması için (eğer flex değilse) */
    }

    /* Nav ul'nin flex ayarlarını kontrol et (varsayılan flex) */
    .nav ul {
         justify-content: center; /* Nav içindeki linkleri ortala */
    }

    /* Header içeriğindeki flex gap veya boşluk ayarları gerekebilir */
     .header-content {
         justify-content: space-between; /* Elemanlar arasına boşluk ekle */
         gap: 20px; /* Elemanlar arası minimum boşluk */
     }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo img {
        height: 45px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }
}

.contact-info {
    display: flex;
    align-items: center;
    border-radius: 8px;
    padding: 8px 18px 8px 8px;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contact-info i.fa-solid.fa-comment {
    font-size: 28px;
    color: #fff;
    /* background: #2563eb; */
    border-radius: 6px;
    padding: 4px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon {
    /* Eski stiller kaldırıldı */
}

.contact-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.contact-title {
    color: #e0e7ef;
    font-size: 15px;
    margin-bottom: 2px;
}

.contact-mail {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.contact-mail:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-info {
        display: none;
    }
}

/* 1100px altı için contact-info gizleme */
@media (max-width: 1099px) {
    .contact-info {
        display: none;
    }
}

.main-hero {
    position: relative;
    min-height: 90vh;
    background: url('src/img/mainpage.avif') center bottom / cover no-repeat;
    overflow: hidden;
    width: 100%;
}

.main-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 60px 20px 40px;
    min-height: 80vh;
}

.main-hero-content {
    flex: 0 0 600px;
    text-align: left;
    color: #fff;
    margin-top: 40px;
}

.main-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.main-hero-content h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #c7d2fe;
}

.main-hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #e0e7ef;
}

.main-hero-content p strong {
    font-weight: normal;
}

.main-hero-btn {
    display: inline-block;
    background: #fff;
    color: #2563eb;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.main-hero-btn:hover {
    background: #2563eb;
    color: #fff;
}

.main-hero-side-image {
    flex: 0 0 600px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: -150px;
}

.main-hero-side-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transform: scale(1.4);
}

@media (max-width: 1100px) {
    .main-hero-container {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
        gap: 30px;
    }

    .main-hero-content {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
        padding: 0 20px;
        text-align: center;
    }

    .main-hero-content h1,
    .main-hero-content h2,
    .main-hero-content p {
        text-align: center;
    }

    .main-hero-btn {
        margin: 20px auto 0;
        display: block;
        max-width: 300px;
    }

    .main-hero-side-image {
        flex: 0 0 auto;
        max-width: 100%;
        margin-right: 0;
        justify-content: center;
    }

    .main-hero-side-image img {
        transform: scale(1);
        max-width: 450px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .main-hero-container {
        flex-direction: column;
        align-items: center;
        padding: 60px 15px;
        gap: 20px;
    }
    .main-hero-content {
        max-width: 100%;
        width: 100%;
        text-align: left;
        margin: 0 auto;
        padding-left: 0;
    }
    .main-hero-content h1 {
        margin-top: 32px;
    }
    .main-hero-side-image {
        margin: 24px 0 0 0;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        order: 2;
    }
    .main-hero-side-image img {
        display: block;
        margin: 0 auto;
        max-width: 300px;
        transform: scale(1.4);
    }
    .main-hero-btn {
        display: block;
        width: 100%;
        margin-bottom: 24px;
        box-sizing: border-box;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .main-hero-container {
        padding: 60px 10px;
    }

    .main-hero-content {
        padding-left: 10px;
    }

    .main-hero-content h1 {
        font-size: 1.8rem;
    }

    .main-hero-content h2 {
        font-size: 1.4rem;
    }

    .main-hero-content p {
        font-size: 0.95rem;
    }

    .main-hero-side-image img {
        max-width: 280px;
    }

    .main-hero-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
    z-index: 1500;
    transition: opacity 0.3s;
}
.nav-overlay.active {
    display: block;
}

@media (max-width: 768px) {
    .mobile-nav-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
        padding: 32px 0 18px 0;
        margin-top: auto;
        gap: 24px;
    }
    .mobile-nav-btn {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
        text-align: center;
        font-size: 1.1rem;
        padding: 14px 0;
        display: block;
        background: #fff;
        color: #2563eb;
        border-radius: 8px;
        font-weight: 700;
        border: none;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        transition: background 0.2s, color 0.2s;
    }
    .mobile-nav-btn:hover {
        background: #2563eb;
        color: #fff;
    }
    .mobile-nav-logo {
        margin-top: 0;
        margin-bottom: 8px;
    }
    .mobile-nav-logo img {
        width: 180px;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    .nav-overlay {
        display: none;
    }
    .nav.active ~ .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(37,99,235,0.18);
        backdrop-filter: blur(6px);
        z-index: 1500;
        transition: opacity 0.3s;
        opacity: 1;
    }
}
@media (min-width: 769px) {
    .mobile-nav-bottom, .mobile-nav-btn, .mobile-nav-logo {
        display: none !important;
    }
    .nav-overlay {
        display: none !important;
    }

    /* Navigasyonun pozisyonunu flexbox'a uygun ayarla */
    .nav {
        position: static; /* Absolute konumlandırmayı iptal et */
        transform: none; /* Transformu iptal et */
        left: auto; /* Left değerini sıfırla */
        margin: 0 auto; /* Header-content içinde ortalamak için */
        flex-grow: 1; /* Mevcut alanı doldurmasını sağla */
        text-align: center; /* Nav içindeki ul'nin ortalanması için (eğer flex değilse) */
    }

    /* Nav ul'nin flex ayarlarını kontrol et (varsayılan flex) */
    .nav ul {
         justify-content: center; /* Nav içindeki linkleri ortala */
    }

    /* Header içeriğindeki flex gap veya boşluk ayarları gerekebilir */
     .header-content {
         justify-content: space-between; /* Elemanlar arasına boşluk ekle */
         gap: 20px; /* Elemanlar arası minimum boşluk */
     }
}

.brand-slider {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.brand-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.brand-slider-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.brand-slider-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.brand-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.brand-slider-track {
    display: flex;
    animation: slide 20s linear infinite;
    width: calc(250px * 10);
}

.brand-slide {
    flex: 0 0 250px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-slide img {
    max-width: 100%;
    height: auto;
    transition: filter 0.3s ease;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 5));
    }
}

/* Responsive tasarım için */
@media (max-width: 768px) {
    .brand-slider-title {
        font-size: 2rem;
    }
    
    .brand-slider-subtitle {
        font-size: 1rem;
    }
    
    .brand-slide {
        flex: 0 0 180px;
    }
}

/* Yeni Hakkımızda/Neden Biz Section Stilleri */
.about-section {
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden; /* Oval geçiş için */
    position: relative; /* Oval geçiş için */
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px; /* Görsel ve metin arası boşluk */
}

.about-image {
    flex: 1;
    max-width: 50%;
    display: flex; /* İçeriği ortalamak için flexbox kullan */
    justify-content: center; /* Yatayda ortala */
    align-items: center; /* Dikeyde ortala */
}

.about-image img {
    display: block;
    width: 500px; /* Genişliği 500px yapıldı */
    height: 500px; /* Yüksekliği 500px yapıldı (1:1 oran) */
    object-fit: cover; /* Görseli kırparak sığdır */
    max-width: 100%; /* Kapsayıcıdan taşmasını engelle */
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-content {
    flex: 1; /* Kalan alanı doldur */
    max-width: 50%; /* Maksimum genişlik */
}

.about-subtitle {
    font-size: 1rem;
    color: #007bff; /* Mavi ton */
    font-weight: 700;
    margin-bottom: 10px;
}

.about-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-statistic {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.statistic-number {
    font-size: 3rem;
    font-weight: 700;
    color: #5f2c82; /* Mor ton */
}

.statistic-text {
    font-size: 1.2rem;
    color: #555;
    font-weight: 500;
}

.about-article p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive Ayarlamalar */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column; /* Dikey hizalama */
        gap: 40px;
    }

    .about-image,
    .about-content {
        max-width: 100%; /* Tam genişlik */
        flex: none; /* Flex grow/shrink iptal */
        text-align: center; /* İçerik ortalama */
    }

    .about-image img {
        max-width: 80%; /* Resim boyutu küçültme */
        width: 80%; /* Genişliği de %80 yap */
        height: auto; /* Yüksekliği otomatik hesapla */
        object-fit: cover; /* Kırpma devam etsin */
        margin: 0 auto;
    }

     .about-content {
         padding: 0 20px; /* İç padding ekleme */
     }

    .about-subtitle,
    .about-title,
    .about-statistic,
    .about-article p {
        text-align: center; /* Metinleri ortalama */
    }

    .about-statistic {
        justify-content: center; /* İstatistik bölümünü ortalama */
    }

     .about-title {
         font-size: 2rem; /* Başlık boyutu küçültme */
     }

     .statistic-number {
         font-size: 2.5rem; /* İstatistik rakam boyutu küçültme */
     }
}

@media (max-width: 576px) {
    .about-section {
        padding: 50px 0; /* Mobil padding */
    }
    .about-image img {
        max-width: 95%;
        width: 95%; /* Genişliği %95 yap */
        height: auto; /* Yüksekliği otomatik hesapla */
        object-fit: cover; /* Kırpma devam etsin */
    }
     .about-title {
         font-size: 1.8rem;
     }
     .statistic-number {
         font-size: 2rem;
     }
}

.services-section {
    background-image: url('src/img/hizmetler.avif');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    backdrop-filter: blur(8px);
    z-index: 1;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.services-title {
    text-align: center;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 60px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    text-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00f2fe);
    border-radius: 3px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 242, 254, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 123, 255, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: #00f2fe;
}

.service-card h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #007bff, #00f2fe);
    transition: width 0.4s ease;
}

.service-card:hover h3::after {
    width: 60px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-title {
        font-size: 2.2rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-card h3 {
        font-size: 1.5rem;
    }

    .service-card p {
        font-size: 1rem;
    }
}

/* Ekibimiz Section Stilleri */
.team-section {
    background-image: url('src/img/ekibimiz.avif');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: #f0f2f5; /* Arka plan görseli yoksa veya yüklenmezse */
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap; /* Ekran daraldığında alt alta geçmesi için */
    align-items: center;
    gap: 60px; /* İçerik ve kartlar arası boşluk */
    position: relative;
    z-index: 2; /* Overlay'in üzerinde görünmesi için */
}

.team-content {
    flex: 1;
    max-width: 500px;
}

.team-subtitle {
    font-size: 1rem;
    color: #007bff; /* Mavi ton */
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.team-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.team-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.team-member-card {
    background: rgba(255, 255, 255, 0.404);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 123, 255, 0.1);
    backdrop-filter: blur(10px);
    max-width: 280px;
    margin: 0 auto;
}

.team-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 242, 254, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-member-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.2),
                0 0 20px rgba(0, 123, 255, 0.1);
    border-color: rgba(0, 123, 255, 0.3);
}

.team-member-card:hover::before {
    opacity: 1;
}

.team-member-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #007bff, #00c6ff);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

.team-member-card:hover::after {
    transform: scaleX(1);
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid transparent;
    background: linear-gradient(45deg, #007bff, #00c6ff) border-box;
    mask-composite: exclude;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.member-photo::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #007bff, #00c6ff);
    border-radius: 50%;
    z-index: -1;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.team-member-card:hover .member-photo {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.3);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member-card:hover .member-photo img {
    transform: scale(1.1);
}

.member-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 123, 255, 0.1);
}

.team-member-card:hover .member-name {
    color: #007bff;
    text-shadow: 0 0 15px rgba(0, 123, 255, 0.2);
}

.member-title {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 0.5px;
}

.member-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #007bff, #00c6ff);
    transition: width 0.4s ease;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
}

.team-member-card:hover .member-title::after {
    width: 80px;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .team-members {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 25px;
        padding: 15px;
    }

    .team-member-card {
        padding: 20px;
        max-width: 260px;
    }

    .member-photo {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 670px) {
    .team-members {
        padding: 15px;
        gap: 20px;
    }

    .team-member-card {
        padding: 15px;
        max-width: 240px;
    }

    .member-photo {
        width: 120px;
        height: 120px;
    }

    .member-name {
        font-size: 1.2rem;
    }

    .member-title {
        font-size: 0.9rem;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }
}

@media (max-width: 1024px) {
    .team-content {
        text-align: center;
        max-width: 100%;
        margin: 0 auto 30px;
        padding: 0 20px;
    }

    .team-subtitle,
    .team-title,
    .team-description {
        text-align: center;
    }

    .team-description {
        max-width: 100%;
        margin: 0 auto;
    }

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

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

    .team-description {
        font-size: 1rem;
    }
}

/* Projeler Section Stilleri */
.projects-section {
    padding: 80px 0;
    background-color: #ffffff; /* Beyaza yakın arka plan */
    position: relative;
    overflow: hidden;
}

.projects-section::before {
    /* Koyu arka plan için eklenmişti, beyazda gerek yok */
    content: none;
}

.projects-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.projects-header {
    text-align: center;
    margin-bottom: 60px;
}

.projects-subtitle {
    font-size: 1.1rem;
    color: #007bff; /* Orijinal mavi alt başlık */
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: none; /* Açık zeminde parlama yerine netlik */
}

.projects-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333; /* Koyu başlık */
    line-height: 1.3;
    position: relative;
    padding-bottom: 20px;
    text-shadow: none; /* Açık zeminde parlama yerine netlik */
}

.projects-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00c6ff); /* Mavi-turkuaz gradient */
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.3); /* Hafif mavi parlama */
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.project-card {
    background: #fff; /* Tam beyaz arka plan */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); /* Daha standart gölge */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    backdrop-filter: none; /* Beyazda blur efekti çalışmaz */
    border: 1px solid rgba(0, 0, 0, 0.08); /* Çok ince gri kenarlık */
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #007bff, #00c6ff); /* Mavi-turkuaz gradient */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.4); /* Orta derecede mavi parlama */
}

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

.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.2), /* Daha belirgin mavi gölge/parlama */
                0 0 25px rgba(0, 198, 255, 0.3); /* Daha belirgin turkuaz parlama */
    border-color: rgba(0, 123, 255, 0.3); /* Hoverda mavi kenarlık */
}

.project-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.project-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 123, 255, 0.1); /* Çok hafif mavi overlay */
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-image::after {
    opacity: 1;
}

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

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-content {
    padding: 25px;
    flex-grow: 1;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333; /* Koyu başlık */
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
    text-shadow: none; /* Açık zeminde parlama yerine netlik */
    /* project-title::after çakışmaması için sıfırla */
    &::after {
        content: none;
    }
    padding-bottom: 0;
}

.project-tags {
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.project-tags .tag {
    background-color: #ffffff; /* Açık gri arka plan */
    color: #495057; /* Koyu gri metin */
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-shadow: none; /* Açık zeminde gerek yok */
}

.project-tags .tag:hover {
    background-color: #007bff; /* Hoverda mavi arka plan */
    color: #fff; /* Hoverda beyaz metin */
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.4); /* Mavi parlama */
}

.projects-button-container {
    text-align: center;
    margin-top: 40px;
}

.projects-btn {
    display: inline-block;
    background: linear-gradient(90deg, #007bff, #00c6ff); /* Mavi-turkuaz gradient */
    color: white;
    font-weight: 700;
    padding: 16px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3); /* Mavi gölge */
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.projects-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #00c6ff, #007bff); /* Hoverda turkuaz-mavi gradient */
    z-index: -1;
    transition: transform 0.4s ease;
    transform: scaleX(0);
    transform-origin: right;
}

.projects-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.projects-btn:hover {
    color: #fff;
    box-shadow: 0 12px 25px rgba(0, 123, 255, 0.4),
                0 0 30px rgba(0, 198, 255, 0.5); /* Daha belirgin parlamalar */
    transform: translateY(-4px);
}

/* Responsive Ayarlamalar */
@media (max-width: 992px) {
    .projects-title {
        font-size: 2.5rem;
    }

    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .project-card {
        max-width: 350px;
        margin: 0 auto;
    }

    .project-image {
        height: 200px;
    }

    .project-content {
        padding: 20px;
    }

    .project-title {
        font-size: 1.4rem;
    }

    .projects-tags .tag {
        font-size: 0.85rem;
        padding: 4px 9px;
    }
}

@media (max-width: 768px) {
    .projects-section {
        padding: 60px 0;
    }

    .projects-header {
        margin-bottom: 40px;
    }

    .projects-title {
        font-size: 2rem;
        padding-bottom: 15px;
    }

     .projects-title::after {
         width: 80px;
         height: 3px;
     }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .project-card {
        max-width: 320px;
    }

    .project-image {
        height: 180px;
    }

    .project-content {
        padding: 15px;
    }

    .project-title {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .project-tags {
        gap: 5px;
        margin-top: 8px;
    }

    .project-tags .tag {
        padding: 3px 8px;
        font-size: 0.8rem;
    }

    .projects-button-container {
        margin-top: 30px;
    }

    .projects-btn {
        font-size: 1.1rem;
        padding: 14px 30px;
    }
}

@media (max-width: 480px) {
    .projects-section {
        padding: 40px 0;
    }

    .projects-header {
        margin-bottom: 30px;
    }

    .projects-title {
        font-size: 1.8rem;
        padding-bottom: 10px;
    }

     .projects-title::after {
         width: 60px;
         height: 2px;
     }

    .projects-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin-bottom: 30px;
    }

    .project-card {
        min-width: 0;
        max-width: 100%;
        height: auto;
        border-radius: 12px;
    }
    .project-image {
        height: 220px;
        min-height: 0;
        padding-top: 0;
    }
    .project-content {
        padding: 1.5rem;
    }
    .project-title {
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
        line-height: 1.3;
    }
    .project-description {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 0;
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('src/img/grid-pattern.png') repeat;
    opacity: 0.1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-subtitle {
    color: #00f2fe;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonials-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.testimonial-card {
    flex: 0 0 calc(50% - 15px);
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    margin-top: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.3),
                0 0 60px rgba(0, 123, 255, 0.2);
    border-color: rgba(0, 242, 254, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.testimonial-card:hover .testimonial-quote {
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.7);
}

.testimonial-card:hover .author-image {
    border-color: rgba(0, 242, 254, 0.8);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

.testimonial-card:hover .author-name {
    color: #00f2fe;
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
}

.testimonial-quote {
    position: absolute;
    top: -25px; /* Konumu yukarı çek */
    right: 30px; /* Sağa biraz daha yakın */
    width: 50px; /* Boyutu küçült */
    height: 50px; /* Boyutu küçült */
    background: #fff; /* Arka planı beyaz yap */
    border-radius: 50%;
    padding: 10px; /* İç boşluk ekle */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Daha yumuşak gölge */
    z-index: 1;
    transition: all 0.3s ease;
}

.testimonial-quote img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none; /* Filtreyi kaldır */
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 242, 254, 0.5);
    transition: all 0.3s ease;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    padding-right: 40px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-author .author-info {
    flex: 1;
}

.testimonial-author .author-title {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    background: linear-gradient(135deg, #00f2fe 0%, #007bff 100%);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
}

/* Blog Post Styles */
.blog-post {
    padding: 150px 0;
    background-color: #f8f9fa;
}

/* Breadcrumb Styles */
.breadcrumb {
    padding: 15px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '>';
    margin: 0 10px;
    color: #6c757d;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.breadcrumb span {
    color: #6c757d;
}

.breadcrumb li:last-child {
    color: #333;
    font-weight: 500;
}

/* Blog sayfası için özel breadcrumb stili */
.blog-archive .breadcrumb {
    background-color: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.blog-archive .breadcrumb ol {
    justify-content: flex-start;
}

.blog-archive .breadcrumb a {
    color: #007bff;
}

.blog-archive .breadcrumb li:last-child {
    color: #495057;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .breadcrumb {
        font-size: 13px;
        padding: 10px 0;
    }

    .breadcrumb li:not(:last-child)::after {
        margin: 0 5px;
    }

    .blog-archive .breadcrumb {
        padding: 10px 15px;
        margin: 20px 0;
    }
}

.blog-header {
    margin-bottom: 40px;
    text-align: center;
}

.blog-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}

.blog-categories {
    margin: 12px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-categories-title {
    width: 100%;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 6px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-btn {
    display: inline-block;
    padding: 3px 8px;
    background-color: #f8f9fa;
    color: #495057;
    text-decoration: none;
    border-radius: 2px;
    font-size: 0.75rem;
    transition: all 0.2s ease;
    border: 1px solid #e9ecef;
    line-height: 1.2;
}

.category-btn:hover {
    background-color: #e9ecef;
    color: #212529;
    transform: translateY(-1px);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-tags .tag {
    background: #f8f9fa;
    color: #6c757d;
    padding: 2px 8px;
    border-radius: 2px;
    font-size: 0.75rem;
    transition: all 0.2s ease;
    border: 1px solid #e9ecef;
    line-height: 1.2;
}

.blog-tags .tag:hover {
    background: #e9ecef;
    color: #495057;
    transform: translateY(-1px);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.blog-featured-image {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.blog-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.blog-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #444;
}

.blog-content h2 {
    color: #333;
    margin: 40px 0 20px;
    font-size: 1.8rem;
}

.blog-content hr {
    margin: 40px 0;
    border: none;
    border-top: 1px solid #eee;
}

.table-responsive {
    overflow-x: auto;
    margin: 30px 0;
}

.platform-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.platform-table th,
.platform-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.platform-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.platform-table tr:hover {
    background: #f8f9fa;
}

.blog-content ol,
.blog-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.blog-content li {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #444;
}

@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 2rem;
    }

    .blog-meta {
        flex-direction: column;
        gap: 10px;
    }

    .blog-content {
        padding: 20px;
    }

    .platform-table th,
    .platform-table td {
        padding: 10px;
    }
}

/* Blog Layout */
.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.blog-main {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.blog-sidebar {
    position: sticky;
    top: 120px; /* Header'ın altında kalması için 100px boşluk bırak */
    height: fit-content;
}

.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
    font-weight: 600;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #007bff, #00c6ff);
    transition: width 0.3s ease;
}

.sidebar-widget:hover h3::after {
    width: 100px;
}

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

.category-list li {
    margin-bottom: 12px;
    position: relative;
}

.category-list li:last-child {
    margin-bottom: 0;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #495057;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 1px solid transparent;
}

.category-list a:hover {
    background: #fff;
    color: #007bff;
    transform: translateX(5px);
    border-color: rgba(0,123,255,0.2);
    box-shadow: 0 2px 8px rgba(0,123,255,0.1);
}

.post-count {
    background: #e9ecef;
    color: #495057;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-list a:hover .post-count {
    background: #007bff;
    color: #fff;
}

/* Etiket Bulutu Stilleri */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud .tag {
    display: inline-block;
    padding: 6px 12px;
    background: #f8f9fa;
    color: #495057;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.tag-cloud .tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,123,255,0.1), rgba(0,198,255,0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tag-cloud .tag:hover {
    color: #007bff;
    transform: translateY(-2px);
    border-color: rgba(0,123,255,0.2);
    box-shadow: 0 2px 8px rgba(0,123,255,0.1);
}

.tag-cloud .tag:hover::before {
    opacity: 1;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .sidebar-widget {
        padding: 20px;
    }

    .sidebar-widget h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .category-list a {
        padding: 8px 12px;
    }

    .tag-cloud .tag {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
}

.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-post {
    display: flex;
    gap: 1rem;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.recent-post:hover {
    background-color: #f8f9fa;
}

.recent-post-image {
    flex: 0 0 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
}

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

.recent-post-content {
    flex: 1;
}

.recent-post-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    line-height: 1.4;
}

.recent-post-content h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-content h4 a:hover {
    color: #007bff;
}

.post-date {
    font-size: 0.875rem;
    color: #666;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
        margin-top: 2rem;
    }
}

.header.blog {
    background-color: #2727277c;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header.blog .nav-link {
    color: #ffffff;
}

.header.blog .contact-title {
    color: #ffffff;
}

.header.blog .contact-mail {
    color: #ffffff;
}

.header.blog .menu-toggle span {
    background-color: #333;
}

/* Genel Tablo Stilleri */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    color: #212529;
}

th,
td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}

tbody + tbody {
    border-top: 2px solid #dee2e6;
}

table .table {
    background-color: #fff;
}

.table-sm th,
.table-sm td {
    padding: 0.3rem;
}

.table-bordered {
    border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
    border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
    border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
    color: #212529;
    background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
    background-color: #b8daff;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
    background-color: #d6d8db;
}

/* Diğer renk sınıfları benzer şekilde eklenebilir */

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
    .table-responsive-sm {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* İletişim Widget'ı Stilleri */
.contact-widget {
    background: linear-gradient(135deg, #2c3e50, #3498db) !important;
    color: #fff !important;
    padding: 25px !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    text-align: center !important;
}

.contact-widget h3 {
    color: #fff !important;
    font-size: 1.4rem !important;
    margin-bottom: 20px !important;
    padding-bottom: 15px !important;
    border-bottom: 2px solid rgba(255,255,255,0.2) !important;
}

.contact-widget .contact-btn {
    display: inline-block !important;
    background: #fff !important;
    color: #2c3e50 !important;
    padding: 12px 25px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease !important;
    margin-top: 15px !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
}

.contact-widget .contact-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2) !important;
    background: #f8f9fa !important;
}

.contact-widget .contact-info {
    margin-top: 20px !important;
}

.contact-widget .contact-item {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 15px !important;
    color: #fff !important;
}

.contact-widget .contact-item i {
    width: 30px !important;
    height: 30px !important;
    background: rgba(255,255,255,0.2) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 15px !important;
}

.contact-widget .contact-item a {
    color: #fff !important;
    text-decoration: none !important;
    transition: opacity 0.3s ease !important;
}

.contact-widget .contact-item a:hover {
    opacity: 0.8 !important;
}

/* Blog Arşiv Sayfası Stilleri */
.blog-archive {
    padding-top: 100px;
    min-height: 100vh;
    background-color: #f8f9fa;
}

.blog-archive .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumb Stilleri */
.blog-archive .breadcrumb {
    margin-bottom: 30px;
    padding: 15px 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.blog-archive .breadcrumb ol {
    list-style: none;
    margin: 0;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.blog-archive .breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.blog-archive .breadcrumb li:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: #ccc;
}

.blog-archive .breadcrumb a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-archive .breadcrumb a:hover {
    color: #0056b3;
}

/* Başlık Stilleri */
.blog-archive h1 {
    text-align: center;
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
}

.blog-archive h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00c6ff);
    border-radius: 3px;
}

/* Kategori Filtreleme Stilleri */
.category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.category-btn {
    padding: 10px 20px;
    border: 2px solid #007bff;
    border-radius: 25px;
    background: transparent;
    color: #007bff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover {
    background: #007bff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,123,255,0.2);
}

.category-btn.active {
    background: #007bff;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0,123,255,0.2);
}

/* Blog Listesi Stilleri */
.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-post-preview {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    text-decoration: none;
}

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

.post-preview-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.post-preview-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-post-preview:hover .post-preview-image::after {
    opacity: 1;
}

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

.blog-post-preview:hover .post-preview-image img {
    transform: scale(1.1);
}

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

.post-category {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.post-category span {
    display: inline-block;
    background: rgba(0, 123, 255, 0.08);
    color: #007bff;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.blog-post-preview:hover .post-category span {
    background: rgba(0, 123, 255, 0.12);
}

.post-preview-content h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-post-preview:hover .post-preview-content h4 {
    color: #007bff;
}

.post-date {
    font-size: 0.9rem;
    color: #666;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-date i {
    color: #007bff;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .post-category {
        gap: 4px;
        margin-bottom: 10px;
    }

    .post-category span {
        font-size: 0.7rem;
        padding: 2px 8px;
    }
}

/* Kategori Sayfası Stilleri */
.category-page {
    padding: 40px 0;
    margin-top: 120px;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.category-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.category-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.category-posts {
    display: grid;
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.blog-card-image {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
}

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

.blog-card-content {
    padding: 20px;
}

.blog-card-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.blog-card-content h2 a {
    color: #333;
    text-decoration: none;
}

.blog-card-content h2 a:hover {
    color: #007bff;
}

.blog-card-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.blog-card-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-card-categories .category {
    background: #f0f0f0;
    color: #666;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.blog-card-categories .category:hover {
    background: #e0e0e0;
}

.category-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

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

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

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: #007bff;
}

.post-count {
    background: #f0f0f0;
    color: #666;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

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

.tag-cloud .tag {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tag-cloud .tag:hover {
    color: #007bff;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .category-content {
        grid-template-columns: 1fr;
    }
    
    .category-header h1 {
        font-size: 2rem;
    }
    
    .blog-card-content h2 {
        font-size: 1.3rem;
    }
}

/* Kategori Sayfası Breadcrumb Stilleri */
.category-page .breadcrumb {
    margin-bottom: 30px;
}

/* Kategori Kartları Stilleri */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.category-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #eaeaea;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00bfff);
}

.category-card h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.category-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-card .btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(90deg, #007bff, #00bfff);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-card .btn:hover {
    background: linear-gradient(90deg, #0056b3, #0099ff);
    transform: translateY(-2px);
}

.category-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #007bff;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .category-card {
        padding: 1.5rem;
    }
}

/* Etiket Sayfası Stilleri */
.tag-page {
    padding: 120px 0;
}

.tag-header {
    text-align: center;
    margin-bottom: 40px;
}

.tag-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.tag-description {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
}

.tag-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.tag-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.tag-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.tag-card .icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.tag-card h2 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.tag-card .btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.tag-card .btn:hover {
    background: var(--secondary-color);
}

/* Etiket Yazıları Sayfası Stilleri */
.tag-posts-page {
    padding: 120px 0;
}

.tag-posts-header {
    text-align: center;
    margin-bottom: 40px;
}

.tag-posts-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.tag-posts-description {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
}

.tag-posts-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.post-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.post-image {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}

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

.post-content {
    padding: 20px;
}

.post-content h2 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.post-meta {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.post-date {
    display: inline-block;
    margin-right: 15px;
}

/* Etiket Bulutu Stilleri */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-link {
    display: inline-block;
    padding: 5px 15px;
    background: var(--light-bg);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .tag-content,
    .tag-posts-content {
        grid-template-columns: 1fr;
    }
    
    .tag-sidebar,
    .tag-posts-sidebar {
        order: -1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .tag-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .tag-header h1,
    .tag-posts-header h1 {
        font-size: 2rem;
    }
}

/* Hakkımızda Sayfası Stilleri */
.about-hero {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #4a00e0 0%, #8e2de2 100%);
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.about-hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
    z-index: 1;
}

.about-hero-content {
    flex: 1;
    color: white;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.about-hero-content h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.about-hero-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.about-hero-image {
    flex: 1;
    position: relative;
}

.about-hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
    z-index: -1;
    backdrop-filter: blur(10px);
}

.about-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.about-hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0;
    }
    
    .about-hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-hero-content h2 {
        font-size: 1.5rem;
    }
    
    .about-hero-image {
        margin-top: 40px;
    }
    
    .about-hero-image img {
        transform: none;
    }
    
    .about-hero-image:hover img {
        transform: none;
    }
}

.about-features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.about-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%234a00e0' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.about-features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 0, 224, 0.1) 0%, rgba(142, 45, 226, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(74, 0, 224, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    color: #4a00e0;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    color: #8e2de2;
}

.feature-card h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #4a00e0, #8e2de2);
    transition: width 0.4s ease;
}

.feature-card:hover h3::after {
    width: 60px;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #4a00e0 0%, #8e2de2 100%);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.about-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.about-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 16px 35px;
    background: #fff;
    color: #4a00e0;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4a00e0, #8e2de2);
    z-index: -1;
    transition: transform 0.4s ease;
    transform: scaleX(0);
    transform-origin: right;
}

.cta-button:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.cta-button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

@media (max-width: 768px) {
    .about-features {
        padding: 60px 0;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-card h3 {
        font-size: 1.5rem;
    }
    
    .about-cta {
        padding: 60px 0;
    }
    
    .about-cta h2 {
        font-size: 2rem;
    }
    
    .about-cta p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

/* Gizlilik Sözleşmesi Sayfası Stilleri */
.privacy-hero {
    position: relative;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #4a00e0 0%, #8e2de2 100%);
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.privacy-hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: white;
    z-index: 1;
}

.privacy-hero-container h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.privacy-hero-container p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.privacy-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-section {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.privacy-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.privacy-section h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.privacy-section h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #4a00e0, #8e2de2);
    transition: width 0.3s ease;
}

.privacy-section:hover h2::after {
    width: 100px;
}

.privacy-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-section ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 15px;
}

.privacy-section ul li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.privacy-section ul li::before {
    content: '•';
    color: #4a00e0;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.privacy-section strong {
    color: #333;
    font-weight: 600;
}

.privacy-note {
    font-style: italic;
    color: #666;
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 100px 0 40px;
    }

    .privacy-hero-container h1 {
        font-size: 2.2rem;
    }

    .privacy-hero-container p {
        font-size: 1.1rem;
    }

    .privacy-content {
        padding: 40px 0;
    }

    .privacy-section {
        padding: 20px;
    }

    .privacy-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-hero-container h1 {
        font-size: 1.8rem;
    }

    .privacy-hero-container p {
        font-size: 1rem;
    }

    .privacy-section {
        padding: 15px;
    }

    .privacy-section h2 {
        font-size: 1.3rem;
    }
}

/* İletişim Sayfası Stilleri */
.contact-hero {
    position: relative;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #4a00e0 0%, #8e2de2 100%);
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.contact-hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: white;
    z-index: 1;
}

.contact-hero-container h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.contact-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #4a00e0 0%, #8e2de2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 30px;
    color: white;
}

.contact-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

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

.contact-card a {
    color: #4a00e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #8e2de2;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-container h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a00e0;
    box-shadow: 0 0 0 3px rgba(74, 0, 224, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #4a00e0 0%, #8e2de2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 0, 224, 0.3);
}

.submit-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 40px;
    }

    .contact-hero-container h1 {
        font-size: 2.2rem;
    }

    .contact-hero-container p {
        font-size: 1.1rem;
    }

    .contact-content {
        padding: 40px 0;
    }

    .contact-info-cards {
        gap: 20px;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .contact-form-container h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-container h1 {
        font-size: 1.8rem;
    }

    .contact-hero-container p {
        font-size: 1rem;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
    }

    .contact-icon i {
        font-size: 25px;
    }

    .contact-card h3 {
        font-size: 1.3rem;
    }

    .submit-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4a00e0 0%, #8e2de2 100%);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

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

.error-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.error-content {
    color: white;
    text-align: left;
}

.error-content h1 {
    font-size: 8rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    background: linear-gradient(to right, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.error-content h2 {
    font-size: 2.5rem;
    margin: 1rem 0;
    font-weight: 600;
}

.error-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.error-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.error-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.error-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 992px) {
    .error-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .error-content {
        text-align: center;
    }

    .error-content h1 {
        font-size: 6rem;
    }

    .error-content h2 {
        font-size: 2rem;
    }

    .error-image {
        order: -1;
    }

    .error-image img {
        max-width: 80%;
    }
}

@media (max-width: 576px) {
    .error-content h1 {
        font-size: 4rem;
    }

    .error-content h2 {
        font-size: 1.5rem;
    }

    .error-content p {
        font-size: 1rem;
    }

    .error-btn {
        padding: 0.8rem 1.5rem;
    }
}

.error-number {
    font-size: 20rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
    user-select: none;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(-5deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0px) rotate(-5deg);
    }
}

@media (max-width: 992px) {
    .error-number {
        font-size: 15rem;
    }
}

@media (max-width: 576px) {
    .error-number {
        font-size: 10rem;
    }
}

/* Proje Galerisi Stilleri */
.project-gallery {
    margin-top: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Lightbox Stilleri */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.lightbox-close:hover {
    color: #ff6b6b;
}

.gallery-item {
    cursor: pointer;
}

/* Projeler Sayfası Stilleri */
.projects-page {
    padding: 120px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 120px;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.project-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.project-image {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}

.project-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.project-content {
    padding: 1.5rem;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.project-category {
    color: var(--primary-color);
    font-weight: 500;
}

.project-date {
    color: var(--text-light);
}

.project-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.project-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: var(--bg-light);
    color: var(--text-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.project-card .btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 0.75rem;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.project-card .btn:hover {
    background: var(--primary-dark);
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

.project-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: transform 0.3s ease;
}

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

.project-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    height: 100%;
}

.project-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Anasayfa Proje Kartları */
.projects-section .project-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.projects-section .project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 480px) {
    .project-title {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
        line-height: 1.15;
    }
    .project-description {
        font-size: 0.75rem;
        line-height: 1.2;
    }
}