/* ==========================================================================
   FONMAGDURU.COM - Modern Finans & Hukuk Teknolojisi Stil Dosyası
   ========================================================================== */

:root {
    --primary: #0f172a;        /* Derin Gece Laciverti */
    --primary-light: #1e293b;
    --brand-blue: #2563eb;     /* Finansal Mavi */
    --brand-blue-hover: #1d4ed8;
    --accent-gold: #f59e0b;    /* Altın Vurgu */
    --accent-red: #ef4444;     /* Kritik Durum / Kriz */
    --accent-emerald: #10b981; /* Başarı / Onay */
    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    --border-focus: #3b82f6;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.04);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.04);
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sıfırlama ve Temel */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#mainContent {
    flex: 1 0 auto;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

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

a:hover {
    color: var(--brand-blue-hover);
}

img, svg {
    vertical-align: middle;
}

/* ==========================================================================
   ÜST DUYURU ŞERİDİ
   ========================================================================== */
.top-announcement-bar {
    background: #090d16;
    color: #e2e8f0;
    font-size: 0.8125rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.announcement-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--accent-red);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    animation: pulseRed 1.8s infinite;
}

@keyframes pulseRed {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.top-link {
    color: #38bdf8;
    font-weight: 600;
}

.top-link:hover {
    color: #7dd3fc;
    text-decoration: underline;
}

/* ==========================================================================
   HEADER & MENÜ (Masaüstünde Logo Altında Menü - Mobilde Sadece Hamburger)
   ========================================================================== */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

/* 1. Katman: Üst Satır (Logo solda, Sağda telefon + butonlar) */
.header-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0 12px;
}

.site-branding .brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #1e3a8a, #0f172a);
    color: #ffffff;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(30, 58, 138, 0.25);
}

.brand-icon svg {
    width: 24px;
    height: 24px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--primary);
    line-height: 1.15;
}

.brand-accent {
    color: #dc2626; /* Mağduru vurgusu */
}

.brand-tld {
    color: var(--brand-blue);
    font-size: 0.9em;
}

.brand-tagline {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
}

/* Masaüstü Üst Sağ Alan */
.header-top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-contact-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: #f1f5f9;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: var(--transition);
}

.header-contact-pill:hover {
    background: #e2e8f0;
    transform: translateY(-1px);
}

.contact-pill-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #059669;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-pill-icon svg {
    width: 16px;
    height: 16px;
}

.contact-pill-text {
    display: flex;
    flex-direction: column;
}

.contact-pill-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    font-weight: 700;
}

.contact-pill-number {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--primary);
}

.header-action-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Buton Stilleri */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 18px;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary-nav {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary-nav:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

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

.btn-outline-nav:hover {
    background: #f8fafc;
    border-color: var(--text-muted);
}

/* 2. Katman: Masaüstünde LOGO ALTINDA YER ALAN MENÜ */
.desktop-subnav-bar {
    border-top: 1px solid var(--border-color);
    padding: 2px 0;
    margin-top: 2px;
}

.nav-menu-list {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.nav-menu-list::-webkit-scrollbar {
    display: none;
}

.nav-item {
    flex-shrink: 0;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--brand-blue);
    background: #f1f5f9;
}

.nav-item.active .nav-link {
    color: var(--brand-blue);
    font-weight: 700;
    background: #eff6ff;
}

.nav-link.highlight-link {
    color: #dc2626;
    font-weight: 700;
}

.nav-link.highlight-link:hover {
    background: #fef2f2;
}

.nav-sub-badge {
    background: #dc2626;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
}

/* ==========================================================================
   MOBİL HAMBURGER VE ÇEKMECE MENÜ (HEADER'DA SADECE LOGO + HAMBURGER)
   ========================================================================== */
.mobile-only {
    display: none !important;
}

.desktop-only {
    display: flex !important;
}

.hamburger-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 6px;
    border-radius: var(--radius-md);
    background: #f1f5f9;
}

.hamburger-bar {
    width: 22px;
    height: 2.5px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #ffffff;
    z-index: 9999;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu-drawer.active {
    right: 0;
}

.mobile-drawer-inner {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 14px;
}

.mobile-drawer-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
}

.drawer-close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0 4px;
}

.mobile-drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-item {
    display: block;
    padding: 11px 14px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.mobile-nav-item:hover, .mobile-nav-item.highlight {
    background: #f1f5f9;
    color: var(--brand-blue);
}

.mobile-nav-item.highlight {
    color: #dc2626;
    font-weight: 700;
}

.mobile-drawer-contact {
    margin-top: 10px;
    padding: 16px;
    background: #f8fafc;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.drawer-contact-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
}

.drawer-phone-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: var(--primary);
    font-size: 1.05rem;
}

.drawer-whatsapp-btn {
    display: block;
    background: #22c55e;
    color: #ffffff !important;
    text-align: center;
    padding: 10px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.875rem;
}

