/* DOSYA ADI: assets/css/styles.css
    PROJE: Okumuşlar Kasa - Premium Kurumsal Web Sitesi
    TEMA: Soft UI / Yuvarlak Hatlar / Modern
*/

/* --- 1. DEĞİŞKENLER (ROOT) --- */
:root {
    /* RENK PALETİ */
    --primary-color: #0e172a;
    /* Derin Lacivert (Kurumsal) */
    --accent-color: #d4af37;
    /* Premium Altın/Bronz */
    --text-dark: #0e172a;
    /* Koyu Lacivert Metin */
    --text-light: #64748b;
    /* Açık Gri Metin */
    --bg-light: #f8fafc;
    /* Kırık Beyaz Arkaplan */
    --bg-white: #ffffff;
    /* Tam Beyaz */
    --border-color: #e2e8f0;
    /* Hafif Çizgiler */

    /* RADIUS SİSTEMİ (YUMUŞAK HATLAR) */
    --radius-sm: 8px;
    /* Küçük elemanlar, etiketler */
    --radius-md: 16px;
    /* Kartlar, görseller, inputlar */
    --radius-lg: 24px;
    /* Büyük bloklar, modal pencereler */
    --radius-pill: 50px;
    /* Butonlar, hap şeklinde yapılar */

    /* GÖLGELER (DAHA YUMUŞAK) */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 15px rgba(212, 175, 55, 0.3);
    /* Altın rengi parama */

    /* YAPISAL */
    --container-width: 1280px;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Akıcı animasyon */
}

/* --- 2. RESET & TEMEL AYARLAR --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    /* Fontları pürüzsüzleştir */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
    /* Varsayılan olarak resimleri yuvarlat */
}

/* --- 3. TİPOGRAFİ & UTILITIES --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 6rem 0;
    /* Ferah boşluklar */
}

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

/* --- 4. BUTONLAR (PILL SHAPE) --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.5rem;
    /* Geniş ve rahat */
    border-radius: var(--radius-pill);
    /* TAM YUVARLAK */
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff !important;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* --- 5. NAVBAR & HEADER --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #e2e2e2;
    transition: var(--transition);
    padding: 1rem 0;
}

.header.scrolled {
    background: #e2e2e2;
    backdrop-filter: blur(12px);
    /* Buzlu cam efekti */
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.brand span {
    color: var(--accent-color);
}

.brand i {
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    position: relative;
}

.nav-link:not(.btn):hover {
    color: var(--accent-color);
}

/* Dropdown */
.dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #fff;
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    /* Menü kenarları yuvarlak */
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.dropdown-item {
    display: block;
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    /* İç elemanlar hafif yuvarlak */
    transition: background 0.2s;
}

.dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--accent-color);
}

/* Mobile Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* --- 6. HERO SECTION (SPLIT SLIDER) --- */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--bg-light);
    padding-top: 100px;
    /* Navbar payı */
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 650px;
}

.hero-image {
    flex: 1.2;
    height: 70vh;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    border-radius: 0;
    /* Parent container hallediyor */
}

/* --- 7. STATS BAR --- */
.stats-bar {
    background: var(--primary-color);
    color: #fff;
    padding: 3.5rem 0;
    position: relative;
    z-index: 10;
    margin-top: -3rem;
    /* Hero'nun üzerine hafifçe çıkar */
    margin-left: 2rem;
    margin-right: 2rem;
    border-radius: var(--radius-lg);
    /* Her köşeyi eşit yuvarlat */
    box-shadow: var(--shadow-lg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 300;
}

/* --- 8. ÜRÜN KARTLARI --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-card {
    background: #fff;
    border-radius: var(--radius-md);
    /* Kart Köşeleri */
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.3);
}

.card-img {
    height: 240px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 0;
    /* Kartın radius'unu takip etsin */
}

.product-card:hover .card-img img {
    transform: scale(1.08);
}

.card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.card-body p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-link {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
}

.card-link:hover {
    gap: 0.8rem;
    /* Ok işareti hareketi */
}

/* --- 9. NEDEN BİZ (ÖZELLİK KUTULARI) --- */
.why-us {
    background: var(--bg-light);
}

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

.feature-box {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    /* Kutu yuvarlatma */
    box-shadow: var(--shadow-sm);
    text-align: left;
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* İkon arka planı daire */
}

