/* Reset ve temel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter Tight', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Menü açıkken body scroll'u engelle */
body.menu-open {
    overflow: hidden;
}

/* Header ve navigasyon */
.ust-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 80px;
    transition: all 0.3s ease;
}

.menu-icerik {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #2563eb;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.sag-butonlar {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.sag-butonlar a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.sag-butonlar a.aktif {
    background: #2563eb;
    color: white;
}

/* Giriş yap ve üye ol butonları */
.giris-butonu {
    background: transparent;
    color: #2563eb !important;
    padding: 0.6rem 1.5rem;
    border: 2px solid #2563eb;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.giris-butonu:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.uye-ol-butonu {
    background: #2563eb;
    color: #ffffff !important;
    padding: 0.6rem 1.5rem;
    border: 2px solid #2563eb;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.uye-ol-butonu:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Mobil butonlar - masaüstünde gizli */
.mobil-butonlar {
    display: none;
}

/* Mobil menü toggle butonu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #000;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1001;
    position: relative;
}

.menu-toggle:hover {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

.menu-toggle i {
    font-size: 1.5rem;
}

/* Ana hero bölümü */
.ana-bolum {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    background-image: url('images/2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px; /* Header yüksekliği için padding */
}

.ana-bolum::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.7) 0%, rgba(226, 232, 240, 0.8) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1;
}

