/* ═══════════════════════════════════════════════════════
   TAISAT – Modern Clean SaaS Tasarım Sistemi
   Renk Paleti: Beyaz, Koyu Lacivert (#071527), Canlı Mavi
═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Orbitron:wght@600;700;800&display=swap');

/* ── Renk Tokenleri ── */
:root {
    --navy-900: #071527;
    --navy-800: #0d213b;
    --navy-700: #143054;

    --primary-blue: #3b60ff;
    --primary-hover: #2947d6;
    --primary-light: rgba(59, 96, 255, 0.1);

    --white: #ffffff;
    --bg-light: #f8fafc;
    --bg-alt: #f1f5f9;

    --text-dark: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;

    --border-light: #e2e8f0;
    --border-dark: rgba(255, 255, 255, 0.1);

    --shadow-soft: 0 10px 40px -10px rgba(7, 21, 39, 0.08);
    --shadow-hover: 0 20px 40px -10px rgba(7, 21, 39, 0.15);

    --radius-pill: 100px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
}

/* ── Dark Theme Tokenleri ── */
[data-theme="dark"] {
    --white: #0f172a;
    --bg-light: #1e293b;
    --bg-alt: #0f172a;
    --text-dark: #f8fafc;
    --text-muted: #cbd5e1;
    --text-light: #94a3b8;
    --border-light: #334155;
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
}

/* ════════════════════════════════════════════════════
   KOYU TEMA – KAPSAMLI VE ÇATIŞMASIZ TANIMLAR
   Sıralama önemlidir: Genel → Özel
════════════════════════════════════════════════════ */

/* ── 1. GENEL SAYFA ZEMİNİ ── */
[data-theme="dark"] body {
    background-color: var(--bg-alt);
    color: var(--text-dark);
}

/* ── 2. BAŞLIKLAR & METİNLER ── */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6,
[data-theme="dark"] .section-heading,
[data-theme="dark"] .about-card h3,
[data-theme="dark"] .system-card-title,
[data-theme="dark"] .team-group-title,
[data-theme="dark"] .contact-card h3,
[data-theme="dark"] .modal-header h2,
[data-theme="dark"] .modal-form label,
[data-theme="dark"] .auth-card h2,
[data-theme="dark"] .auth-form label,
[data-theme="dark"] .admin-main h1,
[data-theme="dark"] .stat-number,
[data-theme="dark"] .admin-tab,
[data-theme="dark"] .panel-header h2,
[data-theme="dark"] .data-table th,
[data-theme="dark"] .data-table td,
[data-theme="dark"] .form-group label,
[data-theme="dark"] .checkbox-label,
[data-theme="dark"] .content-header h1,
[data-theme="dark"] .filter-btn,
[data-theme="dark"] .news-title,
[data-theme="dark"] .member-name,
[data-theme="dark"] .sponsor-text,
[data-theme="dark"] .footer-col-title,
[data-theme="dark"] strong {
    color: var(--text-dark) !important;
}


/* ── 3. BÖLÜMLER (SECTION) ZEMİNLERİ ── */
[data-theme="dark"] .section {
    background-color: var(--bg-alt) !important;
}

[data-theme="dark"] .section-alt {
    background-color: var(--white) !important;
}

/* ── 4. HEADER – SAYDAM (EN ÜSTTE) ── */
[data-theme="dark"] #site-header {
    border-bottom: none !important;
}

/* ── 5. HEADER – SCROLL EDİLDİKTEN SONRA (KOYU ZEMİN) ── */
[data-theme="dark"] #site-header.scrolled {
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5) !important;
}

[data-theme="dark"] #site-header.scrolled .logo {
    color: #ffffff !important;
}

[data-theme="dark"] #site-header.scrolled .nav-links a {
    color: rgba(255, 255, 255, 0.75) !important;
}

[data-theme="dark"] #site-header.scrolled .nav-links a:hover {
    color: var(--primary-blue) !important;
}

[data-theme="dark"] #site-header.scrolled .lang-selector {
    color: rgba(255, 255, 255, 0.85) !important;
}

[data-theme="dark"] #site-header.scrolled .header-toggles {
    border-left-color: rgba(255, 255, 255, 0.12) !important;
}

[data-theme="dark"] #site-header.scrolled .theme-toggle-btn {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}

/* ── 6. HERO BÖLÜMÜ ── */
[data-theme="dark"] .hero-badge,
[data-theme="dark"] .hero-title,
[data-theme="dark"] .hero-stat-number,
[data-theme="dark"] .hero-stat-label,
[data-theme="dark"] .hero-scroll-indicator,
[data-theme="dark"] .hero-actions .btn-primary,
[data-theme="dark"] .hero-actions .btn-ghost,
[data-theme="dark"] .hero-actions .btn-video {
    color: #ffffff !important;
}

/* ── 7. KARTLAR ── */
[data-theme="dark"] .about-card,
[data-theme="dark"] .system-card,
[data-theme="dark"] .contact-card,
[data-theme="dark"] .product-card,
[data-theme="dark"] .news-card {
    background-color: var(--bg-light) !important;
    border-color: var(--border-light) !important;
}

[data-theme="dark"] .about-card h3,
[data-theme="dark"] .contact-card h3,
[data-theme="dark"] .system-card-title,
[data-theme="dark"] .news-card-title {
    color: var(--text-dark) !important;
}

[data-theme="dark"] .about-card p,
[data-theme="dark"] .contact-card p,
[data-theme="dark"] .system-card-desc,
[data-theme="dark"] .section-sub,
[data-theme="dark"] .news-card-text,
[data-theme="dark"] .member-role,
[data-theme="dark"] .member-team {
    color: var(--text-muted) !important;
}

[data-theme="dark"] .member-card {
    background-color: transparent !important;
}

[data-theme="dark"] .news-card-badge {
    background: rgba(255, 255, 255, 0.15) !important;
    color: var(--text-dark) !important;
}

/* ── 8. İKONLAR ── */
[data-theme="dark"] .about-icon,
[data-theme="dark"] .contact-icon {
    background: rgba(59, 96, 255, 0.2) !important;
    color: #93c5fd !important;
}

[data-theme="dark"] .about-card:hover .about-icon,
[data-theme="dark"] .contact-card:hover .contact-icon {
    background: var(--primary-blue) !important;
    box-shadow: 0 0 20px rgba(59, 96, 255, 0.4) !important;
    color: #ffffff !important;
}

/* ── 9. SPONSOR LOGOLARI ── */
[data-theme="dark"] .sponsor-logo-link img {
    filter: brightness(0) invert(1) opacity(0.6) !important;
    transition: all 0.4s ease !important;
}

[data-theme="dark"] .sponsor-logo-link:hover img {
    filter: none !important;
    opacity: 1 !important;
    transform: scale(1.1);
}

/* ── 10. GİRİŞ ALANLARI ── */
[data-theme="dark"] input:not([type="checkbox"]):not([type="radio"]),
[data-theme="dark"] textarea,
[data-theme="dark"] select {
    background-color: var(--bg-light) !important;
    color: var(--text-dark) !important;
    border-color: var(--border-light) !important;
}

[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder {
    color: var(--text-light) !important;
    opacity: 0.7;
}

/* ── 11. MODALLER ── */
[data-theme="dark"] .modal-content,
[data-theme="dark"] .auth-card,
[data-theme="dark"] .login-card {
    background-color: var(--bg-light) !important;
    border-color: var(--border-light) !important;
}

[data-theme="dark"] .modal-form input,
[data-theme="dark"] .modal-form textarea {
    background: var(--bg-alt) !important;
    color: var(--text-dark) !important;
    border-color: var(--border-light) !important;
}

[data-theme="dark"] #contact-modal .modal-right,
[data-theme="dark"] #contact-modal .modal-content {
    background-color: var(--bg-light) !important;
}

[data-theme="dark"] #contact-modal .modal-left {
    background-color: var(--navy-900) !important;
}