/* --- 10. İLETİŞİM FORMU --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.info-item:hover {
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.info-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

/* Form Styles - SOFT UI */
.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    /* Inputlar yumuşak köşeli */
    font-family: inherit;
    font-size: 1rem;
    background: var(--bg-light);
    transition: var(--transition);
    color: var(--text-dark);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    /* Odaklanınca yumuşak hare */
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-light);
    cursor: pointer;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

/* --- 11. FOOTER --- */
.footer {
    background: var(--primary-color);
    color: #fff;
    padding-top: 5rem;
    margin-top: 5rem;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    /* Üst köşeleri yumuşat */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.footer p {
    color: #cbd5e1;
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #cbd5e1;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
    /* Sağa kayma efekti */
}

.sub-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: #94a3b8;
}

.credit-bar {
    text-align: center;
    padding: 1.5rem 0 2rem;
}

.credit-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.6rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-pill);
    background: transparent;
    transition: var(--transition);
}

.credit-text:hover {
    border-color: rgba(255, 255, 255, 0.4);
}

.credit-text i {
    color: var(--accent-color);
    font-size: 0.85rem;
}

.credit-text i.fa-heart {
    color: #ef4444;
}

.nimedya-link {
    color: var(--accent-color);
    font-weight: 600;
    transition: var(--transition);
}

.nimedya-link:hover {
    color: #fff;
}

/* --- 12. COMPONENTS (TOAST & BACK TO TOP) --- */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: var(--radius-pill);
    /* Hap şekli */
    box-shadow: var(--shadow-lg);
    transform: translateY(150px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.toast.show {
    transform: translateY(0);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-color);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* Tam Daire */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.back-to-top:hover {
    background-color: #fff;
    color: var(--accent-color);
}

/* --- 13. RESPONSIVE TASARIM (MOBİL UYUMLULUK) --- */
@media (max-width: 992px) {
    .container {
        padding: 0 1.25rem;
    }

    /* Mobil Menü (Side Panel) */
    .hamburger {
        display: block;
        z-index: 1001;
        /* Menünün üzerinde kalsın */
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        border-radius: 20px 0 0 20px;
        /* Sola açılan yumuşak menü */
    }

    .nav-menu.active {
        right: 0;
    }

    /* Mobil Dropdown */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        display: none;
        background: var(--bg-light);
        width: 100%;
        text-align: center;
        transform: none;
        border: none;
        padding: 1rem 0;
    }

    .dropdown.active .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    /* Mobil Hero */
    .hero {
        height: auto;
        padding-top: 80px;
        padding-bottom: 3rem;
    }

    .hero-container {
        flex-direction: column-reverse;
    }

    .hero-content {
        padding: 0 1.5rem;
        text-align: center;
        margin-top: 2rem;
    }

    .hero-text p {
        margin: 0 auto 2rem auto;
    }

    .hero-image {
        width: 100%;
        height: 350px;
        margin-right: 0;
        border-radius: var(--radius-md);
        /* Mobilde basit yuvarlatma */
        margin-bottom: 0;
    }

    /* Mobil Gridler */
    .features-grid,
    .contact-wrapper,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .stats-bar {
        margin-left: 0;
        margin-right: 0;
        border-radius: 0;
        /* Mobilde tam genişlik */
        margin-top: 0;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        /* Mobilde 2'li yan yana */
    }

    .hero-text h1 {
        font-size: 2.25rem;
    }

    .footer {
        border-radius: 0;
        /* Mobilde düz */
        text-align: center;
        padding-top: 3rem;
        margin-top: 3rem;
    }

    .footer p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .footer h4 {
        margin-bottom: 1rem;
    }

    .footer-links {
        margin-bottom: 2rem;
    }

    .sub-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem 0;
    }

    .footer-links a:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        /* Çok küçük ekranda alt alta */
    }

    .btn {
        width: 100%;
        /* Mobilde butonlar tam genişlik */
    }
}

/* --- 14. LEGAL PAGES (KVKK, Gizlilik, Çerez) --- */
.legal-hero-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.legal-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

.legal-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.sidebar-card h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-card h4 i {
    color: var(--accent-color);
}

.toc-list {
    list-style: none;
}

.toc-list li {
    margin-bottom: 0.5rem;
}