.hero-icerik {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-metin h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1e293b, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-metin p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.buton-grubu {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.ana-buton {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.ana-buton:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}

.ikincil-buton {
    background: transparent;
    color: #2563eb;
    padding: 1rem 2.5rem;
    border: 2px solid #2563eb;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.ikincil-buton:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-3px);
}

/* Hero görsel alanı */
.hero-gorsel {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Program Görsel Stilleri */
.program-gorsel {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    transition: transform 0.3s ease;
    animation: floatUpDown 4s ease-in-out infinite;
}

.program-gorsel:hover {
    transform: translateY(-10px);
    animation-play-state: paused;
}

.ana-program-gorsel {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Yukarı-Aşağı Yüzen Animasyon */
@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes parilti {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.gorsel-ikon {
    font-size: 4rem;
    color: #2563eb;
    z-index: 2;
    position: relative;
}

/* Animasyonlu ikonlar */
.animasyonlu-ikonlar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.animasyonlu-ikon {
    position: absolute;
    font-size: 2rem;
    color: #2563eb;
    opacity: 0.6;
    animation: yuzme 6s infinite ease-in-out;
}

.animasyonlu-ikon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.animasyonlu-ikon:nth-child(2) { top: 60%; right: 15%; animation-delay: 1s; }
.animasyonlu-ikon:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 2s; }
.animasyonlu-ikon:nth-child(4) { top: 40%; right: 30%; animation-delay: 3s; }
.animasyonlu-ikon:nth-child(5) { bottom: 60%; right: 10%; animation-delay: 4s; }
.animasyonlu-ikon:nth-child(6) { top: 10%; left: 60%; animation-delay: 5s; }
.animasyonlu-ikon:nth-child(7) { bottom: 20%; right: 50%; animation-delay: 1.5s; }

@keyframes yuzme {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-15px) rotate(3deg); }
}

/* Hizmet alanları bölümü */
.hizmet-alanlari {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hizmet-alanlari::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="b" cx="50%" cy="50%"><stop offset="0%" stop-color="%232563eb" stop-opacity="0.05"/><stop offset="100%" stop-color="%232563eb" stop-opacity="0"/></radialGradient></defs><circle cx="300" cy="300" r="200" fill="url(%23b)"/><circle cx="700" cy="700" r="300" fill="url(%23b)"/></svg>');
    opacity: 0.6;
}

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

.hizmet-baslik {
    text-align: center;
    margin-bottom: 5rem;
}

.hizmet-etiket {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.hizmet-baslik h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hizmet-baslik p {
    font-size: 1.3rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.hizmet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.hizmet-karti {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(25px);
    border-radius: 25px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.hizmet-karti::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02), rgba(29, 78, 216, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hizmet-karti:hover::before {
    opacity: 1;
}

.hizmet-karti:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
}

.hizmet-karti:hover .hizmet-ikon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

.hizmet-karti:hover .hizmet-numara {
    transform: scale(1.2);
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    color: white;
}

.hizmet-karti:hover h3 {
    color: #2563eb;
    transform: translateY(-2px);
}

.hizmet-karti:hover p {
    color: #475569;
}

.hizmet-ikon-wrapper {
    position: relative;
    padding: 2.5rem 2.5rem 1rem;
    text-align: center;
}

.hizmet-ikon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.hizmet-ikon i {
    font-size: 2.2rem;
    color: white;
}

.hizmet-numara {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 700;
    color: #2563eb;
    border: 3px solid rgba(37, 99, 235, 0.1);
}

.hizmet-icerik {
    padding: 0 2.5rem 2.5rem;
}

.hizmet-karti h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.hizmet-karti p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

/* Özellikler bölümü */
.ozellikler-bolum {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.ozellik-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ozellik-baslik {
    text-align: center;
    margin-bottom: 4rem;
}

.ozellik-baslik h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.ozellik-baslik p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.ozellik-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.ozellik-karti {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ozellik-karti::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

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

.ozellik-ikon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.ozellik-ikon i {
    font-size: 1.5rem;
    color: white;
}

.ozellik-karti h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
}

.ozellik-karti p {
    color: #64748b;
    line-height: 1.7;
    text-align: center;
}

/* Fiyatlar bölümü */
.fiyatlar-bolum {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.fiyat-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.fiyat-baslik {
    text-align: center;
    margin-bottom: 4rem;
}

.fiyat-baslik h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.fiyat-baslik p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.fiyat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.fiyat-karti {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem 2.5rem 2.5rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.fiyat-karti.onerilen {
    border: 2px solid #2563eb;
    transform: scale(1.05);
    padding-top: 3.5rem;
}

.fiyat-karti.onerilen:hover {
    transform: scale(1.05) translateY(-10px);
}


.fiyat-baslik-kart {
    text-align: center;
    margin-bottom: 2rem;
}

.fiyat-baslik-kart h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.fiyat-tutar {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.para-birimi {
    font-size: 1.5rem;
    font-weight: 600;
    color: #64748b;
}

.tutar {
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
}

.periyot {
    font-size: 1rem;
    color: #64748b;
}

.fiyat-ozellikler {
    list-style: none;
    margin-bottom: 2rem;
}

.fiyat-ozellikler li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #334155;
}

.fiyat-ozellikler i {
    color: #10b981;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.fiyat-buton {
    width: 100%;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

.fiyat-buton:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Müşteri Yorumları Bölümü */
.musteri-yorumlari {
    padding: 6rem 0;
    background: #f8fafc;
}

.yorum-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.yorum-baslik {
    text-align: center;
    margin-bottom: 4rem;
}

.yorum-etiket {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.yorum-baslik h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.yorum-baslik p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.yorum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.yorum-karti {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.yorum-icerik {
    margin-bottom: 2rem;
}

.yorum-yildizlar {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.yorum-yildizlar i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.yorum-icerik p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    font-style: italic;
}

.yorum-musteri {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.musteri-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e2e8f0;
}

.musteri-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.musteri-bilgi h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.3rem;
}

.musteri-bilgi span {
    font-size: 0.9rem;
    color: #64748b;
}

/* Müşteri Yorumları Mobil Responsive */
@media (max-width: 768px) {
    .musteri-yorumlari {
        padding: 4rem 0;
    }
    
    .yorum-container {
        padding: 0 1rem;
    }
    
    .yorum-baslik h2 {
        font-size: 2rem;
    }
    
    .yorum-baslik p {
        font-size: 1rem;
    }
    
    .yorum-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .yorum-karti {
        padding: 1.5rem;
    }
    
    .yorum-icerik p {
        font-size: 1rem;
    }
    
    .musteri-avatar {
        width: 50px;
        height: 50px;
    }
    
    .musteri-bilgi h4 {
        font-size: 1rem;
    }
    
    .musteri-bilgi span {
        font-size: 0.8rem;
    }
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 3rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-bolum h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2563eb;
}

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

.footer-bolum ul li {
    margin-bottom: 0.5rem;
}

.footer-bolum ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bolum ul li a:hover {
    color: white;
}

.footer-alt {
    border-top: 1px solid #334155;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
}

/* Mobil menü stilleri */
@media (max-width: 768px) {
    .menu-toggle {
        display: block !important;
        position: relative;
        z-index: 1001;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 12px;
        padding: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        width: 50px;
        height: 50px;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .menu-toggle:hover {
        background: rgba(255, 255, 255, 1);
        transform: scale(1.05);
    }

    .menu-toggle.aktif {
        background: #2563eb;
        color: white;
        transform: scale(1.05);
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        flex-direction: column;
        padding: 2rem 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 998;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        border-radius: 0 0 25px 25px;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu.aktif {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        width: 100%;
        margin-bottom: 0.5rem;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .nav-menu.aktif li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.aktif li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.aktif li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.aktif li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.aktif li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.aktif li:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu.aktif li:nth-child(6) { transition-delay: 0.35s; }

    .nav-menu a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 15px;
        transition: all 0.3s ease;
        background: rgba(248, 250, 252, 0.5);
        border: 1px solid rgba(226, 232, 240, 0.5);
        color: #1e293b;
        text-decoration: none;
        position: relative;
        overflow: hidden;
        text-align: center;
        margin-bottom: 0.5rem;
        min-height: 50px;
    }

    .nav-menu a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .nav-menu a:hover::before {
        left: 100%;
    }

    .nav-menu a:hover {
        background: rgba(37, 99, 235, 0.1);
        border-color: rgba(37, 99, 235, 0.3);
        color: #2563eb;
        transform: translateX(10px);
        box-shadow: 0 5px 20px rgba(37, 99, 235, 0.2);
    }

    .nav-menu a::after {
        display: none;
    }


    .giris-butonu-mobil {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
        font-weight: 600;
        border-radius: 12px;
        transition: all 0.3s ease;
        text-decoration: none;
        min-height: 45px;
        margin-bottom: 0;
        gap: 0.5rem;
        background: #2563eb;
        color: white;
        border: 2px solid #2563eb;
        box-shadow: none;
    }

    .giris-butonu-mobil:hover {
        background: #1d4ed8;
        border-color: #1d4ed8;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
    }


    /* Mobil Menü Overlay */
    .mobil-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 997;
        backdrop-filter: blur(5px);
    }

    .mobil-menu-overlay.aktif {
        opacity: 1;
        visibility: visible;
    }

    /* Mobilde butonları gizle */
    .sag-butonlar {
        display: none;
    }

    .logo img {
        height: 40px;
    }

    .ana-bolum {
        padding-top: 120px; /* Mobilde daha fazla padding */
    }

    .hero-icerik {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .hero-gorsel {
        display: block;
    }

    .hero-metin h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .hero-metin p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .buton-grubu {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .ana-buton, .ikincil-buton {
        width: 100%;
        max-width: 280px;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .ozellik-grid {
        grid-template-columns: 1fr;
    }

    .hizmet-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .hizmet-baslik h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hizmet-baslik p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hizmet-karti {
        margin: 0;
        padding: 0;
    }

    .hizmet-ikon-wrapper {
        padding: 1.5rem 1.5rem 1rem;
    }

    .hizmet-icerik {
        padding: 0 1.5rem 1.5rem;
    }

    .hizmet-ikon {
        width: 70px;
        height: 70px;
    }

    .hizmet-ikon i {
        font-size: 1.8rem;
    }

    .hizmet-numara {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        top: 1rem;
        right: 1rem;
    }

    /* Mobilde butonlar daha küçük */
    .giris-butonu, .uye-ol-butonu {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }

    /* Fiyat kartları mobil düzenlemesi */
    .fiyat-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .fiyat-karti {
        margin: 0;
        padding: 2rem 1.5rem;
    }

    .fiyat-karti.onerilen {
        transform: none;
        margin-bottom: 1rem;
    }

    .fiyat-karti.onerilen:hover {
        transform: translateY(-5px);
    }

    .tutar {
        font-size: 2.5rem;
    }

    .fiyat-baslik h2 {
        font-size: 2rem;
    }

    .fiyat-baslik p {
        font-size: 1rem;
    }

    /* Özellik kartları mobil düzenlemesi */
    .ozellik-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .ozellik-karti {
        padding: 2rem 1.5rem;
    }

    .ozellik-ikon {
        width: 60px;
        height: 60px;
    }

    .ozellik-ikon i {
        font-size: 1.5rem;
    }

    /* Galeri mobil düzenlemesi */
    .galeri-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .galeri-baslik h2 {
        font-size: 2rem;
    }

    .galeri-baslik p {
        font-size: 1rem;
    }

    .galeri-resim {
        height: 200px;
    }


    /* Container genel düzenlemesi */
    .hizmet-container, .ozellik-container, .fiyat-container, .galeri-container {
        padding: 0 1rem;
    }

    /* Mobil menü padding mobilde 1rem */
    .nav-menu {
        padding: 30px;
        gap: 0px;
    }

    /* Mobil menü butonları mobilde görünür */
    .mobil-butonlar {
        display: block;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(226, 232, 240, 0.5);
        order: -1; /* Ana sayfa linkinin üstünde */
    }

    /* Footer mobil düzenlemesi */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-bolum h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer-bolum ul li {
        margin-bottom: 0.75rem;
    }

    .footer-bolum ul li a {
        font-size: 0.9rem;
    }
}

/* Blur geçiş efektleri */
.blur-gecis {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.blur-gecis.gorunur {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Loading animasyonu */
.yukleniyor {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.yukleniyor.gizli {
    opacity: 0;
    pointer-events: none;
}

.yukleme-animasyonu {
    width: 50px;
    height: 50px;
    border: 4px solid #e2e8f0;
    border-top: 4px solid #2563eb;
    border-radius: 50%;
    animation: don 1s linear infinite;
}

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

/* Sayfa İçerik Stilleri */
.sayfa-icerik {
    padding-top: 80px;
}

.sayfa-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    text-align: center;
}

.sayfa-hero-icerik {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sayfa-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.sayfa-hero p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

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

/* İletişim Sayfası Stilleri */
.iletisim-bolum {
    padding: 6rem 0;
    background: #fff;
}

.iletisim-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.iletisim-bilgileri h2,
.iletisim-formu h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.iletisim-bilgileri p,
.iletisim-formu p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.iletisim-kartlar {
    display: grid;
    gap: 1.5rem;
}

.iletisim-kart {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.iletisim-kart:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.iletisim-ikon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.iletisim-ikon i {
    font-size: 1.5rem;
    color: white;
}

.iletisim-icerik h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.iletisim-icerik p {
    color: #334155;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.iletisim-icerik span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Form Stilleri */
.mesaj-formu {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-grubu {
    margin-bottom: 1.5rem;
}

.form-grubu label {
    display: block;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
}

.form-grubu input,
.form-grubu select,
.form-grubu textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.form-grubu input:focus,
.form-grubu select:focus,
.form-grubu textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.checkbox-grubu {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-grubu input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.checkbox-grubu label {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.gonder-butonu {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    width: 100%;
    justify-content: center;
}

.gonder-butonu:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Harita Bölümü */
.harita-bolum {
    padding: 4rem 0;
    background: #f8fafc;
}

.harita-bolum h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 3rem;
}

.harita-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* SSS Bölümü */
.sss-bolum {
    padding: 6rem 0;
    background: #fff;
}

.sss-bolum h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 3rem;
}

.sss-liste {
    max-width: 800px;
    margin: 0 auto;
}

.sss-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.sss-soru {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.sss-soru:hover {
    background: rgba(37, 99, 235, 0.05);
}

.sss-soru h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.sss-soru i {
    color: #2563eb;
    transition: transform 0.3s ease;
}

.sss-cevap {
    display: none;
    padding: 0 1.5rem 1.5rem;
}

.sss-cevap p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Footer Ek Stilleri */
.sosyal-medya {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.sosyal-medya a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sosyal-medya a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Gizlilik Sayfası Stilleri */
.gizlilik-icerik {
    padding: 4rem 0;
    background: #f8fafc;
}

.gizlilik-metin {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    line-height: 1.7;
}

.gizlilik-metin h2 {
    color: #1e293b;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 2.5rem 0 1.3rem 0;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 0.5rem;
}

.gizlilik-metin h2:first-child {
    margin-top: 0;
}

.gizlilik-metin h3 {
    color: #2563eb;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.8rem 0 0.8rem 0;
}

.gizlilik-metin p {
    color: #475569;
    margin-bottom: 1.1rem;
    text-align: justify;
}

.gizlilik-metin ul {
    color: #475569;
    margin-bottom: 1.1rem;
    padding-left: 1.5rem;
}

.gizlilik-metin li {
    margin-bottom: 0.4rem;
}

.gizlilik-metin strong {
    color: #1e293b;
    font-weight: 600;
}

/* Mobil Responsive - Gizlilik */
@media (max-width: 768px) {
    .gizlilik-metin {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .gizlilik-metin h2 {
        font-size: 1.5rem;
    }
    
    .gizlilik-metin h3 {
        font-size: 1.2rem;
    }
}

/* KVKK Sayfası Stilleri */
.kvkk-icerik {
    padding: 4rem 0;
    background: #f8fafc;
}

.kvkk-metin {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    line-height: 1.7;
}

.kvkk-metin h2 {
    color: #1e293b;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 2.5rem 0 1.3rem 0;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 0.5rem;
}

.kvkk-metin h2:first-child {
    margin-top: 0;
}

.kvkk-metin h3 {
    color: #2563eb;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.8rem 0 0.8rem 0;
}

.kvkk-metin p {
    color: #475569;
    margin-bottom: 1.1rem;
    text-align: justify;
}

.kvkk-metin ul {
    color: #475569;
    margin-bottom: 1.1rem;
    padding-left: 1.5rem;
}

.kvkk-metin li {
    margin-bottom: 0.4rem;
}

.kvkk-metin strong {
    color: #1e293b;
    font-weight: 600;
}

/* Mobil Responsive - KVKK */
@media (max-width: 768px) {
    .kvkk-metin {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .kvkk-metin h2 {
        font-size: 1.5rem;
    }
    
    .kvkk-metin h3 {
        font-size: 1.2rem;
    }
}

/* İletişim Sayfası Stilleri */
.iletisim-hero {
    padding: 4rem 0;
    background: #2563eb;
    color: white;
    text-align: center;
}

.iletisim-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.iletisim-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.iletisim-bilgi {
    padding: 4rem 0;
    background: #f8fafc;
}

.iletisim-duo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.iletisim-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.iletisim-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.item-icon {
    width: 60px;
    height: 60px;
    background: #2563eb;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.item-icon i {
    font-size: 1.5rem;
    color: white;
}

.item-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.item-content p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 0.3rem;
}

.item-content span {
    font-size: 0.9rem;
    color: #64748b;
}

.adres-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.adres-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.adres-item .item-icon {
    width: 60px;
    height: 60px;
    background: #2563eb;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.adres-item .item-icon i {
    font-size: 1.5rem;
    color: white;
}

.adres-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.adres-item p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
}

.harita-section {
    padding: 4rem 0;
    background: white;
}

.harita-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
}

.harita-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.harita-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Mobil Responsive - İletişim */
@media (max-width: 768px) {
    .iletisim-hero h1 {
        font-size: 2rem;
    }
    
    .iletisim-duo {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .iletisim-item,
    .adres-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
}

/* Blog Sayfası Stilleri */
.blog-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
}

.blog-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.blog-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.blog-banner {
    padding: 4rem 0;
    background: #f8fafc;
}

.banner-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.banner-baslik {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.banner-image {
    position: relative;
    overflow: hidden;
}

.banner-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
}

.kategori-badge {
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.banner-content {
    padding: 2rem;
}

.banner-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.banner-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

.banner-kutu {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.kutu-makale {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.kutu-makale:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.kutu-makale img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.kutu-content {
    padding: 1.5rem;
}

.mikro-kategori {
    background: #f1f5f9;
    color: #64748b;
    padding: 0.3rem 0.8rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: inline-block;
}

.kutu-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.kutu-tarih {
    color: #94a3b8;
    font-size: 0.8rem;
}

.blog-icerik {
    padding: 4rem 0;
    background: white;
}

.icerik-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.blog-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
}

.kategori-filtre {
    display: flex;
    gap: 1rem;
}

.kategori-filtre span {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f1f5f9;
    color: #64748b;
}

.aktif-kategori {
    background: #2563eb !important;
    color: white !important;
}

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

.makale-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.makale-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.makale-image {
    position: relative;
    overflow: hidden;
}

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

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

.makale-kategori {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(37, 99, 235, 0.9);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.makale-content {
    padding: 1.5rem;
}

.makale-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.makale-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.makale-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.makale-meta .yazar {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #64748b;
    font-size: 0.85rem;
}

.makale-meta .tarih,
.makale-meta .okuma {
    color: #94a3b8;
    font-size: 0.85rem;
}

.sayfa-navigasyon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.sayfa-navigasyon a {
    padding: 0.8rem 1.5rem;
    background: #f1f5f9;
    color: #64748b;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sayfa-navigasyon a:hover {
    background: #2563eb;
    color: white;
}

.sayfa-numaralar {
    display: flex;
    gap: 0.5rem;
}

.sayfa-numaralar a,
.aktif-sayfa {
    padding: 0.8rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.sayfa-numaralar a {
    background: #f1f5f9;
    color: #64748b;
}

.aktif-sayfa {
    background: #2563eb;
    color: white;
}

/* Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.arama-kutusu {
    position: relative;
}

.arama-kutusu input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.arama-kutusu input:focus {
    border-color: #2563eb;
}

.arama-kutusu button {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arama-kutusu button:hover {
    background: #1d4ed8;
}

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

.kategori-liste li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.kategori-liste li:last-child {
    border-bottom: none;
}

.kategori-liste a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.kategori-liste a:hover {
    color: #2563eb;
}

.kategori-liste span {
    background: #f1f5f9;
    color: #64748b;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.8rem;
}

.populer-yazi {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.populer-yazi img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.populer-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.populer-content span {
    color: #94a3b8;
    font-size: 0.8rem;
}

.etiket-bulutu {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.etiket {
    padding: 0.4rem 0.8rem;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.etiket:hover {
    background: #2563eb;
    color: white;
}

/* Mobil Responsive - Blog */
@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2.5rem;
    }
    
    .banner-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .kategori-filtre {
        flex-wrap: wrap;
    }
    
    .makale-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .icerik-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sayfa-navigasyon {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}

/* Blog Detay Sayfası Stilleri */
.breadcrumb {
    padding: 1rem 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #1d4ed8;
}

.breadcrumb-nav span {
    color: #94a3b8;
}

.blog-detay {
    padding: 2rem 0;
    background: white;
}

.detay-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.blog-makale {
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

.makale-header {
    padding: 2rem 2rem 1rem;
}

.makale-kategori {
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.makale-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.makale-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 1.5rem;
}

.yazar-bilgi {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.yazar-detay .yazar-ad {
    display: block;
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
}

.yazar-detay .yazar-unvan {
    display: block;
    color: #64748b;
    font-size: 0.85rem;
}

.makale-tarih,
.makale-okuma {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

.makale-paylasim {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #f1f5f9;
}

.makale-paylasim > span {
    color: #64748b;
    font-weight: 600;
    font-size: 0.9rem;
}

.paylas-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

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

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

.paylas-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.makale-hero-image {
    margin-bottom: 2rem;
}

.makale-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.makale-icerik {
    padding: 0 2rem 2rem;
    line-height: 1.7;
}

.ozet {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #2563eb;
    font-size: 1.1rem;
    color: #475569;
    font-style: italic;
    margin-bottom: 2rem;
}

.makale-icerik h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin: 2rem 0 1rem;
}

.makale-icerik h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2563eb;
    margin: 1.5rem 0 0.8rem;
}

.makale-icerik p {
    color: #475569;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.alinti {
    background: #f1f5f9;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #10b981;
    margin: 2rem 0;
    position: relative;
}

.alinti p {
    font-size: 1.1rem;
    font-style: italic;
    color: #334155;
    margin-bottom: 0.8rem;
}

.alinti cite {
    display: block;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 600;
}

.ozellik-liste {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.ozellik-liste li {
    margin-bottom: 0.8rem;
    color: #475569;
    padding-left: 0.5rem;
}

.ozellik-liste strong {
    color: #1e293b;
}




.makale-etiketler {
    padding: 1.5rem 0;
    border-top: 1px solid #e2e8f0;
    margin-top: 2rem;
}

.makale-etiketler > span {
    color: #64748b;
    font-weight: 600;
    margin-right: 1rem;
}

.makale-etiketler .etiket {
    display: inline-block;
    background: #f1f5f9;
    color: #64748b;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.makale-etiketler .etiket:hover {
    background: #2563eb;
    color: white;
}


.ilgili-yazi {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.ilgili-yazi:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.ilgili-yazi img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.ilgili-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.ilgili-content span {
    color: #94a3b8;
    font-size: 0.8rem;
}


.makale-navigasyon {
    padding: 3rem 0;
    background: #f8fafc;
}

.nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.nav-item a {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.nav-item:hover a {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
}

.nav-content span {
    display: block;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.nav-content h4 {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.nav-item.sonraki a {
    flex-direction: row-reverse;
}

.nav-item.sonraki .nav-icon {
    background: #10b981;
}

/* Mobil Responsive - Blog Detay */
@media (max-width: 768px) {
    .detay-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .makale-header {
        padding: 1.5rem;
    }
    
    .makale-header h1 {
        font-size: 2rem;
    }
    
    .makale-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .makale-icerik {
        padding: 0 1.5rem 1.5rem;
    }
    
    
    .nav-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Ekran Görüntüleri Sayfası Stilleri */

.galeri-screenshots {
    padding: 4rem 0;
}

.galeri-kategori {
    margin-bottom: 4rem;
}

.kategori-header {
    text-align: center;
    margin-bottom: 3rem;
}

.kategori-header h3 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.kategori-header h3 i {
    color: #2563eb;
}

.kategori-header p {
    color: #64748b;
    font-size: 1.1rem;
}

.galeri-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.galeri-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
}

.galeri-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.galeri-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.galeri-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.9);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.galeri-item:hover .galeri-overlay {
    opacity: 1;
}

.galeri-overlay i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.galeri-overlay span {
    font-weight: 600;
    font-size: 0.9rem;
}

.video-tanitim {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}

.tanitim-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.tanitim-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.video-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: rgba(255, 255, 255, 0.2);
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.video-placeholder span {
    font-size: 1.1rem;
    font-weight: 600;
}

.demo-talep {
    padding:<｜tool▁calls▁end｜>4rem 0;
    background: #f8fafc;
}

.demo-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.demo-content h2 {
    font-size: 2.2rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.demo-content p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.demo-butonlar {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.demo-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.demo-btn.ana {
    background: #2563eb;
    color: white;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.demo-btn.ana:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.demo-btn.ikincil {
    background: white;
    color: #2563eb;
    border: 2px solid #e2e8f0;
}

.demo-btn.ikincil:hover {
    border-color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Mobil Responsive - Ekran Görüntüleri */
@media (max-width: 768px) {
    
    .galeri-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .galeri-item img {
        height: 250px;
    }
    
    .tanitim-content h2 {
        font-size: 2rem;
    }
    
    .demo-butonlar {
        flex-direction: column;
        align-items: center;
    }
    
    .demo-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Dokümantasyon Sayfası Stilleri */
.downloads-section {
    padding: 4rem 0;
    background: white;
}

.downloads-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.download-item {
    background: white;
    border: 2px solid #f1f5f9;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.download-item:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.1);
    transform: translateY(-5px);
}

.download-icon {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    width: 80px;
    height: 80px;
;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.download-content {
    flex: 1;
}

.download-content h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.download-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.download-meta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.file-size {
    background: #f1f5f9;
    color: #64748b;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.file-version {
    background: #dcfce7;
    color: #166534;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.download-action {
    flex-shrink: 0;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.download-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.docs-guide {
    padding: 4rem 0;
    background: #f8fafc;
}

.guide-header {
    text-align: center;
    margin-bottom: 3rem;
}

.guide-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.guide-header p {
    color: #64748b;
    font-size: 1.2rem;
}

.guide-items {
    max-width: 800px;
    margin: 0 auto;
}

.guide-item {
    background: white;
    border: 2px solid #f1f5f9;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.guide-item:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.1);
    transform: translateY(-5px);
}

.guide-icon {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    width: 60px;
    height: 60px;
 perfectly border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.guide-content {
    flex: 1;
}

.guide-content h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.guide-content p {
    color: #64748b;
    margin: 0;
}

.guide-action {
    color: #2563eb;
    font-size: 1.2rem;
}

.tech-support {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
}

.support-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.support-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

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

.support-contacts {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.support-contact {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.support-contact:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

/* Mobil Responsive - Dokümantasyon */
@media (max-width: 768px) {
    .download-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .download-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .download-btn {
        width: 100%;
        justify-content: center;
    }
    
    .guide-item {
        flex-direction: column;
        text-align: center;
    }
    
    .guide-icon {
        align-self: center;
    }
    
    .support-contacts {
        flex-direction: column;
        align-items: center;
    }
    
    .support-contact {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* SSS Sayfası Stilleri */
.sss-arama {
    padding: 2rem 0;
    background: #f8fafc;
}

.arama-kutusu {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.arama-kutusu input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
}

.arama-kutusu input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.arama-kutusu button {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: #2563eb;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arama-kutusu button:hover {
    background: #1d4ed8;
}

.sss-kategoriler {
    padding: 2rem 0;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

.kategori-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.kategori-btn {
    background: white;
    border: 2px solid #e2e8f0;
    color: #64748b;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kategori-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
    transform: translateY(-2px);
}

.kategori-btn.aktif {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
}

.sss-icerik {
    padding: 4rem 0;
}

.sss-grid {
    max-width: 800px;
    margin: 0 auto;
}

.sss-kategori-bolum {
    margin-bottom: 3rem;
}

.sss-kategori-bolum h2 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

.sss-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sss-item:hover {
    border-color: #2563eb;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1);
}

.sss-item.acik {
    border-color: #2563eb;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1);
}

.sss-soru {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.sss-soru span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

.sss-soru i {
    color: #2563eb;
    transition: transform 0.3s ease;
}

.sss-soru i.rotate {
    transform: rotate(180deg);
}

.sss-cevap {
    display: none;
    padding: 0 1.5rem 1.5rem;
}

.sss-cevap p {
    color: #475569;
    line-height: 1.7;
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.sss-item.highlight {
    background: #f8fafc;
    border-color: #2563eb;
}

.sss-iletisim {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}

.iletisim-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.iletisim-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

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

.iletisim-butonlar {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.iletisim-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 180px;
    justify-content: center;
}

.iletisim-btn.ana {
    background: white;
    color: #2563eb;
}

.iletisim-btn.ana:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.iletisim-btn.ikincil {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.iletisim-btn.ikincil:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Mobil Responsive - SSS */
@media (max-width: 768px) {
    .kategori-nav {
        gap: 0.5rem;
    }
    
    .kategori-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .sss-soru {
        padding: 1rem;
    }
    
    .sss-soru span {
        font-size: 1rem;
    }
    
    .sss-cevap {
        padding: 0 1rem 1rem;
    }
    
    .iletisim-butonlar {
        flex-direction: column;
        align-items: center;
    }
    
    .iletisim-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .sayfa-icerik {
        padding-top: 80px;
    }

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

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

    .iletisim-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .iletisim-bilgileri h2,
    .iletisim-formu h2 {
        font-size: 2rem;
    }

    .iletisim-kart {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .iletisim-ikon {
        margin-bottom: 1rem;
    }

    .mesaj-formu {
        padding: 2rem;
    }

    .harita-bolum h2,
    .sss-bolum h2 {
        font-size: 2rem;
    }
}

/* Hakkımızda Sayfası Stilleri */
.misyon-vizyon {
    padding: 6rem 0;
    background: #f8fafc;
}

.misyon-vizyon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.misyon-kart,
.vizyon-kart {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

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

.kart-ikon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.kart-ikon i {
    font-size: 2rem;
    color: white;
}

.misyon-kart h2,
.vizyon-kart h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.misyon-kart p,
.vizyon-kart p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Hikayemiz Bölümü */
.hikayemiz-bolum {
    padding: 6rem 0;
    background: #fff;
}

.hikayemiz-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hikayemiz-metin h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 2rem;
}

.hikayemiz-metin p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.hikayemiz-liste {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.hikayemiz-liste li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #334155;
    font-size: 1.1rem;
}

.hikayemiz-liste i {
    color: #10b981;
    font-size: 1.2rem;
    width: 20px;
}

.hikayemiz-gorsel {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Değerler Bölümü */
.degerler-bolum {
    padding: 6rem 0;
    background: #f8fafc;
}

.degerler-bolum h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.degerler-aciklama {
    text-align: center;
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.degerler-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.deger-kart {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.deger-kart:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.deger-ikon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.deger-ikon i {
    font-size: 1.8rem;
    color: white;
}

.deger-kart h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.deger-kart p {
    color: #64748b;
    line-height: 1.6;
}


/* İstatistikler Bölümü */
.istatistikler-bolum {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}

.istatistikler-bolum h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

.istatistik-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.istatistik-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.istatistik-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.istatistik-ikon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.istatistik-ikon i {
    font-size: 1.5rem;
    color: white;
}

.istatistik-sayi {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: block;
}

.istatistik-label {
    font-size: 1.1rem;
    opacity: 0.9;
}


/* Mobil Responsive - Hakkımızda */
@media (max-width: 768px) {
    .misyon-vizyon-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hikayemiz-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }


    .degerler-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }


    .istatistik-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

}

/* Hizmetler Sayfası Stilleri */
.hizmet-kategorileri {
    padding: 6rem 0;
    background: #f8fafc;
}

.hizmet-kategorileri h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.kategoriler-aciklama {
    text-align: center;
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.kategoriler-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.kategori-kart {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.kategori-kart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.kategori-kart:hover::before {
    transform: scaleX(1);
}

.kategori-ikon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.kategori-ikon.hover {
    transform: scale(1.1) rotate(5deg);
}

.kategori-ikon i {
    font-size: 2rem;
    color: white;
}

.kategori-kart h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.kategori-kart > p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.kategori-ozellikler {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.kategori-ozellikler li {
    color: #334155;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.kategori-ozellikler li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.kategori-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.kategori-link:hover {
    color: #1d4ed8;
    transform: translateX(5px);
}

.kategori-link i {
    transition: transform 0.3s ease;
}

.kategori-link:hover i {
    transform: translateX(3px);
}

/* Platform Özellikleri */
.platform-ozellikleri {
    padding: 6rem 0;
    background: #fff;
}

.platform-ozellikleri h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.ozellikler-aciklama {
    text-align: center;
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.ozellikler-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.ozellik-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.ozellik-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.ozellik-ikon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ozellik-ikon i {
    font-size: 1.5rem;
    color: white;
}

.ozellik-icerik h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.ozellik-icerik p {
    color: #64748b;
    line-height: 1.6;
}

/* İş Akışı */
.is-akisi {
    padding: 6rem 0;
    background: #f8fafc;
}

.is-akisi h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.akisi-aciklama {
    text-align: center;
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.akisi-adimlar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.akisi-adimlar::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    z-index: 1;
}

.adim-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.adim-numara {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 1rem;
    position: relative;
}

.adim-numara::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    z-index: -1;
}

.adim-item:last-child .adim-numara::after {
    display: none;
}

.adim-ikon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.adim-ikon i {
    font-size: 1.5rem;
    color: #2563eb;
}

.adim-icerik h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.adim-icerik p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Entegrasyonlar */
.entegrasyonlar {
    padding: 6rem 0;
    background: #fff;
}

.entegrasyonlar h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.entegrasyon-aciklama {
    text-align: center;
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.entegrasyon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.entegrasyon-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.entegrasyon-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.entegrasyon-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.entegrasyon-logo i {
    font-size: 1.5rem;
    color: white;
}

.entegrasyon-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.entegrasyon-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Demo Talep */
.demo-talep {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}

.demo-icerik {
    text-align: center;
}

.demo-icerik h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

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

.demo-butonlar {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.demo-buton {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.demo-buton.birincil {
    background: white;
    color: #2563eb;
}

.demo-buton.birincil:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.demo-buton.ikincil {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.demo-buton.ikincil:hover {
    background: white;
    color: #2563eb;
    transform: translateY(-3px);
}

/* Dökümantasyon Sayfası Stilleri */
.dokumantasyon-kategoriler {
    padding: 6rem 0;
    background: #f8fafc;
}

.dokumantasyon-kategoriler h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

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

.populer-konular {
    padding: 6rem 0;
    background: white;
}

.populer-konular h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 3rem;
}

.konu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.konu-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.konu-baslik {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.konu-baslik i {
    font-size: 1.5rem;
    color: #2563eb;
}

.konu-baslik h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.konu-item p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.konu-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.konu-link:hover {
    color: #1d4ed8;
    transform: translateX(5px);
}

.konu-link i {
    transition: transform 0.3s ease;
}

.konu-link:hover i {
    transform: translateX(3px);
}

.video-egitimler {
    padding: 6rem 0;
    background: #f8fafc;
}

.video-egitimler h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-aciklama {
    text-align: center;
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.video-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.video-thumbnail {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.video-thumbnail i {
    font-size: 3rem;
    color: white;
    z-index: 2;
}

.video-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.video-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.video-item p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.video-duration {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.destek-bolum {
    padding: 6rem 0;
    background: white;
}

.destek-bolum h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 3rem;
}

.destek-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.destek-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

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

.destek-ikon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.destek-item:hover .destek-ikon {
    transform: scale(1.1) rotate(5deg);
}

.destek-ikon i {
    font-size: 2rem;
    color: white;
}

.destek-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.destek-item p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.destek-formu {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 3rem;
}

.destek-formu h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
}

.destek-formu .form-grubu {
    margin-bottom: 1.5rem;
}

.destek-formu label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.destek-formu input,
.destek-formu textarea,
.destek-formu select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.destek-formu input:focus,
.destek-formu textarea:focus,
.destek-formu select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.destek-formu textarea {
    resize: vertical;
    min-height: 120px;
}

.destek-formu button {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.destek-formu button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Mobil Responsive - Dökümantasyon */
@media (max-width: 768px) {
    .kategori-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .konu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .destek-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .dokumantasyon-kategoriler h2,
    .populer-konular h2,
    .video-egitimler h2,
    .destek-bolum h2 {
        font-size: 2rem;
    }
}

/* Mobil Responsive - Hizmetler */
@media (max-width: 768px) {
    .kategoriler-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ozellikler-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .akisi-adimlar {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .akisi-adimlar::before {
        display: none;
    }

    .adim-numara::after {
        display: none;
    }

    .entegrasyon-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .demo-butonlar {
        flex-direction: column;
        align-items: center;
    }

    .demo-buton {
        width: 100%;
        max-width: 300px;
    }
}

/* Fiyatlar Sayfası Stilleri */
.fiyat-planlari {
    padding: 6rem 0;
    background: #f8fafc;
}

.fiyat-planlari h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.fiyat-aciklama {
    text-align: center;
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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







.fiyat-aciklama-kart {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.fiyat-ozellikler {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.fiyat-ozellikler li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #334155;
    font-size: 1rem;
}

.fiyat-ozellikler li i {
    color: #10b981;
    font-size: 1.1rem;
    width: 20px;
}

.fiyat-buton {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.fiyat-buton:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.3);
}

/* Karşılaştırma Tablosu */
.karsilastirma-tablosu {
    padding: 6rem 0;
    background: #fff;
}

.karsilastirma-tablosu h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.karsilastirma-aciklama {
    text-align: center;
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.karsilastirma-container {
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.karsilastirma-tablo {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 800px;
}

.karsilastirma-tablo th,
.karsilastirma-tablo td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.karsilastirma-tablo th {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.karsilastirma-tablo th:first-child {
    text-align: left;
}

.karsilastirma-tablo td:first-child {
    text-align: left;
    font-weight: 600;
    color: #1e293b;
}

.karsilastirma-tablo tbody tr:hover {
    background: #f8fafc;
}

.karsilastirma-tablo i {
    font-size: 1.2rem;
}

.karsilastirma-tablo .fa-check {
    color: #10b981;
}

.karsilastirma-tablo .fa-times {
    color: #ef4444;
}

/* Fiyat SSS */
.fiyat-sss {
    padding: 6rem 0;
    background: #f8fafc;
}

.fiyat-sss h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 3rem;
}

/* CTA Bölümü */
.cta-bolum {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.cta-baslik h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

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

.cta-buton {
    display: inline-block;
    background: white;
    color: #2563eb;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-buton:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: #f8fafc;
}



/* Mobil Responsive - Fiyatlar */
@media (max-width: 768px) {
    .fiyat-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .fiyat-karti.onerilen {
        transform: none;
    }

    .fiyat-karti.onerilen:hover {
        transform: translateY(-10px);
    }

    .tutar {
        font-size: 2.5rem;
    }

    .karsilastirma-tablo th,
    .karsilastirma-tablo td {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }

}

/* Özellikler Sayfası Stilleri */
.ana-ozellikler {
    padding: 6rem 0;
    background: #f8fafc;
}

.ana-ozellikler h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.ozellik-aciklama {
    text-align: center;
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.ozellik-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.ozellik-karti {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.ozellik-karti::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.ozellik-karti:hover::before {
    transform: scaleX(1);
}

.ozellik-ikon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.ozellik-ikon.hover {
    transform: scale(1.1) rotate(5deg);
}

.ozellik-ikon i {
    font-size: 2rem;
    color: white;
}

.ozellik-karti h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.ozellik-karti > p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.ozellik-detay li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #334155;
    font-size: 0.95rem;
}

.ozellik-detay li i {
    color: #10b981;
    font-size: 1rem;
    width: 16px;
}

/* Gelişmiş Özellikler */
.gelismis-ozellikler {
    padding: 6rem 0;
    background: #fff;
}

.gelismis-ozellikler h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.gelismis-aciklama {
    text-align: center;
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.gelismis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.gelismis-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.gelismis-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.gelismis-ikon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gelismis-ikon i {
    font-size: 1.8rem;
    color: white;
}

.gelismis-icerik h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.gelismis-icerik p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.gelismis-icerik ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gelismis-icerik ul li {
    color: #334155;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    padding-left: 1.25rem;
    position: relative;
}

.gelismis-icerik ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* Özellik Entegrasyonlar */
.ozellik-entegrasyonlar {
    padding: 6rem 0;
    background: #f8fafc;
}

.ozellik-entegrasyonlar h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.entegrasyon-aciklama {
    text-align: center;
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.entegrasyon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.entegrasyon-kart {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

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

.entegrasyon-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.entegrasyon-logo i {
    font-size: 2rem;
    color: white;
}

.entegrasyon-kart h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.entegrasyon-kart p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Özellik Demo */
.ozellik-demo {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}

.demo-icerik {
    text-align: center;
}

.demo-icerik h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

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

.demo-butonlar {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.demo-buton {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.demo-buton.birincil {
    background: white;
    color: #2563eb;
}

.demo-buton.birincil:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.demo-buton.ikincil {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.demo-buton.ikincil:hover {
    background: white;
    color: #2563eb;
    transform: translateY(-3px);
}

/* Mobil Responsive - Özellikler */
@media (max-width: 768px) {
    .ozellik-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gelismis-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .entegrasyon-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .demo-butonlar {
        flex-direction: column;
        align-items: center;
    }

    .demo-buton {
        width: 100%;
        max-width: 300px;
    }
}

/* Giriş Sayfası Stilleri */
.giris-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.giris-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.giris-icerik {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.giris-metin h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.giris-metin p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
}

.giris-form-container {
    display: flex;
    justify-content: center;
}

.giris-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
}

.form-baslik {
    text-align: center;
    margin-bottom: 2rem;
}

.form-baslik h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.form-baslik p {
    color: #64748b;
    font-size: 1rem;
}

.form-grubu {
    margin-bottom: 1.5rem;
}

.form-grubu label {
    display: block;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.input-grubu {
    position: relative;
    display: flex;
    align-items: center;
}

.input-grubu i {
    position: absolute;
    left: 1rem;
    color: #64748b;
    z-index: 1;
}

.input-grubu input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.input-grubu input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.sifre-goster {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: color 0.3s ease;
}

.sifre-goster:hover {
    color: #2563eb;
}

.form-ekstra {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #334155;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #2563eb;
}

.sifre-unuttum {
    color: #2563eb;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sifre-unuttum:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.giris-buton {
    width: 100%;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.giris-buton:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.form-alt {
    text-align: center;
    margin-bottom: 2rem;
}

.form-alt p {
    color: #64748b;
    font-size: 0.95rem;
}

.uye-ol-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.uye-ol-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.sosyal-giris {
    margin-top: 2rem;
}

.ayirici {
    text-align: center;
    position: relative;
    margin: 2rem 0;
}

.ayirici::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
}

.ayirici span {
    background: rgba(255, 255, 255, 0.9);
    padding: 0 1rem;
    color: #64748b;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.sosyal-butonlar {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sosyal-buton {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: white;
    color: #334155;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.sosyal-buton:hover {
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sosyal-buton.google:hover {
    border-color: #db4437;
    color: #db4437;
}

.sosyal-buton.microsoft:hover {
    border-color: #00a4ef;
    color: #00a4ef;
}

.sosyal-buton i {
    font-size: 1.2rem;
}

/* Giriş Özellikler */
.giris-ozellikler {
    padding: 6rem 0;
    background: #fff;
}

.giris-ozellikler h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.ozellik-aciklama {
    text-align: center;
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* Aktif buton stili */
.giris-butonu.aktif {
    background: #2563eb !important;
    color: #ffffff !important;
    border: 2px solid #2563eb !important;
}

/* Mobil Responsive - Giriş */
@media (max-width: 768px) {
    .giris-icerik {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .giris-metin {
        text-align: center;
    }

    .giris-metin h1 {
        font-size: 2.2rem;
    }

    .giris-form {
        padding: 2rem;
    }

    .form-baslik h2 {
        font-size: 1.5rem;
    }

    .form-ekstra {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

/* Üye Ol Sayfası Stilleri */
.uye-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.uye-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.uye-icerik {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.uye-metin h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.uye-metin p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.avantajlar {
    display: grid;
    gap: 1rem;
}

.avantaj-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #334155;
    font-size: 1rem;
}

.avantaj-item i {
    color: #10b981;
    font-size: 1.2rem;
}

.uye-form-container {
    display: flex;
    justify-content: center;
}

.uye-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}

.form-baslik {
    text-align: center;
    margin-bottom: 2rem;
}

.form-baslik h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.form-baslik p {
    color: #64748b;
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-grubu {
    margin-bottom: 1.5rem;
}

.form-grubu label {
    display: block;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.input-grubu {
    position: relative;
    display: flex;
    align-items: center;
}

.input-grubu i {
    position: absolute;
    left: 1rem;
    color: #64748b;
    z-index: 1;
}

.input-grubu input,
.input-grubu select {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.input-grubu input:focus,
.input-grubu select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.sifre-goster {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: color 0.3s ease;
}

.sifre-goster:hover {
    color: #2563eb;
}

.sifre-gereksinimler {
    margin-top: 0.5rem;
}

.sifre-gereksinimler small {
    color: #64748b;
    font-size: 0.85rem;
}

.checkbox-grubu {
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #2563eb;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.sozlesme-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sozlesme-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.uye-buton {
    width: 100%;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.uye-buton:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.form-alt {
    text-align: center;
    margin-bottom: 2rem;
}

.form-alt p {
    color: #64748b;
    font-size: 0.95rem;
}

.giris-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.giris-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.sosyal-uye {
    margin-top: 2rem;
}

/* Plan Seçimi */
.plan-secimi {
    padding: 6rem 0;
    background: #fff;
}

.plan-secimi h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.plan-aciklama {
    text-align: center;
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.plan-kart {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.plan-kart:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.plan-kart.onerilen {
    border-color: #2563eb;
    transform: scale(1.05);
}

.plan-kart.onerilen:hover {
    transform: scale(1.05) translateY(-5px);
}

.onerilen-badge {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-baslik h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.plan-fiyat {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1.5rem;
}



.plan-ozellikler {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.plan-ozellikler li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #334155;
    font-size: 0.95rem;
}

.plan-ozellikler li i {
    color: #10b981;
    font-size: 1rem;
    width: 16px;
}

/* Aktif buton stili */
.uye-ol-butonu.aktif {
    background: #2563eb !important;
    color: #ffffff !important;
    border: 2px solid #2563eb !important;
}

/* Mobil Responsive - Üye Ol */
@media (max-width: 768px) {
    .uye-icerik {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .uye-metin {
        text-align: center;
    }

    .uye-metin h1 {
        font-size: 2.2rem;
    }

    .uye-form {
        padding: 2rem;
    }

    .form-baslik h2 {
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .plan-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .plan-kart.onerilen {
        transform: none;
    }

    .plan-kart.onerilen:hover {
        transform: translateY(-5px);
    }
}

/* Şifre Unuttum Sayfası Stilleri */
.sifre-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.sifre-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sifre-icerik {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sifre-metin h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.sifre-metin p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.sifre-adimlar {
    display: grid;
    gap: 1.5rem;
}

.adim-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.adim-numara {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.adim-icerik h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.adim-icerik p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

.sifre-form-container {
    display: flex;
    justify-content: center;
}

.sifre-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
}

.form-baslik {
    text-align: center;
    margin-bottom: 2rem;
}

.form-baslik h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.form-baslik p {
    color: #64748b;
    font-size: 1rem;
}

.form-grubu {
    margin-bottom: 2rem;
}

.form-grubu label {
    display: block;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.input-grubu {
    position: relative;
    display: flex;
    align-items: center;
}

.input-grubu i {
    position: absolute;
    left: 1rem;
    color: #64748b;
    z-index: 1;
}

.input-grubu input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.input-grubu input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.sifre-buton {
    width: 100%;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.sifre-buton:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.form-alt {
    text-align: center;
    margin-bottom: 2rem;
}

.form-alt p {
    color: #64748b;
    font-size: 0.95rem;
}

.giris-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.giris-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.guvenlik-not {
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.guvenlik-ikon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guvenlik-ikon i {
    color: white;
    font-size: 1.2rem;
}

.guvenlik-metin h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.guvenlik-metin p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Yardım Bölümü */
.yardim-bolum {
    padding: 6rem 0;
    background: #fff;
}

.yardim-bolum h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.yardim-aciklama {
    text-align: center;
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.yardim-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.yardim-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.yardim-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.yardim-ikon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.yardim-ikon i {
    font-size: 2rem;
    color: white;
}

.yardim-icerik h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.yardim-icerik p {
    color: #334155;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.yardim-icerik span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Siteye Dön Butonu */
.siteye-don-butonu {
    background: transparent;
    color: #2563eb !important;
    border: 2px solid #2563eb;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.siteye-don-butonu:hover {
    background: #2563eb;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* Mobil Responsive - Şifre Unuttum */
@media (max-width: 768px) {
    .sifre-icerik {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .sifre-metin {
        text-align: center;
    }

    .sifre-metin h1 {
        font-size: 2.2rem;
    }

    .sifre-form {
        padding: 2rem;
    }

    .form-baslik h2 {
        font-size: 1.5rem;
    }

    .yardim-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}


/* Ekran Görüntüleri Galerisi */
.ekran-goruntuleri {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.galeri-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.galeri-baslik {
    text-align: center;
    margin-bottom: 4rem;
}

.galeri-etiket {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.galeri-baslik h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.galeri-baslik p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.galeri-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.galeri-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.galeri-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.galeri-resim {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.galeri-resim a {
    display: block;
    width: 100%;
    height: 100%;
}

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

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

.galeri-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.galeri-item:hover .galeri-overlay {
    opacity: 1;
}

.galeri-overlay i {
    font-size: 2rem;
    color: white;
}

.galeri-icerik {
    padding: 1.5rem;
}

.galeri-icerik h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.galeri-icerik p {
    color: #64748b;
    line-height: 1.6;
}


/* Mobil İndirme Bölümü Stilleri */
.mobil-indirme {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.mobil-indirme-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.indirme-baslik {
    text-align: center;
}

.indirme-etiket {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.indirme-baslik h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.indirme-baslik p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.indirme-butonlar {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.indirme-butonu {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #000;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
}

.indirme-butonu:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.indirme-butonu.google-play {
    background: #000;
}

.indirme-butonu.app-store {
    background: #000;
}

.indirme-icon {
    font-size: 2rem;
}

.indirme-metin {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.indirme-kucuk {
    font-size: 0.8rem;
    opacity: 0.8;
}

.indirme-buyuk {
    font-size: 1.1rem;
    font-weight: 600;
}


/* Mobil Responsive - Galeri */
@media (max-width: 768px) {
    .galeri-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .galeri-baslik h2 {
        font-size: 2rem;
    }
    
    .galeri-resim {
        height: 200px;
    }

    /* Mobil indirme bölümü mobil düzenlemesi */
    .indirme-baslik h2 {
        font-size: 2rem;
    }

    .indirme-baslik p {
        font-size: 1rem;
    }

    .indirme-butonlar {
        flex-direction: column;
        align-items: center;
    }

    .indirme-butonu {
        width: 100%;
        max-width: 250px;
    }
}