[data-theme="dark"] #contact-modal .modal-divider::before,
[data-theme="dark"] #contact-modal .modal-divider::after {
    background: var(--border-light) !important;
}

[data-theme="dark"] #contact-modal .modal-divider span {
    background: transparent !important;
    color: var(--text-muted) !important;
}


/* ── 12. STORE ── */
[data-theme="dark"] .store-info-grid {
    background: var(--bg-light) !important;
    border-color: var(--border-light) !important;
}

[data-theme="dark"] .store-info-item {
    border-color: var(--border-light) !important;
}

[data-theme="dark"] .store-info-title {
    color: var(--text-dark) !important;
}

[data-theme="dark"] .store-info-text {
    color: var(--text-muted) !important;
}

[data-theme="dark"] .store-filters {
    border-color: var(--border-light) !important;
}

[data-theme="dark"] .category-tab {
    background: var(--bg-light) !important;
    border: 1px solid var(--border-light) !important;
    color: var(--text-dark) !important;
}

[data-theme="dark"] .category-tab.active,
[data-theme="dark"] .category-tab:hover {
    background: var(--primary-blue) !important;
    color: #ffffff !important;
    border-color: var(--primary-blue) !important;
}


/* ── 13. GELİŞMELER / HABERLER ── */
[data-theme="dark"] .news-filters {
    border-color: var(--border-light) !important;
}

[data-theme="dark"] .filter-btn {
    background: var(--bg-light) !important;
    border-color: var(--border-light) !important;
    color: var(--text-dark) !important;
}

[data-theme="dark"] .filter-btn.active,
[data-theme="dark"] .filter-btn:hover {
    background: var(--primary-blue) !important;
    color: #ffffff !important;
    border-color: var(--primary-blue) !important;
}

[data-theme="dark"] .card-tag {
    background: var(--border-light) !important;
    color: var(--text-muted) !important;
}

[data-theme="dark"] .post-title {
    color: var(--text-dark) !important;
}

[data-theme="dark"] .post-detail {
    background-color: var(--bg-light) !important;
}

[data-theme="dark"] .post-content {
    color: var(--text-dark) !important;
}

[data-theme="dark"] .post-footer {
    border-top-color: var(--border-light) !important;
}

[data-theme="dark"] .share-btn {
    background: var(--bg-light) !important;
    color: var(--text-muted) !important;
}

[data-theme="dark"] .share-label {
    color: var(--text-light) !important;
}

/* ── 14. ADMİN PANELİ ── */
[data-theme="dark"] .admin-main,
[data-theme="dark"] .login-page {
    background-color: var(--bg-alt) !important;
}

[data-theme="dark"] .admin-wrapper {
    background-color: var(--bg-alt) !important;
}

[data-theme="dark"] .admin-topbar {
    background-color: var(--bg-light) !important;
    border-color: var(--border-light) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .admin-title,
[data-theme="dark"] .admin-user-name {
    color: var(--text-dark) !important;
}

[data-theme="dark"] .admin-tabs {
    background-color: var(--bg-light) !important;
}

[data-theme="dark"] .admin-tab:not(.active) {
    color: var(--text-muted) !important;
}

[data-theme="dark"] .stat-card {
    background-color: var(--bg-light) !important;
    border-color: var(--border-light) !important;
}

[data-theme="dark"] .stat-value {
    color: var(--text-dark) !important;
}

[data-theme="dark"] .admin-panel {
    background-color: var(--bg-light) !important;
    border-color: var(--border-light) !important;
}

[data-theme="dark"] .panel-header {
    border-bottom-color: var(--border-light) !important;
}

[data-theme="dark"] .panel-header h2,
[data-theme="dark"] .form-group label,
[data-theme="dark"] .admin-form label,
[data-theme="dark"] .data-panel-header h2 {
    color: var(--text-dark) !important;
}

[data-theme="dark"] .data-panel-header {
    background-color: var(--bg-light) !important;
    border-color: var(--border-light) !important;
}

[data-theme="dark"] .data-list {
    background-color: var(--bg-light) !important;
}

[data-theme="dark"] .data-item {
    border-bottom-color: var(--border-light) !important;
}

[data-theme="dark"] .data-item:hover {
    background-color: rgba(255, 255, 255, 0.03) !important;
}

[data-theme="dark"] .data-name {
    color: var(--text-dark) !important;
}

[data-theme="dark"] .data-sub,
[data-theme="dark"] .data-empty {
    color: var(--text-muted) !important;
}

[data-theme="dark"] .admin-avatar {
    background-color: var(--primary-blue) !important;
    color: #ffffff !important;
}


/* ── 15. İLETİŞİM MODALI BUTONLARI ── */
[data-theme="dark"] .footer-btn.whatsapp {
    background: rgba(21, 128, 61, 0.2) !important;
    color: #4ade80 !important;
}

[data-theme="dark"] .footer-btn.email {
    background: rgba(29, 78, 216, 0.2) !important;
    color: #93c5fd !important;
}

/* ── Reset ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    caret-color: transparent;
    /* Yanıp sönen dik çizgiyi (imleci) kaldırıyoruz */
}

input,
textarea,
[contenteditable="true"] {
    caret-color: auto !important;
    /* Yazı yazılabilecek alanlarda imleç hala görünebilir */
}

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    cursor: default;
    /* Standart ok imleci kullanılsın */
}

/* Metinlerin seçilebilir kalmasını ama 'I-beam' imlecinin çıkmamasını sağlıyoruz */
p,
span,
h1,
h2,
h3,
h4,
h5,
h6,
.news-card-text,
.product-desc,
.section-label,
strong,
i {
    cursor: default !important;
}

/* Linkler ve interaktif alanlar hala el (pointer) imlecini göstermeli */
a,
button,
.filter-btn,
.category-tab,
.card-tag,
.btn,
.nav-dot,
.drag-handle {
    cursor: pointer !important;
    user-select: none;
}

/* Input alanları hala yazı imlecini (text cursor) göstermeli */
input,
textarea {
    cursor: text !important;
}

img {
    max-width: 100%;
    display: block;
}

/* ── Scrollbar Hiding Utility ── */
.no-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════════════════════
   SVG SINIRLAMALARI (CRITICAL FIX)
═══════════════════════════════════════════════════════ */
.about-icon svg,
.contact-icon svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.system-card-img-placeholder svg {
    width: 64px;
    height: 64px;
    color: var(--text-light);
    flex-shrink: 0;
}

.admin-badge svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-right: 6px;
}

.logout-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.admin-tab svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.panel-header-icon svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.panel-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-right: 8px;
}

.delete-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.file-upload-area svg {
    width: 32px;
    height: 32px;
    color: var(--text-muted);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════════════ */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
    padding: 10px 0;
}

#site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.logo span {
    color: var(--primary-blue);
    display: inline-block;
}

#site-header.scrolled .logo {
    color: var(--navy-900);
}

/* ── Logo resmi ise rengi düzelt ── */
/* Light mode: scrolled → koyu logo */
#site-header.scrolled .logo img {
    filter: brightness(0) saturate(100%) invert(8%) sepia(50%) saturate(1000%) hue-rotate(195deg) brightness(95%) contrast(95%);
    transition: filter 0.3s ease;
}

/* Dark mode: logo her zaman beyaz kalmalı */
[data-theme="dark"] .logo img {
    filter: brightness(0) invert(1) !important;
    transition: filter 0.3s ease;
}

[data-theme="dark"] #site-header.scrolled .logo img {
    filter: brightness(0) invert(1) !important;
}

/* Dark mode metin logo: header artık koyu zeminde – beyaz kalıyor */
[data-theme="dark"] .logo {
    color: #ffffff !important;
}

[data-theme="dark"] #site-header.scrolled .logo {
    color: #ffffff !important;
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

#site-header.scrolled .nav-links a {
    color: var(--text-muted);
}

