/* =====================================================
   PUBLIC SITE - PREMIUM STİL DOSYASI
   ===================================================== */

/* --- Animasyonlar --- */
@keyframes hareketliGradyan {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@keyframes parlama {
    0% {
        opacity: 0;
        transform: translateY(30px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes yuzmek {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

@keyframes donmek {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes nabiz {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.06)
    }
}

/* --- Reset & Genel --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    line-height: 1.7;
    background: #f8fafc;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.konteyner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Üst Bilgi Çubuğu --- */
.ust-bilgi-cubugu {
    background: linear-gradient(90deg, #020617, #0f172a);
    color: #94a3b8;
    font-size: 0.78rem;
    padding: 10px 0;
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(56, 189, 248, 0.1);
}

.ust-bilgi-icerik {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.ust-bilgi-sol span {
    margin-right: 24px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ust-bilgi-sol i {
    color: #38bdf8;
    font-size: 0.7rem;
}

.ust-bilgi-sag i {
    margin-right: 0;
}

.ust-bilgi-sag a {
    color: #64748b;
    margin-left: 8px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    transition: all 0.3s;
}

.ust-bilgi-sag a:hover {
    color: #fff;
    background: #3b82f6;
    transform: translateY(-2px);
}

/* --- Header --- */
.ana-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s;
}

.ana-header.kaydirilan {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.header-icerik {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-ikon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1d4ed8, #6366f1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
    transition: transform 0.3s;
}

.logo:hover .logo-ikon {
    transform: rotate(-6deg) scale(1.05);
}

.logo-metin {
    display: flex;
    flex-direction: column;
}

.logo-baslik {
    font-weight: 800;
    font-size: 1rem;
    color: #0f172a;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.logo-slogan {
    font-size: 0.7rem;
    color: #94a3b8;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* --- Navigasyon --- */
.nav-liste {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-liste>li>a {
    padding: 10px 13px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #475569;
    border-radius: 10px;
    transition: all 0.3s;
    position: relative;
    white-space: nowrap;
}

.nav-liste>li>a:hover {
    color: #1d4ed8;
    background: rgba(59, 130, 246, 0.06);
}

.nav-liste>li>a.aktif {
    color: #1d4ed8;
    background: rgba(59, 130, 246, 0.08);
    font-weight: 600;
}

.nav-liste>li>a.aktif::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #6366f1);
    border-radius: 3px;
}

.alt-menu-var {
    position: relative;
}

.alt-menu-var>a i {
    font-size: 0.6rem;
    margin-left: 5px;
    transition: transform 0.3s;
}

.alt-menu-var:hover>a i {
    transform: rotate(180deg);
}

.alt-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: -10px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    min-width: 240px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
    z-index: 100;
}

.alt-menu-var:hover .alt-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.alt-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    font-size: 0.85rem;
    color: #475569;
    border-radius: 10px;
    transition: all 0.2s;
}

.alt-menu li a:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.06), rgba(99, 102, 241, 0.06));
    color: #1d4ed8;
    padding-left: 20px;
}

/* --- Mobil Menü Butonu --- */
.mobil-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
}

.mobil-menu-btn span {
    width: 22px;
    height: 2px;
    background: #334155;
    border-radius: 2px;
    transition: all 0.3s;
}

/* --- Hero --- */
.hero-bolumu {
    background: linear-gradient(-45deg, #020617, #0f172a, #1e3a5f, #1d4ed8);
    background-size: 400% 400%;
    animation: hareketliGradyan 12s ease infinite;
    min-height: 650px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bolumu::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(99, 102, 241, 0.12) 0%, transparent 50%);
}

.hero-bolumu::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, transparent 70%);
    animation: donmek 30s linear infinite;
    border-radius: 50%;
}

.hero-slider {
    width: 100%;
    position: relative;
}

.hero-slayt {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 650px;
}

.hero-icerik {
    position: relative;
    z-index: 2;
    padding: 90px 0;
    width: 100%;
    text-align: center;
}

.hero-metin {
    max-width: 680px;
    margin: 0 auto;
    animation: parlama 1s ease-out;
}

.hero-ust-baslik {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #38bdf8;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 20px;
    padding: 8px 20px;
    background: rgba(56, 189, 248, 0.08);
    border-radius: 50px;
    border: 1px solid rgba(56, 189, 248, 0.15);
    backdrop-filter: blur(10px);
}