.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(2px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   HERO BÖLÜMÜ
   ========================================================================== */
.hero-section {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    padding: 70px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.25) 0%, transparent 60%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 700;
    color: #38bdf8;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.75rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hero-title span {
    background: linear-gradient(135deg, #60a5fa, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #ffffff !important;
    font-size: 1.1rem;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
    font-weight: 800;
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(220, 38, 38, 0.5);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1rem;
    padding: 15px 26px;
    border-radius: var(--radius-md);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
}

.hero-cta-note {
    font-size: 0.875rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Hero Sağ Kart (Canlı Kriz / Mağduriyet Özeti) */
.hero-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 14px;
}

.hero-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.stat-box {
    background: rgba(0, 0, 0, 0.25);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #38bdf8;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-urgent-funds {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fund-alert-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.04);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border-left: 3px solid #ef4444;
}

.f-code {
    font-weight: 800;
    color: #ffffff;
    font-size: 0.95rem;
}

.f-status {
    font-size: 0.75rem;
    color: #fca5a5;
    background: rgba(239, 68, 68, 0.2);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

/* ==========================================================================
   PROJE ANA SÜRECİ (1 - 9 ADIMLARI)
   ========================================================================== */
.section {
    padding: 70px 0;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--brand-blue);
    background: #dbeafe;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 14px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.process-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: #cbd5e1;
}

.process-step-num {
    width: 36px;
    height: 36px;
    background: #0f172a;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.process-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.process-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ==========================================================================
   TABLOLAR VE FON KARTLARI
   ========================================================================== */
.table-responsive {
    overflow-x: auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.92rem;
}

.data-table th {
    background: #f8fafc;
    color: var(--primary);
    font-weight: 700;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-color);
    white-space: nowrap;
}

.data-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:hover td {
    background: #f8fafc;
}

.badge-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.badge-status.tasfiye {
    background: #fee2e2;
    color: #991b1b;
}

.badge-status.kisitli {
    background: #fef3c7;
    color: #92400e;
}

.badge-status.izleniyor {
    background: #e0e7ff;
    color: #3730a3;
}

.badge-status.aktif {
    background: #dcfce7;
    color: #166534;
}

/* ==========================================================================
   FORM & SİHİRBAZ (WIZARD) STİLLERİ
   ========================================================================== */
.wizard-container {
    max-width: 840px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 36px;
}

.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.wizard-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--border-color);
    transform: translateY(-50%);
    z-index: 1;
}

.progress-bar-fill {
    position: absolute;
    top: 50%;
    left: 0;
    height: 4px;
    background: var(--brand-blue);
    transform: translateY(-50%);
    z-index: 2;
    transition: width 0.3s ease;
}

.step-indicator {
    position: relative;
    z-index: 3;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.step-indicator.active {
    border-color: var(--brand-blue);
    background: var(--brand-blue);
    color: #ffffff;
}

.step-indicator.completed {
    border-color: var(--accent-emerald);
    background: var(--accent-emerald);
    color: #ffffff;
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.step-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.option-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.option-card-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    background: #ffffff;
}

.option-card-label:hover {
    border-color: #93c5fd;
    background: #f8fafc;
}

.option-card-label input[type="radio"],
.option-card-label input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--brand-blue);
}

.option-card-label.selected {
    border-color: var(--brand-blue);
    background: #eff6ff;
}

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: #ffffff;
    color: var(--text-main);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.wizard-nav-btns {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* ==========================================================================
   DELİL VE SONUÇ KARTLARI
   ========================================================================== */
.score-circle-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #eff6ff;
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid #bfdbfe;
    margin-bottom: 24px;
}

.score-badge-big {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-blue);
}

.delil-matrix-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}

.delil-matrix-table th, .delil-matrix-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border-color);
}

.delil-matrix-table th {
    background: #f1f5f9;
    font-size: 0.85rem;
    text-transform: uppercase;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: #090d16;
    color: #94a3b8;
    margin-top: auto;
}

.footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo .brand-name {
    color: #ffffff;
    font-size: 1.35rem;
}

.footer-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-contact-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.f-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    font-size: 0.875rem;
}

.f-phone-link {
    color: #38bdf8;
    font-weight: 700;
    font-size: 1.05rem;
}

.footer-heading {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.admin-f-link {
    color: #64748b !important;
    font-size: 0.78rem !important;
}

.security-badges {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.sec-badge {
    background: rgba(255, 255, 255, 0.06);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: #cbd5e1;
}

.footer-legal-notice {
    padding: 24px 0;
    background: #05080e;
    font-size: 0.78rem;
    line-height: 1.6;
    color: #64748b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom {
    padding: 20px 0;
    background: #05080e;
    font-size: 0.8125rem;
}

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

.bottom-support-badge a {
    color: #38bdf8;
    font-weight: 700;
}

/* ==========================================================================
   RESPONSIVE DÜZENLEMELER (Özellikle Mobil Kurallar)
   ========================================================================== */
@media (max-width: 1024px) {
    /* MASAÜSTÜ ÖĞELERİNİ GİZLE */
    .desktop-only {
        display: none !important;
    }

    /* MOBİL ÖĞELERİNİ GÖSTER */
    .mobile-only {
        display: flex !important;
    }

    /* Mobil Header: Butonlar kaldırıldı, sadece Logo ve Hamburger */
    .header-top-row {
        padding: 12px 0;
    }

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

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

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .option-cards-grid {
        grid-template-columns: 1fr;
    }

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

    .wizard-container {
        padding: 20px;
    }
}