#site-header.scrolled .nav-links a:hover {
    color: var(--primary-blue);
}

.nav-admin-btn {
    background: var(--primary-blue) !important;
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-weight: 700 !important;
    transition: all 0.3s !important;
    border: none;
}

.nav-admin-btn:hover {
    background: var(--primary-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 96, 255, 0.3);
}

/* ── Koyu Tema & Dil Seçici UI ── */
.header-toggles {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 10px;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

#site-header.scrolled .header-toggles {
    border-left-color: var(--border-light);
}

/* ── MOBİL HAMBURGER MENÜ BUTONU ── */
/* Masaüstünde tamamen gizli */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: background 0.2s;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

#site-header.scrolled .nav-toggle span {
    background: var(--navy-900);
}

[data-theme="dark"] #site-header.scrolled .nav-toggle span {
    background: rgba(255, 255, 255, 0.9) !important;
}

/* Animasyonlu X kapanış */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Yalnızca mobilde görünür */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(7, 21, 39, 0.97);
        backdrop-filter: blur(12px);
        flex-direction: column;
        gap: 0;
        padding: 16px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: rgba(255, 255, 255, 0.85) !important;
        padding: 14px 32px;
        font-size: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links a:hover {
        background: rgba(59, 96, 255, 0.1);
        color: var(--primary-blue) !important;
    }

    .header-toggles {
        border-left: none !important;
        padding-left: 0;
        margin-left: 0;
        padding: 12px 32px;
        width: 100%;
        justify-content: flex-start;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
}

[data-theme="dark"] .nav-links.active {
    background: rgba(11, 17, 32, 0.98) !important;
}

.theme-toggle-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

#site-header.scrolled .theme-toggle-btn {
    background: var(--bg-light);
    border-color: var(--border-light);
    color: var(--navy-900);
}

.theme-toggle-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.theme-toggle-btn svg {
    width: 16px;
    height: 16px;
}

.theme-toggle-btn .moon-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle-btn .sun-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle-btn .moon-icon {
    display: block;
}

.lang-selector {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

#site-header.scrolled .lang-selector {
    color: var(--navy-900);
}

.lang-selector span {
    opacity: 0.6;
    transition: opacity 0.2s;
}

.lang-selector span.active {
    opacity: 1;
    color: var(--primary-blue);
}

.lang-selector span:hover {
    opacity: 1;
}

/* Google Translate Gizleme */
body {
    top: 0 !important;
}

.skiptranslate {
    display: none !important;
}

#google_translate_element {
    display: none !important;
}


/* ═══════════════════════════════════════════════════════
   HERO SECTİON
═══════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy-900) 0%, #0d213b 50%, #081a33 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(90deg,
            rgba(255, 255, 255, 0.01) 0px,
            rgba(255, 255, 255, 0.01) 1px,
            transparent 1px,
            transparent 100px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    padding: 0 24px;
    margin-top: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 24px;
    border-radius: var(--radius-pill);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 650px;
    margin: 0 auto 48px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 24px 60px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-stat-number {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.hero-stat-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: scrollBounce 2.5s infinite;
    z-index: 5;
}

.hero-scroll-line {
    width: 2px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 1));
    margin-bottom: 12px;
    border-radius: 2px;
}

@keyframes scrollBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -12px);
    }

    60% {
        transform: translate(-50%, -6px);
    }
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: var(--radius-pill);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(59, 96, 255, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 96, 255, 0.4);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

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

/* ═══════════════════════════════════════════════════════
   BEYAZ İÇERİK BÖLÜMLERİ
═══════════════════════════════════════════════════════ */
.section {
    padding: 120px 0;
    background-color: var(--white);
}

.section-alt {
    background-color: var(--bg-light);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-label {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-blue);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
}

.section-heading {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    color: var(--navy-900);
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-sub {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* ── KART TASARIMLARI ── */
.about-grid,
.systems-grid,
.contact-grid {
    display: grid;
    gap: 30px;
}

.about-grid {
    grid-template-columns: repeat(3, 1fr);
}

.systems-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

.contact-grid {
    grid-template-columns: repeat(3, 1fr);
}

.about-card {
    background: var(--white);
    padding: 40px;
    border-radius: 28px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(8, 26, 51, 0.08);
    background: var(--primary-blue);
}

.about-icon,
.contact-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    color: var(--primary-blue);
}

.about-card:hover .about-icon,
.contact-card:hover .contact-icon {
    background: rgba(255, 255, 255, 0.2) !important;
    color: var(--white) !important;
    transform: rotate(10deg);
    box-shadow: 0 10px 20px rgba(59, 96, 255, 0.3);
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 40px;
    transition: all 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 96, 255, 0.15);
    background: var(--primary-blue);
}

.about-card:hover h3,
.about-card:hover p,
.contact-card:hover h3,
.contact-card:hover p {
    color: var(--white);
}



.about-card h3,
.contact-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 12px;
}

.about-card p,
.contact-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ░░░ PREMİUM BUTON & ETKİLEŞİM ░░░ */
.btn-primary {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(59, 96, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.btn-primary:hover {
    box-shadow: 0 10px 30px rgba(59, 96, 255, 0.5);
    transform: translateY(-3px);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-primary:hover::after {
    opacity: 1;
}

/* ░░░ REVEAL (BELİRME) ANİMASYONU ░░░ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ░░░ SİSTEM (ARACLAR) KARTLARI – EKİP İLE SENKRON ░░░ */
.systems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.system-card {
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 40px rgba(8, 26, 51, 0.04);
    display: flex;
    flex-direction: column;
    position: relative;
}

.system-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 70px rgba(8, 26, 51, 0.12);
    border-color: rgba(59, 96, 255, 0.1);
}

.system-card-img {
    height: 260px;
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}

.system-image-stack {
    width: 100%;
    height: 100%;
    position: relative;
}

.system-main-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    z-index: 1;
}

.system-main-img.active {
    opacity: 1;
    z-index: 2;
}

.system-card:hover .system-main-img.active {
    transform: scale(1.1);
}

.system-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #94a3b8;
}

.system-card-placeholder svg {
    width: 64px;
    height: 64px;
    opacity: 0.3;
}

/* System Image Nav Dots */
.system-img-nav {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translate(-50%, 10px);
    display: flex;
    gap: 6px;
    z-index: 20;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    padding: 5px 10px;
    border-radius: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.system-card:hover .system-img-nav {
    opacity: 1;
    transform: translate(-50%, 0);
}

.system-nav-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(7, 21, 39, 0.2);
    transition: all 0.3s ease;
}

.system-nav-dot.active {
    background: var(--primary-blue);
    transform: scale(1.3);
}

[data-theme="dark"] .system-img-nav {
    background: rgba(15, 23, 42, 0.6);
}

[data-theme="dark"] .system-nav-dot {
    background: rgba(255, 255, 255, 0.2);
}

.system-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--navy-900);
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 30;
}

.system-card-body {
    padding: 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.system-card-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--navy-900);
    margin-bottom: 12px;
    letter-spacing: -0.8px;
}

.system-card-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* ── EKİP KARTLARI ── */
/* ░░░ EKİP (TEAM) KURUMSAL & ORTALANMIŞ TASARIM ░░░ */
.team-section {
    margin-bottom: 120px;
    text-align: center;
}

.team-group-title {
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-blue);
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.team-group-title::before,
.team-group-title::after {
    content: '';
    flex: 1;
    height: 1px;
    max-width: 100px;
    background: linear-gradient(to var(--side, right), var(--primary-blue), transparent);
}

.team-group-title::before {
    --side: left;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 300px));
    gap: 60px 40px;
    margin-bottom: 100px;
    justify-content: center;
    /* Kartları ortalar */
}

.member-card {
    background: transparent;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    position: relative;
    border-radius: var(--radius-lg);
}

.member-card:hover {
    transform: translateY(-10px);
}