.hero-metin h1 {
    color: #fff;
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-metin h1 .vurgulu {
    background: linear-gradient(135deg, #38bdf8, #818cf8, #c084fc);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: hareketliGradyan 4s ease infinite;
}

.hero-metin p {
    color: rgba(203, 213, 225, 0.9);
    font-size: 1.12rem;
    margin-bottom: 36px;
    line-height: 1.8;
    max-width: 560px;
}

.hero-butonlar {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- Butonlar --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
    border: none;
    cursor: pointer;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-birincil {
    background: linear-gradient(135deg, #1d4ed8, #6366f1);
    color: #fff;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
}

.btn-birincil:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.45);
}

.btn-ikincil {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-ikincil:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-beyaz {
    background: #fff;
    color: #1d4ed8;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-beyaz:hover {
    background: #f0f9ff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.btn-seffaf {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-seffaf:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.btn-kucuk {
    padding: 9px 20px;
    font-size: 0.8rem;
    border-radius: 10px;
}

.btn-buyuk {
    padding: 16px 40px;
    font-size: 1rem;
}

.merkez-btn {
    text-align: center;
    margin-top: 48px;
}

/* --- Bölüm Başlık --- */
.bolum-ust-baslik {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6366f1;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.bolum-ust-baslik::before {
    content: '';
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #3b82f6);
    border-radius: 2px;
}

.bolum-ust-baslik.beyaz {
    color: #38bdf8;
}

.bolum-ust-baslik.beyaz::before {
    background: linear-gradient(90deg, #38bdf8, #818cf8);
}

.bolum-baslik {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.bolum-baslik.beyaz {
    color: #fff;
}

.bolum-aciklama {
    color: #64748b;
    font-size: 1.05rem;
    max-width: 600px;
    line-height: 1.8;
}

.bolum-baslik-alani {
    margin-bottom: 56px;
}

.bolum-baslik-alani.merkez {
    text-align: center;
}

.bolum-baslik-alani.merkez .bolum-ust-baslik {
    justify-content: center;
}

.bolum-baslik-alani.merkez .bolum-aciklama {
    margin: 0 auto;
}

/* --- İstatistikler --- */
.istatistikler-bolumu {
    padding: 0;
    background: transparent;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.istatistik-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.istatistik-kutu {
    text-align: center;
    padding: 10px 20px;
    position: relative;
}

.istatistik-kutu:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #e2e8f0, transparent);
}

.istatistik-ikon {
    font-size: 1.6rem;
    color: #6366f1;
    margin-bottom: 14px;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(59, 130, 246, 0.08));
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.istatistik-sayi {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1d4ed8, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.istatistik-etiket {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-top: 4px;
    font-weight: 500;
}

/* --- Hakkımızda Kısa --- */
.hakkimizda-kisa-bolum {
    padding: 100px 0;
}

.hakkimizda-kisa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.gorsel-cerceve {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #e0e7ff, #dbeafe);
    aspect-ratio: 4/3;
}

.gorsel-cerceve.buyuk {
    aspect-ratio: 3/2;
}

.gorsel-yer-tutucu {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    background: linear-gradient(135deg, #eef2ff, #dbeafe, #e0e7ff);
}

.gorsel-yer-tutucu i {
    font-size: 4rem;
    opacity: 0.35;
    margin-bottom: 12px;
    animation: yuzmek 4s ease-in-out infinite;
}

.gorsel-yer-tutucu span {
    font-size: 0.85rem;
    opacity: 0.45;
    font-weight: 500;
}

.deneyim-rozet {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, #1d4ed8, #6366f1);
    color: #fff;
    padding: 18px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.4);
    animation: nabiz 3s ease-in-out infinite;
}

.rozet-sayi {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
}

.rozet-metin {
    font-size: 0.72rem;
    opacity: 0.85;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hakkimizda-kisa-icerik p {
    color: #475569;
    margin-bottom: 18px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.ozellik-listesi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 28px 0;
}

.ozellik-ogesi {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #334155;
    font-weight: 500;
}

.ozellik-ogesi i {
    color: #22c55e;
    font-size: 0.9rem;
}

/* --- Hizmetler Grid --- */
.hizmetler-bolum,
.urunler-bolum,
.projeler-vitrin-bolum,
.blog-vitrin-bolum {
    padding: 100px 0;
}

.arka-plan-acik {
    background: linear-gradient(180deg, #f8fafc, #fff);
}

.arka-plan-koyu {
    background: linear-gradient(135deg, #020617, #0f172a, #1e3a5f);
    position: relative;
}

.arka-plan-koyu::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
}

.arka-plan-koyu>.konteyner {
    position: relative;
    z-index: 1;
}

.hizmetler-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.hizmet-kart {
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.45s cubic-bezier(.4, 0, .2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.hizmet-kart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #6366f1, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.hizmet-kart:hover::before {
    transform: scaleX(1);
}

.hizmet-kart:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.hizmet-ikon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(59, 130, 246, 0.08));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #6366f1;
    margin-bottom: 24px;
    transition: all 0.4s;
}

.hizmet-kart:hover .hizmet-ikon {
    background: linear-gradient(135deg, #1d4ed8, #6366f1);
    color: #fff;
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.hizmet-baslik {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
}

.hizmet-aciklama {
    color: #64748b;
    font-size: 0.88rem;
    margin-bottom: 18px;
    line-height: 1.7;
}

.hizmet-link {
    color: #6366f1;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hizmet-link i {
    transition: transform 0.3s;
}

.hizmet-link:hover i {
    transform: translateX(5px);
}

/* --- Ürünler Grid --- */
.urunler-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.urun-kart {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.45s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.urun-kart:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.urun-kart.detayli {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.urun-gorsel {
    background: linear-gradient(135deg, #eef2ff, #dbeafe);
    aspect-ratio: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.urun-gorsel-yer-tutucu {
    color: #94a3b8;
    font-size: 3rem;
}

.urun-kategori-rozet {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, #1d4ed8, #6366f1);
    color: #fff;
    padding: 5px 14px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.urun-bilgi {
    padding: 24px;
}

.urun-baslik {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.urun-aciklama {
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 14px;
    line-height: 1.6;
}

.urun-teknik {
    background: #f8fafc;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 14px;
}

.urun-teknik h4 {
    font-size: 0.8rem;
    color: #6366f1;
    margin-bottom: 6px;
}

.teknik-detay {
    font-size: 0.75rem;
    color: #475569;
    white-space: pre-line;
    font-family: inherit;
}

/* --- Neden Biz --- */
.neden-biz-bolum {
    padding: 100px 0;
}

.neden-biz-icerik {
    max-width: 700px;
}

.neden-listesi {
    margin-top: 36px;
}

.neden-ogesi {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.neden-numara {
    min-width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(59, 130, 246, 0.2));
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.neden-ogesi h4 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.neden-ogesi p {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.7;
}

/* --- Projeler Grid --- */
.projeler-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.projeler-grid.detayli {
    grid-template-columns: repeat(2, 1fr);
}

.proje-kart {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.45s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.proje-kart:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.proje-gorsel {
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    aspect-ratio: 16/10;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.proje-gorsel-yer-tutucu {
    color: rgba(255, 255, 255, 0.15);
    font-size: 3rem;
}

.proje-katman {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
}

.proje-katman h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.proje-katman p {
    font-size: 0.8rem;
    opacity: 0.8;
}

.proje-bilgi {
    padding: 24px;
}

.proje-bilgi p {
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 12px;
    line-height: 1.7;
}

.proje-musteri {
    font-size: 0.8rem;
    color: #6366f1;
    font-weight: 600;
}

.proje-detaylar {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.proje-detaylar span {
    font-size: 0.8rem;
    color: #64748b;
}

.proje-tarih {
    font-size: 0.8rem;
}

/* --- Blog Grid --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-kart {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.45s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.blog-kart:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.blog-gorsel {
    background: linear-gradient(135deg, #eef2ff, #dbeafe);
    aspect-ratio: 16/9;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-gorsel-yer-tutucu {
    color: #6366f1;
    font-size: 2.5rem;
    opacity: 0.25;
}

.blog-tarih-rozet {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, #1d4ed8, #6366f1);
    color: #fff;
    padding: 10px 14px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}

.blog-tarih-rozet .gun {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
}

.blog-tarih-rozet .ay {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
}

.blog-bilgi {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 14px;
    margin-bottom: 12px;
}

.blog-meta span {
    font-size: 0.75rem;
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-baslik {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a;
}

.blog-ozet {
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 14px;
    line-height: 1.7;
}

.blog-devam-link {
    color: #6366f1;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-devam-link:hover {
    gap: 10px;
}

.blog-etiketler {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.etiket {
    background: rgba(99, 102, 241, 0.06);
    color: #6366f1;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 500;
}

.blog-alt {
    margin-top: 10px;
}

.blog-sayfa-bolum,
.mevzuat-bolum,
.sirkuler-bolum,
.videolar-bolum,
.iletisim-bolum,
.urunler-sayfa-bolum,
.projeler-sayfa-bolum,
.hakkimizda-bolum,
.hizmetler-detay-bolum {
    padding: 80px 0;
}

/* --- CTA --- */
.cta-bolum {
    background: linear-gradient(135deg, #1d4ed8, #6366f1, #8b5cf6);
    background-size: 200% 200%;
    animation: hareketliGradyan 6s ease infinite;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-bolum::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
}

.cta-icerik {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-icerik h2 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.cta-icerik p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.08rem;
    margin-bottom: 32px;
}

.cta-butonlar {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- Sayfa Başlık Alanı --- */
.sayfa-baslik-alan {
    background: linear-gradient(135deg, #020617, #0f172a, #1e3a5f);
    padding: 70px 0 60px;
    position: relative;
    overflow: hidden;
}

.sayfa-baslik-alan::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
}

.sayfa-baslik-alan h1 {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    letter-spacing: -0.5px;
}

.ekmek-kirinti {
    display: flex;
    gap: 8px;
    align-items: center;
    position: relative;
}

.ekmek-kirinti a {
    color: #94a3b8;
    font-size: 0.85rem;
}

.ekmek-kirinti a:hover {
    color: #38bdf8;
}

.ekmek-kirinti span {
    color: #475569;
    font-size: 0.85rem;
}

/* --- Filtre Bar --- */
.filtre-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    justify-content: center;
}

.filtre-btn {
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 0.84rem;
    font-weight: 500;
    color: #475569;
    background: #fff;
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.filtre-btn:hover,
.filtre-btn.aktif {
    background: linear-gradient(135deg, #1d4ed8, #6366f1);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}

/* --- Boş Sonuç --- */
.bos-sonuc {
    text-align: center;
    padding: 80px 20px;
    color: #94a3b8;
}

.bos-sonuc i {
    font-size: 3.5rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

/* --- Mevzuat --- */
.mevzuat-liste {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mevzuat-kart {
    display: flex;
    gap: 24px;
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.35s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.mevzuat-kart:hover {
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.08);
    transform: translateX(4px);
}

.mevzuat-tarih {
    min-width: 68px;
    text-align: center;
}

.mevzuat-tarih .gun {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1d4ed8, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mevzuat-tarih .ay-yil {
    font-size: 0.75rem;
    color: #94a3b8;
}

.mevzuat-baslik-satir {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.mevzuat-baslik-satir h3 {
    font-size: 1.05rem;
}

.mevzuat-kategori {
    background: rgba(99, 102, 241, 0.06);
    color: #6366f1;
    padding: 3px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
}

.mevzuat-icerik p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* --- Sirküler --- */
.sirkuler-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.sirkuler-kart {
    display: flex;
    gap: 18px;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.35s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.sirkuler-kart:hover {
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.08);
}

.sirkuler-ikon {
    font-size: 2.5rem;
    color: #ef4444;
    min-width: 48px;
    text-align: center;
    padding-top: 4px;
}

.sirkuler-bilgi h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.sirkuler-bilgi p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 8px;
    line-height: 1.6;
}

.sirkuler-alt {
    display: flex;
    gap: 14px;
    margin-bottom: 10px;
}

.sirkuler-alt span {
    font-size: 0.75rem;
    color: #94a3b8;
}

/* --- Video --- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.video-kart {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.35s;
}

.video-kart:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.video-cerceve {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-cerceve iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-bilgi {
    padding: 24px;
}

.video-bilgi h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.video-bilgi p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 8px;
}

.video-kategori {
    font-size: 0.75rem;
    color: #6366f1;
    font-weight: 500;
}

/* --- Hizmetler Detay --- */
.hizmetler-detay-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.hizmet-detay-kart {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hizmet-detay-kart.ters {
    direction: rtl;
}

.hizmet-detay-kart.ters>* {
    direction: ltr;
}

.hizmet-detay-icerik .hizmet-numara {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.hizmet-detay-icerik h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.hizmet-detay-icerik p {
    color: #64748b;
    margin-bottom: 18px;
    line-height: 1.8;
}

/* --- Hakkımızda Sayfa --- */
.hakkimizda-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.mv-kart {
    background: #fff;
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.45s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.mv-kart:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.mv-ikon {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(59, 130, 246, 0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.5rem;
    color: #6366f1;
    transition: all 0.4s;
}

.mv-kart:hover .mv-ikon {
    background: linear-gradient(135deg, #1d4ed8, #6366f1);
    color: #fff;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.mv-kart h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.mv-kart p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.7;
}

.misyon-vizyon-bolum,
.rakamlar-bolum,
.sertifikalar-bolum {
    padding: 100px 0;
}

.sertifika-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sertifika-kart {
    text-align: center;
    padding: 36px 24px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.35s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.sertifika-kart:hover {
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.08);
    transform: translateY(-6px);
}

.sertifika-ikon {
    font-size: 2rem;
    color: #6366f1;
    margin-bottom: 16px;
}

.sertifika-kart h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.sertifika-kart p {
    font-size: 0.8rem;
    color: #64748b;
}

/* --- İletişim --- */
.iletisim-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-bottom: 48px;
}

.iletisim-bilgi-alani h2,
.iletisim-form-alani h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.iletisim-bilgi-alani>p {
    color: #64748b;
    margin-bottom: 28px;
    line-height: 1.7;
}

.iletisim-kartlari {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.iletisim-kart {
    display: flex;
    gap: 18px;
    padding: 20px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
}

.iletisim-kart:hover {
    border-color: rgba(99, 102, 241, 0.15);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.08);
}

.iletisim-kart-ikon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #1d4ed8, #6366f1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    min-width: 52px;
}

.iletisim-kart h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.iletisim-kart p {
    font-size: 0.85rem;
    color: #64748b;
}

.harita-alani {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* --- Formlar --- */
.form-satir {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-grup {
    margin-bottom: 18px;
}

.form-grup label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 7px;
}

.zorunlu {
    color: #ef4444;
}

.form-grup input,
.form-grup select,
.form-grup textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s;
    background: #fff;
    color: #1e293b;
}

.form-grup input:focus,
.form-grup select:focus,
.form-grup textarea:focus {
    border-color: #6366f1;
    outline: none;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-grup textarea {
    resize: vertical;
    min-height: 110px;
}

.hata-listesi {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
}

.hata-listesi p {
    color: #dc2626;
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.hata-listesi p:last-child {
    margin-bottom: 0;
}

.basari-mesaj {
    text-align: center;
    padding: 48px;
    background: #f0fdf4;
    border-radius: 20px;
    border: 1px solid #bbf7d0;
}

.basari-mesaj i {
    font-size: 3rem;
    color: #22c55e;
    margin-bottom: 16px;
}

.basari-mesaj h3 {
    color: #166534;
    margin-bottom: 8px;
}

.basari-mesaj p {
    color: #15803d;
}

/* --- Sayfalama --- */
.sayfalama {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.sayfa-btn {
    padding: 9px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
    color: #475569;
    background: #fff;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.sayfa-btn:hover,
.sayfa-btn.aktif {
    background: linear-gradient(135deg, #1d4ed8, #6366f1);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}

/* --- Bildirim --- */
.bildirim {
    padding: 16px 22px;
    border-radius: 14px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: parlama 0.4s ease;
    backdrop-filter: blur(10px);
}

.bildirim-basarili {
    background: rgba(240, 253, 244, 0.95);
    color: #166534;
    border: 1px solid #bbf7d0;
}

.bildirim-hata {
    background: rgba(254, 242, 242, 0.95);
    color: #991b1b;
    border: 1px solid #fecaca;
}

.bildirim-uyari {
    background: rgba(255, 251, 235, 0.95);
    color: #92400e;
    border: 1px solid #fde68a;
}

.bildirim-bilgi {
    background: rgba(239, 246, 255, 0.95);
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

.bildirim-kapat {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: inherit;
    opacity: 0.6;
}

/* --- Footer --- */
.ana-footer {
    background: linear-gradient(180deg, #020617, #0f172a);
    color: #94a3b8;
}

.footer-ust {
    padding: 72px 0 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-logo i {
    font-size: 1.5rem;
    color: #6366f1;
}

.footer-logo span {
    font-size: 1.05rem;
    font-weight: 700;
    color: #e2e8f0;
}

.footer-aciklama {
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 22px;
}

.footer-sosyal {
    display: flex;
    gap: 10px;
}

.footer-sosyal a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-sosyal a:hover {
    background: linear-gradient(135deg, #1d4ed8, #6366f1);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}

.footer-baslik {
    color: #e2e8f0;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(99, 102, 241, 0.15);
}

.footer-linkler li {
    margin-bottom: 10px;
}

.footer-linkler a {
    font-size: 0.85rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-linkler a:hover {
    color: #38bdf8;
    padding-left: 8px;
}

.footer-iletisim li {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 0.85rem;
}

.footer-iletisim i {
    color: #6366f1;
    margin-top: 3px;
}

.footer-alt {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 22px 0;
}

.footer-alt-icerik {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

/* --- Yukarı Çık Butonu --- */
.yukari-cik {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1d4ed8, #6366f1);
    color: #fff;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    font-size: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
}

.yukari-cik.gorunur {
    opacity: 1;
    visibility: visible;
}

.yukari-cik:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.45);
}

/* --- Hero Tarih --- */
.hero-tarih {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    justify-content: center;
    color: rgba(203, 213, 225, 0.7);
    font-size: 0.9rem;
}

.hero-saat {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 14px;
    border-radius: 8px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

/* --- Sayfa Başlık Bölümü --- */
.sayfa-baslik-bolum {
    background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #1e1b4b 100%);
    padding: 60px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sayfa-baslik-bolum::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
}

.sayfa-baslik-bolum .konteyner {
    position: relative;
    z-index: 1;
}

.sayfa-baslik {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.sayfa-baslik i {
    color: #6366f1;
    margin-right: 12px;
}

.sayfa-aciklama {
    color: #94a3b8;
    font-size: 1.05rem;
}

.son-guncelleme {
    margin-top: 16px;
    color: rgba(148, 163, 184, 0.6);
    font-size: 0.8rem;
}

/* --- Hızlı Erişim Butonları --- */
.hizli-erisim-bolum {
    padding: 50px 0;
}

.hizli-erisim-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.hizli-erisim-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 22px 14px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    color: #475569;
}

.hizli-erisim-btn i {
    font-size: 1.6rem;
    color: var(--btn-renk, #6366f1);
    transition: all 0.3s;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.08);
    border-radius: 12px;
}

.hizli-erisim-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--btn-renk, #6366f1);
}

.hizli-erisim-btn:hover i {
    transform: scale(1.1);
    background: rgba(99, 102, 241, 0.15);
}

/* --- Duyuru Tab Sistemi --- */
.duyuru-bolum {
    padding: 80px 0;
}

.duyuru-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.duyuru-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.duyuru-tab:hover {
    border-color: #6366f1;
    color: #6366f1;
}

.duyuru-tab.aktif {
    background: linear-gradient(135deg, #1d4ed8, #6366f1);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}

.duyuru-badge {
    background: rgba(255, 255, 255, 0.25);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
}

.duyuru-tab:not(.aktif) .duyuru-badge {
    background: #f1f5f9;
    color: #6366f1;
}

.duyuru-icerik {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.duyuru-panel {
    display: none;
}

.duyuru-panel.aktif {
    display: block;
}

.duyuru-satir {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 24px;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s;
    color: inherit;
    text-decoration: none;
}

.duyuru-satir:hover {
    background: #fafbff;
}

.duyuru-satir.yeni {
    background: rgba(99, 102, 241, 0.03);
}

.duyuru-tarih {
    font-size: 0.75rem;
    color: #94a3b8;
    white-space: nowrap;
    min-width: 85px;
}

.duyuru-baslik {
    flex: 1;
    font-size: 0.88rem;
    color: #334155;
    line-height: 1.5;
}

.yeni-rozet {
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: #fff;
    font-size: 0.6rem;
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 700;
    animation: nabiz 2s ease-in-out infinite;
    white-space: nowrap;
}

.duyuru-ok {
    color: #cbd5e1;
    font-size: 0.7rem;
    transition: all 0.2s;
}

.duyuru-satir:hover .duyuru-ok {
    color: #6366f1;
    transform: translateX(3px);
}

.duyuru-bos {
    padding: 40px;
    text-align: center;
    color: #94a3b8;
}

/* --- Resmi Gazete Slider --- */
.resmi-gazete-bolum {
    padding: 80px 0;
}

.gazete-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.gazete-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
    flex: 1;
}

.gazete-track::-webkit-scrollbar {
    display: none;
}

.gazete-kart {
    min-width: 140px;
    background: #fff;
    border-radius: 16px;
    padding: 24px 18px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.35s;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.gazete-kart:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.gazete-kart.bugun {
    background: linear-gradient(135deg, #1d4ed8, #6366f1);
    color: #fff;
    box-shadow: 0 6px 24px rgba(99, 102, 241, 0.3);
}

.gazete-gun {
    font-size: 2rem;
    font-weight: 800;
}

.gazete-ay {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.8;
}

.gazete-yil {
    font-size: 0.72rem;
    opacity: 0.6;
}

.gazete-gun-adi {
    font-size: 0.72rem;
    margin-top: 6px;
    opacity: 0.7;
}

.bugun-rozet {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ef4444;
    color: #fff;
    font-size: 0.55rem;
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 700;
}

.gazete-ok {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #475569;
    transition: all 0.3s;
    flex-shrink: 0;
}

.gazete-ok:hover {
    background: #6366f1;
    color: #fff;
    border-color: #6366f1;
}

/* --- Vergi Takvimi --- */
.vergi-takvimi-bolum {
    padding: 80px 0;
}

.takvim-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.takvim-kart {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.35s;
    text-align: center;
}

.takvim-kart:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.takvim-kirmizi {
    border-top: 3px solid #ef4444;
}

.takvim-turuncu {
    border-top: 3px solid #f97316;
}

.takvim-sari {
    border-top: 3px solid #eab308;
}

.takvim-yesil {
    border-top: 3px solid #22c55e;
}

.takvim-ikon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.2rem;
}

.takvim-kirmizi .takvim-ikon {
    background: rgba(239, 68, 68, 0.08);
    color: #ef4444;
}

.takvim-turuncu .takvim-ikon {
    background: rgba(249, 115, 22, 0.08);
    color: #f97316;
}

.takvim-sari .takvim-ikon {
    background: rgba(234, 179, 8, 0.08);
    color: #eab308;
}

.takvim-yesil .takvim-ikon {
    background: rgba(34, 197, 94, 0.08);
    color: #22c55e;
}

.takvim-baslik {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.takvim-tarih {
    font-size: 0.82rem;
    color: #94a3b8;
    margin-bottom: 14px;
}

.takvim-kalan {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.kalan-sayi {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1d4ed8, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.kalan-metin {
    font-size: 0.82rem;
    color: #64748b;
}

/* --- Pratik Bilgiler Kartlar (Anasayfa) --- */
.pratik-kartlar-bolum {
    padding: 80px 0;
}

.pratik-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pratik-kart {
    background: #fff;
    border-radius: 16px;
    padding: 28px 22px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.35s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.pratik-kart:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(99, 102, 241, 0.15);
}

.pratik-ikon {
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.2rem;
    color: var(--pratik-renk, #6366f1);
}

.pratik-kart h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: #0f172a;
}

.pratik-veri {
    margin-bottom: 14px;
}

.pratik-satir {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 0.85rem;
    color: #475569;
}

.pratik-satir strong {
    color: #0f172a;
}

.pratik-oranlar {
    display: flex;
    gap: 8px;
}

.oran-chip {
    background: rgba(59, 130, 246, 0.08);
    color: #1d4ed8;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
}

.pratik-devam {
    font-size: 0.8rem;
    color: #6366f1;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pratik-kart:hover .pratik-devam i {
    transform: translateX(4px);
    transition: transform 0.3s;
}

/* --- Pratik Bilgiler Sayfa --- */
.pratik-bolum {
    padding: 60px 0;
}

.pratik-baslik-alani {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

.pratik-baslik-alani h2 {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pratik-donem {
    background: rgba(99, 102, 241, 0.08);
    color: #6366f1;
    padding: 4px 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
}

.pratik-tablo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.pratik-tablo-kart {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.pratik-tablo-kart.genis {
    grid-column: 1 / -1;
}

.pratik-tablo-kart.ana-kart {
    border-top: 3px solid #6366f1;
}

.pratik-tablo-kart h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #0f172a;
}

.pratik-tablo {
    width: 100%;
    border-collapse: collapse;
}

.pratik-tablo th {
    text-align: left;
    padding: 10px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    background: #f8fafc;
    border-bottom: 2px solid #e2e8f0;
}

.pratik-tablo td {
    padding: 10px 14px;
    font-size: 0.88rem;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
}

.pratik-tablo .tutar {
    text-align: right;
    font-variant-numeric: tabular-nums;
    font-weight: 600;
}

.pratik-tablo .kesinti {
    color: #ef4444;
}

.pratik-tablo .toplam-satir td {
    background: #f8fafc;
    border-top: 2px solid #e2e8f0;
}

.pratik-tablo .net-satir td {
    background: rgba(99, 102, 241, 0.04);
    color: #1d4ed8;
    font-weight: 700;
    font-size: 0.95rem;
}

.pratik-not {
    margin-top: 16px;
    padding: 12px 16px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    font-size: 0.82rem;
    color: #92400e;
    line-height: 1.6;
}

.pratik-notlar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

/* KDV Kartları */
.kdv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.kdv-kart {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.35s;
}

.kdv-kart:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.kdv-oran {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1d4ed8, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.kdv-aciklama {
    font-size: 0.88rem;
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.6;
}

.kdv-ornekler {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.kdv-ornek-chip {
    background: #f1f5f9;
    color: #475569;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
}

.beyanname-ikon {
    color: #6366f1;
    margin-right: 6px;
}

.siklik-chip {
    background: rgba(99, 102, 241, 0.08);
    color: #6366f1;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
}

/* --- Hesaplama Araçları --- */
.hesaplama-bolum {
    padding: 60px 0;
}

.hesaplama-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.hesaplama-kart {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.35s;
}

.hesaplama-kart:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.hesaplama-baslik {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.hesaplama-baslik i {
    font-size: 1.5rem;
}

.hesaplama-baslik h3 {
    font-size: 1.15rem;
    font-weight: 700;
}

.hesaplama-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hesaplama-alan label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 6px;
}

.hesaplama-alan input,
.hesaplama-alan select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s;
    background: #fff;
    color: #1e293b;
    box-sizing: border-box;
}

.hesaplama-alan input:focus,
.hesaplama-alan select:focus {
    border-color: #6366f1;
    outline: none;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.hesaplama-btn {
    background: linear-gradient(135deg, #1d4ed8, #6366f1);
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    transition: all 0.3s;
}

.hesaplama-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
}

.hesaplama-sonuc {
    margin-top: 20px;
    display: none;
}

.hesaplama-sonuc.gorunur {
    display: block;
    animation: parlama 0.4s ease;
}

.hesaplama-sonuc h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1d4ed8;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(99, 102, 241, 0.1);
}

.hesaplama-hata {
    padding: 14px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    color: #dc2626;
    font-size: 0.85rem;
}

/* --- Neden Biz --- */
.neden-biz-bolum {
    padding: 100px 0;
}

.neden-biz-icerik {
    max-width: 700px;
}

.neden-biz-icerik .bolum-baslik.beyaz {
    color: #fff;
}

.neden-biz-icerik .bolum-ust-baslik.beyaz {
    color: rgba(255, 255, 255, 0.6);
}

.neden-listesi {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 36px;
}

.neden-ogesi {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.neden-numara {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(99, 102, 241, 0.4);
    min-width: 50px;
}

.neden-ogesi h4 {
    color: #e2e8f0;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.neden-ogesi p {
    color: #94a3b8;
    font-size: 0.88rem;
    line-height: 1.7;
}

/* --- Misyon Vizyon --- */
.misyon-vizyon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.misyon-kart {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.35s;
}

.misyon-kart:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.misyon-ikon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(59, 130, 246, 0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    color: #6366f1;
    transition: all 0.4s;
}

.misyon-kart:hover .misyon-ikon {
    background: linear-gradient(135deg, #1d4ed8, #6366f1);
    color: #fff;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

.misyon-kart h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.misyon-kart p {
    color: #64748b;
    font-size: 0.88rem;
    line-height: 1.7;
}

/* --- Arka Plan Açık --- */
.arka-plan-acik {
    background: #f8fafc;
}

/* --- Arka Plan Koyu --- */
.arka-plan-koyu {
    background: linear-gradient(135deg, #020617, #0f172a);
    color: #e2e8f0;
    position: relative;
    overflow: hidden;
}

/* --- Scroll Animasyonları --- */
.animasyonlu {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animasyonlu.gorunur {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {

    .hizmetler-grid,
    .blog-grid,
    .projeler-grid,
    .mv-grid,
    .sertifika-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pratik-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kdv-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hizli-erisim-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .misyon-vizyon-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .istatistik-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .istatistik-kutu:not(:last-child)::after {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hizmet-detay-kart {
        grid-template-columns: 1fr;
    }

    .hizmet-detay-kart.ters {
        direction: ltr;
    }

    .hakkimizda-kisa-grid,
    .hakkimizda-grid,
    .iletisim-grid {
        grid-template-columns: 1fr;
    }

    .pratik-tablo-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ust-bilgi-cubugu {
        display: none;
    }

    .mobil-menu-btn {
        display: flex;
    }

    .ana-nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 320px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.12);
        z-index: 1001;
        transition: right 0.4s cubic-bezier(.4, 0, .2, 1);
        padding: 80px 24px 24px;
        overflow-y: auto;
    }

    .ana-nav.acik {
        right: 0;
    }

    .nav-liste {
        flex-direction: column;
        gap: 4px;
    }

    .nav-liste>li>a {
        display: block;
        padding: 13px 18px;
        border-radius: 12px;
        font-size: 0.95rem;
    }

    .alt-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0 0 0 18px;
    }

    .hero-metin h1 {
        font-size: 2.2rem;
    }

    .bolum-baslik {
        font-size: 1.8rem;
    }

    .sayfa-baslik {
        font-size: 1.6rem;
    }

    .hizmetler-grid,
    .blog-grid,
    .projeler-grid,
    .mv-grid,
    .sertifika-grid,
    .sirkuler-grid,
    .video-grid,
    .kdv-grid,
    .misyon-vizyon-grid {
        grid-template-columns: 1fr;
    }

    .pratik-grid {
        grid-template-columns: 1fr;
    }

    .hizli-erisim-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hesaplama-grid {
        grid-template-columns: 1fr;
    }

    .istatistik-grid {
        padding: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-alt-icerik {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .form-satir {
        grid-template-columns: 1fr;
    }

    .neden-biz-icerik {
        max-width: 100%;
    }

    .hizmetler-bolum,
    .blog-vitrin-bolum {
        padding: 60px 0;
    }

    .hakkimizda-kisa-bolum,
    .neden-biz-bolum,
    .misyon-vizyon-bolum {
        padding: 60px 0;
    }

    .duyuru-bolum,
    .resmi-gazete-bolum,
    .vergi-takvimi-bolum,
    .pratik-kartlar-bolum {
        padding: 50px 0;
    }

    .duyuru-tabs {
        flex-wrap: wrap;
    }

    .duyuru-satir {
        flex-wrap: wrap;
        gap: 6px;
        padding: 12px 16px;
    }

    .duyuru-tarih {
        width: 100%;
        font-size: 0.7rem;
    }

    .pratik-tablo {
        font-size: 0.82rem;
    }

    .pratik-tablo td,
    .pratik-tablo th {
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    .hero-metin h1 {
        font-size: 1.8rem;
    }

    .hero-butonlar {
        flex-direction: column;
    }

    .hero-tarih {
        flex-wrap: wrap;
        justify-content: center;
    }

    .istatistik-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hizli-erisim-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .konteyner {
        padding: 0 16px;
    }

    .filtre-bar {
        gap: 6px;
    }

    .filtre-btn {
        padding: 7px 16px;
        font-size: 0.8rem;
    }

    .pratik-tablo-kart {
        padding: 18px;
    }

    .hesaplama-kart {
        padding: 22px;
    }
}