.toc-list a {
    color: var(--text-light);
    font-size: 0.9rem;
    display: block;
    padding: 0.5rem 0;
    border-left: 2px solid transparent;
    padding-left: 1rem;
    transition: var(--transition);
}

.toc-list a:hover {
    color: var(--accent-color);
    border-left-color: var(--accent-color);
}

.sidebar-card.highlight {
    background: linear-gradient(135deg, var(--primary-color), #1e3a5f);
    color: #fff;
    text-align: center;
}

.sidebar-card.highlight i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.sidebar-card.highlight p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.legal-article {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-number {
    background: linear-gradient(135deg, var(--accent-color), #c4a030);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.5rem 0.8rem;
    border-radius: var(--radius-sm);
}

.section-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
}

.info-box i {
    font-size: 2rem;
    color: var(--accent-color);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 1.5rem 0;
}

.highlight-box h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.highlight-box.warning {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.1), rgba(234, 179, 8, 0.05));
    border-left-color: #eab308;
}

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

.data-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.data-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.data-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.data-item h5 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.data-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.styled-list {
    list-style: none;
    margin: 1rem 0;
}

.styled-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

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

.styled-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

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

.right-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.right-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-card h5 {
    margin-bottom: 0.5rem;
}

.contact-card a,
.contact-card p {
    color: var(--text-light);
    margin: 0;
}

.contact-card a:hover {
    color: var(--accent-color);
}

/* Gizlilik sayfası özel stilleri */
.info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.info-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.info-card-header i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.info-card-header h5 {
    margin: 0;
}

.info-card ul {
    list-style: none;
    margin: 0;
}

.info-card ul li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-light);
}

.info-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

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

.usage-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.usage-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.usage-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), #c4a030);
    color: #fff;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.usage-item h5 {
    margin-bottom: 0.25rem;
}

.usage-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.security-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-light);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 500;
}

.security-item i {
    color: var(--accent-color);
}

/* Çerez sayfası özel stilleri */
.cookie-visual {
    margin: 2rem 0;
}

.cookie-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.flow-item i {
    font-size: 2rem;
    color: var(--accent-color);
}

.flow-arrow {
    color: var(--text-light);
    font-size: 1.5rem;
}

.cookie-types {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.cookie-type {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--border-color);
}

.cookie-type.essential {
    border-left-color: #22c55e;
}

.cookie-type.functional {
    border-left-color: #3b82f6;
}

.cookie-type.analytics {
    border-left-color: #8b5cf6;
}

.cookie-type.marketing {
    border-left-color: #f59e0b;
}

.cookie-type-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.cookie-type-header i {
    font-size: 1.25rem;
}

.cookie-type.essential .cookie-type-header i {
    color: #22c55e;
}

.cookie-type.functional .cookie-type-header i {
    color: #3b82f6;
}

.cookie-type.analytics .cookie-type-header i {
    color: #8b5cf6;
}

.cookie-type.marketing .cookie-type-header i {
    color: #f59e0b;
}

.cookie-type-header h5 {
    margin: 0;
    flex-grow: 1;
}

.badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
}

.badge.required {
    background: #22c55e;
    color: #fff;
}

.badge.optional {
    background: var(--border-color);
    color: var(--text-light);
}

.cookie-type p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.cookie-table-wrapper {
    overflow-x: auto;
    margin-top: 1.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
}

.cookie-table code {
    background: var(--bg-light);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--accent-color);
}

.cookie-controls {
    margin-top: 1.5rem;
}

.control-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
}

.control-info h5 {
    margin: 0 0 0.25rem 0;
}

.control-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

.control-toggle.always-on span {
    background: #22c55e;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 500;
}

.toggle-hint {
    font-size: 0.85rem;
    color: var(--text-light);
}

.browser-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.browser-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
    color: var(--text-dark);
}

.browser-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    color: var(--accent-color);
}

.browser-item i {
    font-size: 2.5rem;
}

/* Legal pages responsive */
@media (max-width: 992px) {
    .legal-wrapper {
        grid-template-columns: 1fr;
    }

    .legal-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .legal-article {
        padding: 2rem;
    }

    .data-grid,
    .rights-grid,
    .contact-cards,
    .info-cards,
    .usage-grid {
        grid-template-columns: 1fr;
    }

    .browser-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .legal-sidebar {
        grid-template-columns: 1fr;
    }

    .legal-article {
        padding: 1.5rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-flow {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

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

    .control-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}