.member-photo,
.member-photo-placeholder {
    width: 150px;
    height: 150px;
    margin-bottom: 30px;
    border-radius: 50%;
    position: relative;
    background: var(--bg-light);
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    z-index: 1;
}

/* Premium Halka Efekti */
.member-photo::before,
.member-photo-placeholder::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.member-photo-placeholder {
    background: var(--primary-light);
    color: var(--primary-blue);
    font-size: 46px;
    font-weight: 800;
    border: none;
}

.member-card:hover .member-photo::before,
.member-card:hover .member-photo-placeholder::before {
    opacity: 0.2;
    transform: scale(1);
    inset: -10px;
}

.member-card:hover .member-photo,
.member-card:hover .member-photo-placeholder {
    box-shadow: 0 20px 40px rgba(59, 96, 255, 0.1);
}

.member-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.member-name {
    font-size: 21px;
    font-weight: 900;
    color: var(--navy-900);
    letter-spacing: -0.6px;
    margin-bottom: 4px;
}

.member-role {
    font-size: 11px;
    color: var(--primary-blue);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--primary-light);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 5px;
}

.member-team {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.5;
    letter-spacing: 0.5px;
}

.member-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.member-card:has(.member-link-overlay):hover {
    cursor: pointer;
}

.member-card:has(.member-link-overlay):hover .member-name {
    color: var(--primary-blue);
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .member-photo,
    .member-photo-placeholder {
        width: 130px;
        height: 130px;
    }

    .team-group-title::before,
    .team-group-title::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 40px 20px;
    }

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

/* ── FOOTER ── */
.footer {
    background: var(--navy-900);
    color: var(--white);
    padding: 60px 0 40px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 40px;
}

.footer-logo {
    font-size: 24px;
    color: var(--white);
}

.footer-logo span {
    color: var(--primary-blue);
}

.footer-copy {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-admin-link {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
}

/* ═══════════════════════════════════════════════════════
   ADMİN PANELİ & LOGIN
═══════════════════════════════════════════════════════ */
.admin-main {
    padding: 120px 32px 80px;
    background-color: var(--bg-light);
    min-height: 100vh;
}

.admin-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.admin-topbar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-soft);
}

.admin-topbar-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.admin-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy-900);
}

.admin-badge {
    background: var(--primary-light);
    color: var(--primary-blue);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    width: fit-content;
    display: flex;
    align-items: center;
}

.admin-topbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.admin-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy-900);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.admin-user-name {
    display: block;
    font-weight: 700;
    color: var(--navy-900);
}

.admin-user-role {
    font-size: 12px;
    color: var(--text-muted);
}

.logout-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fee2e2;
    color: #ef4444;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s;
}

.logout-btn:hover {
    background: #fecaca;
}

/* Admin Stats */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.stat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 96, 255, 0.03) 0%, transparent 70%);
    z-index: 0;
}

.stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

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

/* Stat Icon Colors */
.stat-icon-navy {
    background: #e0e7ff;
    color: #4338ca;
}

.stat-icon-blue {
    background: #dbeafe;
    color: #1d4ed8;
}

.stat-icon-gold {
    background: #fef3c7;
    color: #b45309;
}

.stat-icon-green {
    background: #dcfce7;
    color: #15803d;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Admin Tabs */
.admin-tabs {
    display: flex;
    gap: 8px;
    background: var(--white);
    padding: 8px;
    border-radius: var(--radius-pill);
    width: fit-content;
    box-shadow: var(--shadow-soft);
}

.admin-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    background: transparent;
    border: none;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.admin-tab.active {
    background: var(--primary-blue);
    color: var(--white);
}

.admin-tab-content {
    display: none;
}

.admin-tab-content.active {
    display: block;
}

.admin-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.admin-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.panel-header {
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 16px;
}

.panel-header-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-900);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Forms */
.admin-form {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 8px;
    display: block;
}

input[type="text"],
input[type="password"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    background: var(--bg-light);
    font-family: inherit;
    font-size: 15px;
    transition: all 0.2s;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary-blue);
    background: var(--white);
    outline: none;
    box-shadow: 0 0 0 4px var(--primary-light);
}

/* ── Toggle Switch (Kaydırmalı Bar) – Premium Animasyon ── */
.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

input:checked + .slider {
    background-color: var(--primary-blue);
}

input:checked + .slider:before {
    transform: translateX(22px);
}

/* Hover efekti */
.switch:hover .slider:before {
    box-shadow: 0 0 0 4px rgba(59, 96, 255, 0.1);
}

/* Renk Varyasyonları */
.switch-gold input:checked + .slider {
    background-color: #f59e0b;
}

.switch-gold:hover .slider:before {
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* ── Status Indicators & Pulse Animasyonu ── */
.status-indicator {
    display: inline-block;
    border-radius: 50%;
}

.status-ok { background-color: var(--primary-blue); }
.status-no { background-color: #ef4444; }

.status-pulse {
    animation: status-pulse-anim 2s infinite;
}

@keyframes status-pulse-anim {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 96, 255, 0.4);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(59, 96, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 96, 255, 0);
    }
}

.status-pulse.status-no {
    animation-name: status-pulse-no-anim;
}

@keyframes status-pulse-no-anim {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.file-upload-area {
    position: relative;
    border: 2px dashed var(--border-light);
    border-radius: var(--radius-md);
    padding: 40px 20px;
    text-align: center;
    background: var(--bg-light);
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.file-upload-area:hover {
    border-color: var(--primary-blue);
    background: var(--primary-light);
}

.file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.file-upload-area span {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-900);
}

.file-upload-area small {
    font-size: 12px;
    color: var(--text-muted);
}

.file-preview {
    margin-top: 15px;
}

.file-preview img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.preview-remove {
    margin-top: 10px;
    background: #fee2e2;
    color: #ef4444;
    border: none;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
}

.panel-btn {
    background: var(--primary-blue);
    color: var(--white);
    padding: 16px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 15px;
    margin-top: 10px;
}

.panel-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 96, 255, 0.3);
}

/* Data List */
.data-panel-header {
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.data-panel-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-900);
    display: flex;
    align-items: center;
    gap: 8px;
}

.data-count {
    background: var(--primary-light);
    color: var(--primary-blue);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
}

.data-list {
    max-height: 600px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.data-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
    transition: background 0.2s;
    position: relative;
}

.data-item:hover {
    background: var(--bg-light);
}

.drag-handle {
    cursor: grab;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 5px;
    transition: color 0.2s;
}

.drag-handle:hover {
    color: var(--primary-blue);
}

.drag-handle:active {
    cursor: grabbing;
}

.drag-handle svg {
    width: 18px;
    height: 18px;
}

.sortable-ghost {
    opacity: 0.4;
    background: var(--primary-light) !important;
    border: 2px dashed var(--primary-blue);
}

.data-photo,
.data-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--primary-light);
}

.data-avatar {
    background: var(--primary-light);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.data-info {
    flex: 1;
    min-width: 0;
}

.data-name {
    display: block;
    font-weight: 700;
    color: var(--navy-900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.data-sub {
    font-size: 13px;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.data-team-tag {
    display: inline-block;
    margin-top: 6px;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    background: var(--bg-alt);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dark);
}

.delete-btn {
    background: #fee2e2;
    color: #ef4444;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.delete-btn:hover {
    background: #fecaca;
    transform: scale(1.05);
}

.data-empty {
    padding: 40px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* Login Page */
.login-page {
    background: var(--bg-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    padding: 50px 40px;
    width: 100%;
    max-width: 440px;
    position: relative;
}

.login-logo {
    margin-bottom: 30px;
    text-align: center;
}

.login-logo .logo {
    color: var(--navy-900);
    font-size: 28px;
}

.login-header h1 {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy-900);
    text-align: center;
    margin-bottom: 10px;
}

.login-header p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 14px;
}

.login-btn {
    width: 100%;
    background: var(--primary-blue);
    color: var(--white);
    padding: 16px;
    border-radius: var(--radius-pill);
    border: none;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.login-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 96, 255, 0.3);
}

/* Giriş (Login) SVG İkon Boyut Düzenlemeleri */
.login-header h1 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-header .login-icon {
    display: none;
}

.login-header .login-icon svg {
    width: 48px;
    height: 48px;
    color: var(--primary-blue);
    margin-bottom: 16px;
    flex-shrink: 0;
}

.login-error {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: #fee2e2;
    color: #ef4444;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 14px;
}

.login-error svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-right: 8px;
}

.login-form .form-group {
    margin-bottom: 20px;
}

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

.input-wrapper svg {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    pointer-events: none;
    flex-shrink: 0;
}

.input-wrapper input {
    padding-left: 44px;
    width: 100%;
}

.login-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.login-footer {
    margin-top: 30px;
    text-align: center;
}

.login-footer a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.2s;
}

.login-footer a:hover {
    color: var(--primary-blue);
}

/* ═══════════════════════════════════════════════════════
   BİLDİRİM (TOAST) SİSTEMİ
   ═══════════════════════════════════════════════════════ */
.toast-container {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: var(--navy-900);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 14px;
    pointer-events: auto;
    animation: toastUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.toast svg {
    width: 20px;
    height: 20px;
    color: #22c55e;
}

@keyframes toastUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

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

.toast.fade-out {
    animation: toastDown 0.5s ease forwards;
}

@keyframes toastDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(100px);
        opacity: 0;
    }
}

/* ═══════════════════════════════════════════════════════
   ADMİN FORM ÖĞELERİ TASARIMI
   ═══════════════════════════════════════════════════════ */
.admin-form .form-group {
    margin-bottom: 24px;
}

.admin-form label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 10px;
}

.admin-form input[type="text"],
.admin-form input[type="url"],
.admin-form input[type="email"],
.admin-form input[type="number"],
.admin-form input[type="password"],
.admin-form select,
.admin-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    color: var(--navy-900);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.admin-form textarea {
    min-height: 120px;
    resize: vertical;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
    background: var(--white);
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(59, 96, 255, 0.1);
}

.admin-form input::placeholder,
.admin-form textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.file-input-simple {
    padding: 10px !important;
    font-size: 13px !important;
    background: var(--white) !important;
}

/* ═══════════════════════════════════════════════════════
   PREMIUM MODÜLER FOOTER TASARIMI (ULTIMATE)
   ═══════════════════════════════════════════════════════ */
.footer {
    background: #0b1120;
    padding: 100px 0 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo-area .logo {
    font-size: 34px;
    margin-bottom: 25px;
    display: block;
}

.footer-logo-area p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 350px;
    opacity: 0.7;
}

.footer-col-title {
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
}

.footer-links a:hover {
    color: var(--primary-blue);
    transform: translateX(10px);
    opacity: 1;
}

/* Horizontal Contact Banner (Rectangle) */
.footer-action {
    margin-bottom: 60px;
}

.footer-box {
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.footer-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--primary-blue);
    box-shadow: 0 0 20px rgba(59, 96, 255, 0.5);
}


.box-content {
    flex: 1.2;
}

.box-content h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -0.8px;
}

.box-content p {
    font-size: 14px;
    color: var(--text-light);
    opacity: 0.8;
    line-height: 1.6;
    max-width: 450px;
}

.box-interact {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-sub-form {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-sub-form:focus-within {
    border-color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 4px rgba(59, 96, 255, 0.15);
}

.footer-sub-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: var(--white);
    font-size: 14px;
    outline: none;
}

.footer-sub-btn {
    background: var(--primary-blue);
    color: var(--white);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-sub-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1) rotate(-8deg);
    box-shadow: 0 15px 30px rgba(59, 96, 255, 0.4);
}

.box-contact-row {
    display: flex;
    align-items: center;
    gap: 30px;
}

.box-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s;
}

.box-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--primary-blue);
    opacity: 0.8;
}

.box-contact-item:hover {
    color: var(--white);
}

/* Bottom Bar (Seamless) */
.footer-bottom {
    background: #050810;
    padding: 40px 0;
    width: 100%;
}

.footer-bottom .container {
    max-width: 100% !important;
    padding: 0 5%;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 13px;
    color: var(--text-light);
    opacity: 0.4;
    font-weight: 500;
}

.footer-social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
}

/* Branded Hovers */
.social-link.fb:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: white;
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(24, 119, 242, 0.4);
}

.social-link.ig:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-color: transparent;
    color: white;
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(214, 36, 159, 0.4);
}

.social-link.wa:hover {
    background: #25D366;
    border-color: #25D366;
    color: white;
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
}

.social-link.li:hover {
    background: #0A66C2;
    border-color: #0A66C2;
    color: white;
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(10, 102, 194, 0.4);
}

.social-link.tw:hover {
    background: #000000;
    border-color: #333333;
    color: white;
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
}

.social-link.tk:hover {
    background: #000000;
    border-color: #333333;
    color: white;
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
}

.social-link.yt:hover {
    background: #FF0000;
    border-color: #FF0000;
    color: white;
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(255, 0, 0, 0.4);
}

@media (max-width: 1100px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .footer-action .footer-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .box-content p {
        margin: 0 auto 20px;
    }

    .box-contact-row {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-logo-area p {
        margin: 0 auto;
    }
}

/* Otomatik Logo Rengi Ayarlayıcı */
#site-header.scrolled .logo img,
.login-logo .logo img,
.footer-logo .logo img {
    filter: brightness(0) invert(13%) sepia(33%) saturate(3362%) hue-rotate(198deg) brightness(93%) contrast(93%) !important;
    transition: filter 0.3s ease;
}

/* ═══════════════════════════════════════════════════════
   GLOBAL CONTACT MODAL TASARIMI
   ═══════════════════════════════════════════════════════ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 26, 51, 0.4);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    border-radius: 32px;
    width: 100%;
    max-width: 550px;
    /* Default width */
    padding: 10px;
    position: relative;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    z-index: 10001;
}

/* Modali Harita Mevcutken Genişlet */
.modal-content.has-map {
    max-width: 1100px;
}

.modal-main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: stretch;
}

.modal-main-grid.has-map {
    grid-template-columns: 1fr 1fr;
}

.modal-overlay.active .modal-content {
    opacity: 1;
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #f1f5f9;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-900);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: #fee2e2;
    color: #ef4444;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 35px;
}

.modal-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 900;
    color: var(--navy-900);
    margin-bottom: 10px;
}

.modal-header p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    font-size: 12px;
    font-weight: 800;
    color: var(--navy-900);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.modal-form input,
.modal-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.modal-form input:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(59, 96, 255, 0.1);
}

.modal-submit {
    background: var(--primary-blue);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 14px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.modal-submit:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 96, 255, 0.3);
}

.modal-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 10px 0;
}

.modal-divider::before,
.modal-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.modal-divider span {
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
}

.modal-footer-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.footer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.footer-btn svg {
    width: 18px;
    height: 18px;
}

.footer-btn.whatsapp {
    background: #dcfce7;
    color: #15803d;
}

.footer-btn.whatsapp:hover {
    background: #15803d;
    color: white;
}

.footer-btn.email {
    background: #eff6ff;
    color: #1d4ed8;
}

.footer-btn.email:hover {
    background: #1d4ed8;
    color: white;
}

.modal-right-side {
    height: 100%;
    min-height: 450px;
    border-radius: 24px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

.map-label {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 5;
    background: white;
    padding: 8px 15px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--navy-900);
    pointer-events: none;
}

.map-label svg {
    width: 14px;
    height: 14px;
}

.map-iframe-wrapper {
    flex: 1;
    width: 100%;
    height: 100%;
}

.map-iframe-wrapper iframe {
    width: 100% !important;
    height: 100% !important;
    border: none;
    display: block;
}

/* ═══════════════════════════════════════════════════════
   GELİŞMELER (BLOG) SAYFASI TASARIMI
   ═══════════════════════════════════════════════════════ */
.news-hero {
    background: linear-gradient(135deg, #0d213b 0%, #081a33 100%);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    color: white;
}

.news-hero-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 96, 255, 0.1) 0%, transparent 70%);
}

/* ═══════════════════════════════════════════════════════
   PRELOADER / YÜKLEME EKRANI
   ═══════════════════════════════════════════════════════ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #081a33;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.preloader-content {
    text-align: center;
    width: 400px;
    position: relative;
}

.preloader-logo-container {
    position: relative;
    width: 350px;
    height: 160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-logo-container img,
.logo-text-preloader {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
}

.logo-gray {
    filter: grayscale(100%) brightness(0.4);
    opacity: 0.3;
}

.logo-color {
    clip-path: inset(100% 0 0 0);
    animation: logo-fill 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.logo-text-preloader {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo-text-preloader.logo-gray {
    color: #1e293b;
}

.logo-text-preloader.logo-color {
    color: white;
}

.logo-text-preloader span {
    color: #3b82f6;
}

@keyframes logo-fill {
    0% {
        clip-path: inset(100% 0 0 0);
    }

    100% {
        clip-path: inset(0% 0 0 0);
    }
}

/* ═══════════════════════════════════════════════════════
   PREMIUM VIDEO MODAL
   ═══════════════════════════════════════════════════════ */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 12, 24, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(25px) saturate(200%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.video-modal-overlay.active {
    opacity: 1;
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 95%;
    max-width: 1200px;
    background: linear-gradient(135deg, #0a1829 0%, #060e1a 60%, #101a2b 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 80px 0 rgba(59, 130, 246, 0.10), 0 2px 24px 0 rgba(0, 0, 0, 0.45);
    transform: translateY(24px) scale(0.98);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal-overlay.active .video-modal-content {
    transform: translateY(0) scale(1) !important;
    opacity: 1 !important;
}

.video-modal-header-bar {
    background: linear-gradient(to right, #0a1829, #060e1a);
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.video-modal-header-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.video-modal-logo {
    height: 36px;
    padding-right: 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}

.video-modal-logo img {
    height: 100%;
    width: auto;
}

.video-logo-txt {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
}

.video-logo-txt span {
    color: #3b82f6;
}

.video-modal-title-group {
    display: flex;
    flex-direction: column;
}

.video-modal-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.2px;
}

.video-modal-subtitle {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

.video-modal-close {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-modal-close svg {
    width: 22px;
    height: 22px;
}

.video-modal-close:hover {
    background: #ef4444;
    color: white;
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}

.video-container-premium {
    padding: 4px;
    background: #000;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 20px;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ═══════════════════════════════════════════════════════
   SPONSOR MARQUEE
   ═══════════════════════════════════════════════════════ */
.sponsors-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 40px;
    padding: 20px 0;
    display: flex;
}

.marquee-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    animation: scroll-marq 40s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 80px;
    padding-right: 80px;
}

@keyframes scroll-marq {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.sponsor-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.sponsor-logo-link:hover {
    transform: translateY(-4px);
}

.sponsor-logo-link img {
    max-width: 320px;
    max-height: 120px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0) invert(40%);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.sponsor-logo-link:hover img {
    filter: grayscale(0%) brightness(1) invert(0%);
    transform: scale(1.08);
}

.sponsor-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #6b7280;
    transition: color 0.3s ease;
}

.sponsor-logo-link:hover .sponsor-text {
    color: #374151;
}

.btn-video {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-video svg {
    width: 20px;
    height: 20px;
    color: #3b82f6;
    transition: transform 0.3s ease;
}

.btn-video:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #3b82f6;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.btn-video:hover svg {
    transform: scale(1.2);
}

.news-filters {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
}

.filter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-btn {
    background: white;
    color: var(--navy-900);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

.filter-btn.active {
    background: var(--navy-900);
    color: white;
    border-color: var(--navy-900);
    box-shadow: 0 10px 25px rgba(7, 21, 39, 0.2);
}

.filter-btn:hover:not(.active) {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.card-tag {
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

.tag-sort-info {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.tag-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
}

.news-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 70px rgba(8, 26, 51, 0.08);
}

.news-card-img {
    height: 250px;
    position: relative;
    overflow: hidden;
    background: #f8fafc;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover .news-card-img img {
    transform: scale(1.08);
    filter: brightness(0.6);
}

.news-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 25, 48, 0.4);
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(4px);
}

.news-card-overlay span {
    color: white;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    border: 1.5px solid white;
    border-radius: 50px;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.news-card:hover .news-card-overlay {
    opacity: 1;
}

.news-card:hover .news-card-overlay span {
    transform: translateY(0);
}

.news-card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.news-card-date {
    font-size: 13px;
    font-weight: 700;
    color: #94a3b8;
}

.news-card-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    padding: 5px 0;
}

.card-tag {
    background: #f1f5f9;
    color: #64748b;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

.card-tag:hover {
    background: var(--primary-light);
    color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.news-card-title {
    font-size: 20px;
    font-weight: 900;
    color: var(--navy-900);
    line-height: 1.4;
    margin-bottom: 12px;
    cursor: pointer;
}

.news-card-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.news-btn {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: #f8fafc;
    border-radius: 14px;
    font-weight: 800;
    font-size: 13px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.news-card:hover .news-btn {
    background: var(--primary-blue);
    color: white;
}

.news-card-placeholder {
    width: 100%;
    height: 100%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}

.no-news {
    grid-column: 1/-1;
    text-align: center;
    padding: 100px 0;
}

.no-news-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.no-news h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy-900);
}

.no-news p {
    color: #64748b;
}

.news-btn {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    background: #f1f5f9;
    border-radius: 16px;
    font-weight: 800;
    font-size: 13px;
    color: var(--navy-900);
    transition: all 0.3s ease;
}

.news-card:hover .news-btn {
    background: var(--primary-blue);
    color: white;
}

.search-area input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: white;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.search-area svg {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    color: #64748b;
}

@media (max-width: 900px) {
    .modal-main-grid {
        grid-template-columns: 1fr !important;
    }

    .modal-content {
        padding: 30px;
        margin: 15px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-content.has-map {
        max-width: 550px;
    }

    .modal-right-side {
        min-height: 250px !important;
    }
}

.modal-footer-btns .footer-btn svg {
    width: 20px;
    height: 20px;
}

.modal-footer-btns .footer-btn.whatsapp {
    background: #dcfce7;
    color: #166534;
}

.modal-footer-btns .footer-btn.email {
    background: #eff6ff;
    color: #1e40af;
}

.modal-footer-btns .footer-btn:hover {
    transform: translateY(-3px);
    filter: brightness(0.95);
}

/* ═══════════════════════════════════════════════════════
   STORE SAYFASI TASARIMI
   ═══════════════════════════════════════════════════════ */
.store-hero {
    background: linear-gradient(135deg, #0d213b 0%, #081a33 100%);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    color: white;
}

.store-hero-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 96, 255, 0.1) 0%, transparent 70%);
}

.store-filters {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 30px;
}

.category-tab {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px 25px;
    border-radius: 100px;
    font-size: 13px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-tab:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.category-tab.active {
    background: var(--navy-900) !important;
    color: white !important;
    border: none !important;
    font-weight: 800;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

.product-card {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(8, 26, 51, 0.1);
}

.product-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    position: relative;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.product-img:hover .p-img.active {
    transform: scale(1.05);
}

.product-price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(8, 26, 51, 0.8);
    backdrop-filter: blur(12px);
    color: white;
    padding: 10px 22px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 25;
}

.product-price-label {
    font-size: 11px;
    opacity: 0.7;
    display: block;
    line-height: 1;
    margin-bottom: 2px;
}

.product-stock-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 25;
    backdrop-filter: blur(8px);
}

.product-stock-badge.status-ok {
    background: rgba(236, 253, 245, 0.9);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.product-stock-badge.status-ok .product-stock-dot {
    background: #10b981;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.product-stock-badge.status-no {
    background: rgba(254, 242, 242, 0.9);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.product-stock-badge.status-no .product-stock-dot {
    background: #ef4444;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.product-content {
    padding: 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--navy-900);
    margin-bottom: 15px;
    cursor: pointer;
}

.product-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
    flex: 1;
}

.store-buy-btn {
    text-decoration: none;
    padding: 18px;
    border-radius: 18px;
    font-weight: 800;
    font-size: 14px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #f1f5f9;
    color: var(--navy-900);
    transition: all 0.3s ease;
}

.product-card:hover .store-buy-btn:not(.disabled) {
    background: var(--primary-blue);
    color: white;
}

.store-buy-btn.disabled {
    background: #f1f5f9;
    color: #94a3b8;
    cursor: not-allowed;
    opacity: 1;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.p-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.img-nav {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 20;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    padding: 5px 10px;
    border-radius: 20px;
}

.nav-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(8, 26, 51, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: var(--primary-blue);
    transform: scale(1.2);
}

/* PRODUCT DETAIL MODAL */
#product-detail-modal {
    display: none;
    position: fixed;
    z-index: 4000;
    inset: 0;
    background: rgba(7, 21, 39, 0.8);
    backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

#product-detail-modal.active {
    display: flex !important;
    opacity: 1;
}

.modal-container {
    background: white;
    width: 100%;
    max-width: 1100px;
    max-height: 85vh;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

#product-detail-modal.active .modal-container {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    box-shadow: 0 50px 100px -20px rgba(7, 21, 39, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
}



.modal-image-side {
    background: white;
    position: relative;
    overflow: hidden;
    border-right: 1px solid rgba(0, 0, 0, 0.03);
}

.modal-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    width: 100%;
    height: 100%;
    gap: 0;
}

.modal-carousel::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

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

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 110;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
}

.modal-image-side:hover .carousel-nav {
    opacity: 1;
    pointer-events: auto;
}

.carousel-nav:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.carousel-nav.prev {
    left: 24px;
}

.carousel-nav.next {
    right: 24px;
}

.carousel-nav svg {
    width: 22px;
    color: var(--navy-900);
}

.modal-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 110;
}

.modal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(8, 26, 51, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-dot.active {
    background: var(--navy-900);
    transform: scale(1.2);
    width: 28px;
    border-radius: 6px;
}

.modal-info-side {
    padding: 60px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    justify-content: flex-start;
}

.modal-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-blue);
    font-size: 10px;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 10px;
    width: fit-content;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(59, 96, 255, 0.15);
}

.modal-title {
    font-size: 48px;
    font-weight: 950;
    color: var(--navy-900);
    line-height: 0.95;
    margin-bottom: 25px;
    letter-spacing: -3px;
}

.modal-price-box {
    background: var(--bg-light);
    padding: 20px 30px;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 35px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    border: 1px solid var(--border-light);
}

#modal-price-val {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-blue);
}

.modal-price-label {
    font-size: 12px;
    opacity: 0.5;
    color: var(--navy-900);
    font-weight: 700;
}


.modal-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 35px;
    max-height: 180px;
    overflow-y: auto;
    padding-right: 15px;
    flex: 0 1 auto;
}

.modal-desc::-webkit-scrollbar {
    width: 5px;
}

.modal-desc::-webkit-scrollbar-track {
    background: transparent;
}

.modal-desc::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 10px;
}


.modal-stock-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 13px;
    font-weight: 800;
    padding: 10px 20px;
    border-radius: 12px;
    width: fit-content;
}

.zoomable-img {
    cursor: zoom-in;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.zoomable-img.zoomed {
    transform-origin: center;
    cursor: grab;
    z-index: 80;
    object-fit: contain !important;
    transition: transform 0.05s linear !important;
}

.modal-stock-tag.ok {
    background: #dcfce7;
    color: #166534;
}

.modal-stock-tag.no {
    background: #fee2e2;
    color: #991b1b;
}

.modal-stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse-stock 2s infinite;
}

.modal-stock-tag.ok .modal-stock-dot {
    background: #22c55e;
}

.modal-stock-tag.no .modal-stock-dot {
    background: #ef4444;
}

@keyframes pulse-stock {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ── DARK THEME OVERRIDES FOR PRODUCT MODAL ── */
[data-theme="dark"] #product-detail-modal {
    background: rgba(0, 0, 0, 0.85);
}

[data-theme="dark"] #product-detail-modal .modal-container {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] #product-detail-modal .modal-info-side {
    background: #1e293b;
}

[data-theme="dark"] #product-detail-modal .modal-price-box {
    background: #0b1120;
    border-color: #334155;
    color: #f8fafc;
}

[data-theme="dark"] #product-detail-modal .modal-price-label {
    color: #94a3b8;
}

[data-theme="dark"] #product-detail-modal #modal-action-btn {
    background: linear-gradient(135deg, var(--primary-blue), #2947d6) !important;
    box-shadow: 0 20px 40px rgba(59, 96, 255, 0.3);
}

[data-theme="dark"] #product-detail-modal .carousel-nav {
    background: #1e293b;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] #product-detail-modal .carousel-nav svg {
    color: #f8fafc;
}

[data-theme="dark"] #product-detail-modal .modal-close-btn {
    background: rgba(15, 23, 42, 0.8) !important;
    backdrop-filter: blur(8px);
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] #product-detail-modal .modal-close-btn:hover {
    background: #ef4444 !important;
    border-color: #ef4444;
}

[data-theme="dark"] #product-detail-modal .modal-dot {
    background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] #product-detail-modal .modal-dot.active {
    background: var(--primary-blue);
}

[data-theme="dark"] #product-detail-modal .modal-stock-tag.ok {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

[data-theme="dark"] #product-detail-modal .modal-stock-tag.no {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

/* ── STORE / NEWS TAG INFO COLORS ── */
.tag-sort-info {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

.tag-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

[data-theme="dark"] .tag-sort-info {
    color: var(--text-light) !important;
}

[data-theme="dark"] .tag-indicator {
    color: var(--text-muted) !important;
}

/* ── PRODUCT CARD DESC LIMIT ── */
.product-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 20px;
    min-height: 2.8em;
    /* To keep card heights consistent */
}


.modal-close-btn {
    position: absolute;
    top: 32px;
    right: 32px;
    border: none;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-close-btn:hover {
    transform: rotate(90deg);
    background: #fee2e2;
    color: #ef4444;
}

.modal-close-btn svg {
    width: 22px;
    color: var(--navy-900);
}

.modal-main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (max-width: 1000px) {
    .modal-container {
        grid-template-columns: 1fr;
        max-width: 600px;
        max-height: 90vh;
    }

    .modal-image-side {
        height: 400px;
    }

    .modal-info-side {
        padding: 40px;
    }

    .modal-title {
        font-size: 28px;
    }
}

.p-img {
    opacity: 0;
    z-index: 1;
}

.p-img.active {
    opacity: 1;
    z-index: 2;
}

/* STORE INFO GRID */
.store-info-grid {
    margin-top: 100px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 50px;
    background: white;
    border-radius: 40px;
    border: 1px solid rgba(8, 26, 51, 0.04);
    box-shadow: 0 20px 60px rgba(8, 26, 51, 0.03);
}

.store-info-item {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
    border-right: 1px solid rgba(0, 0, 0, 0.03);
}

.store-info-item:last-child {
    border-right: none;
}

.store-info-item:hover {
    transform: translateY(-5px);
}

.store-info-icon {
    margin-bottom: 20px;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-info-icon svg {
    width: 44px;
    height: 44px;
    stroke-width: 1.5;
}

.store-info-title {
    font-size: 18px;
    font-weight: 900;
    color: var(--navy-900);
    margin-bottom: 10px;
}

.store-info-text {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .store-info-grid {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .store-info-item {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .store-info-item:last-child {
        border-bottom: none;
    }
}

/* ═══════════════════════════════════════════════════════
   BLOG / HABERLER SAYFASI TASARIMI
   ═══════════════════════════════════════════════════════ */
.news-hero {
    background: linear-gradient(135deg, #0d213b 0%, #081a33 100%);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    color: white;
}

.news-hero-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 96, 255, 0.1) 0%, transparent 70%);
}

.news-filters {
    margin-bottom: 50px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.news-filters .filter-row,
.store-filters .filter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 30px;
}

#dynamic-tags-container,
#dynamic-categories-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
    flex: 1;
    align-items: center;
    mask-image: linear-gradient(to right, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
}

.filter-btn,
.category-tab {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.search-area {
    position: relative;
    width: 320px;
    flex-shrink: 0;
}

.search-area input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    border-radius: 100px;
    border: 1px solid rgba(59, 96, 255, 0.1);
    background: white;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.search-area svg {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    color: var(--primary-blue);
}

.tag-sort-info {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
}

.tag-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.news-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.news-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(8, 26, 51, 0.08);
}

.news-card-img {
    height: 260px;
    position: relative;
    overflow: hidden;
    background: #f1f5f9;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.news-card-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 8px 18px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 800;
    color: var(--navy-900);
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    pointer-events: none;
}

.news-card-content {
    padding: 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.news-card-date {
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
}

.news-card-tags {
    display: flex;
    gap: 8px;
}

.card-tag {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #f1f5f9;
    color: #64748b;
    padding: 4px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.card-tag:hover {
    background: var(--primary-light);
    color: var(--primary-blue);
}

.news-card-title {
    font-size: 20px;
    font-weight: 900;
    color: var(--navy-900);
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-card-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 25px;
    flex: 1;
}

.news-btn {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.news-btn:hover {
    gap: 12px;
}

.news-btn svg {
    width: 18px;
}

.news-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    background: #f1f5f9;
}

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

    .news-hero {
        padding: 120px 0 60px;
    }
}

/* ═══════════════════════════════════════════════════════
   HABER DETAY SAYFASI TASARIMI
   ═══════════════════════════════════════════════════════ */
.post-detail {
    padding-top: 150px;
    padding-bottom: 120px;
}

.post-container {
    max-width: 850px;
}

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

.post-meta {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.post-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: var(--navy-900);
    margin-top: 20px;
    line-height: 1.2;
}

.post-cover {
    border-radius: 36px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
}

.post-cover img {
    width: 100%;
    display: block;
}

.post-content {
    font-size: 18px;
    color: #334155;
    line-height: 1.8;
    white-space: pre-wrap;
}

.post-footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-back-btn {
    text-decoration: none;
    font-weight: 800;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.post-back-btn:hover {
    transform: translateX(-50px);
}

.post-share {
    display: flex;
    gap: 15px;
    align-items: center;
}

.share-label {
    font-size: 14px;
    font-weight: 700;
    color: #94a3b8;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    background: #f1f5f9;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-btn svg {
    width: 18px;
    height: 18px;
}

.share-btn.fb:hover {
    background: #1877F2;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.2);
}

.share-btn.tw:hover {
    background: #000000;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.share-btn.li:hover {
    background: #0A66C2;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(10, 102, 194, 0.2);
}

.share-btn.wa:hover {
    background: #25D366;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.share-btn.ig:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(214, 36, 159, 0.2);
}

/* ── Systems Progress Bar ── */
.system-progress {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.progress-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.progress-val {
    font-size: 14px;
    font-weight: 900;
    color: var(--primary-blue);
}

.progress-track {
    width: 100%;
    height: 10px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    width: var(--p, 0%);
    background: linear-gradient(90deg, var(--primary-blue), #6366f1);
    border-radius: 20px;
    position: relative;
    transition: width 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 2px;
}


.progress-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressGlow 2s infinite linear;
}

@keyframes progressGlow {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Dark Mode Support */
[data-theme="dark"] .system-progress {
    border-top-color: rgba(255, 255, 255, 0.05) !important;
}

[data-theme="dark"] .progress-track {
    background: rgba(255, 255, 255, 0.1) !important;
}

[data-theme="dark"] .progress-label {
    color: var(--text-muted) !important;
}

[data-theme="dark"] .progress-val {
    color: var(--primary-blue) !important;
}

/* ═══════════════════════════════════════════════════════
   MOBİL VE TABLET UYUM (RESPONSIVE) GÜNCELLEMELERİ
   ═══════════════════════════════════════════════════════ */

/* Tablet & Küçük Ekranlar (992px altı) */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: clamp(32px, 5vw, 50px) !important;
    }

    .about-grid, .system-grid, .product-grid, .news-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .footer-top {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .footer-info {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }

    .footer-col {
        flex: 1 1 calc(50% - 20px);
    }
    
    .footer-action {
        width: 100%;
        margin-top: 30px;
    }
}

/* Mobil Cihazlar (768px altı) */
@media (max-width: 768px) {
    /* Genel Padding ve Margin */
    .section {
        padding: 50px 0 !important;
    }

    /* Grid Sistemleri -> 1 Kolon */
    .about-grid, 
    .system-grid, 
    .product-grid, 
    .news-grid,
    .team-grid,
    .sponsor-grid,
    .admin-grid,
    .dashboard-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .about-header,
    .section-header {
        margin-bottom: 30px !important;
    }
    
    /* Stats & Hero */
    .hero-stat-card {
        padding: 15px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px !important;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-title {
        font-size: clamp(28px, 8vw, 36px) !important;
        line-height: 1.2;
    }
    
    /* Footer */
    .footer-col {
        flex: 1 1 100%;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-social-links {
        justify-content: center;
    }

    /* İletişim Formları & Modaller */
    #contact-modal .modal-content {
        flex-direction: column !important;
        width: 95% !important;
        max-width: none !important;
        max-height: 90vh !important;
        overflow-y: auto !important;
    }
    
    #contact-modal .modal-left {
        min-height: 250px !important;
    }

    #contact-modal .modal-right {
        padding: 24px !important;
    }
    
    #contact-modal .form-row {
        grid-template-columns: 1fr !important;
    }
    
    .modal-footer-btns {
        grid-template-columns: 1fr !important;
    }

    /* Header & Navigation Fixes */
    .nav-container {
        padding: 0 15px;
    }
    
    /* Haber/Blog Detay */
    .post-detail {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    .post-title {
        font-size: 26px !important;
    }
    .post-footer {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    .post-share {
        width: 100%;
        justify-content: space-between;
    }
    
    /* Store Tablar */
    .store-filters {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
    .category-tab {
        white-space: nowrap;
    }

    /* Admin Tablolar & Düzen */
    .table-container,
    .data-table-container,
    .admin-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -15px;
        padding: 0 15px;
    }
    .admin-wrapper {
        flex-direction: column !important;
    }
    .admin-sidebar {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        position: relative !important;
    }
    .admin-content {
        padding: 15px !important;
        width: 100% !important;
    }
    .stat-cards {
        grid-template-columns: 1fr !important;
    }
    .panel-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 15px;
    }
    .panel-header-actions {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px !important;
    }
    .panel-header-actions form,
    .panel-header-actions .btn {
        width: 100%;
        display: flex;
    }
    .panel-header-actions .btn {
        justify-content: center;
    }
    
    /* Login Ekranı */
    .auth-card {
        padding: 30px 20px !important;
        width: 90% !important;
    }
}

/* Küçük Ekranlı Telefonlar (480px altı) */
@media (max-width: 480px) {
    .section-title {
        font-size: 26px !important;
    }
    .hero-title {
        font-size: 28px !important;
    }
    .product-price {
        font-size: 22px !important;
    }
    .admin-topbar {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
}