/**
 * ============================================================
 * DOSYA ADI: style.css
 * AÇIKLAMA: Ana stil dosyası - Koyu tema, tam ekran harita
 *           düzeni, sidebar, kartlar, formlar, tablolar,
 *           popup'lar ve animasyonlar
 * PROJE: GES ANALİZ - Güneş Enerjisi Santrali Analiz Sistemi
 * ============================================================
 */

/* GES ANALİZ - Fullscreen Map with Overlay Design */

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-bg: #0f172a;
    --dark-surface: #1e293b;
    --dark-card: #334155;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --border-color: #475569;
    --success-color: #22c55e;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    min-height: 100vh;
    overflow: hidden;
    background-color: var(--dark-bg);
}

/* Screen Reader Only (SEO için görünmez metin) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Header */
.header {
    background: #1e293b; /* Tam opak koyu renk */
    border-bottom: 1px solid rgba(71, 85, 105, 0.5);
    padding: 0 1.5rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    height: 60px; /* Biraz daha kompakt yükseklik */
    display: flex;
    align-items: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo - Gerçek Resim */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo-text span {
    color: var(--primary-light);
}

.logo-img-icon, .logo-img-full {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Mobil menü butonu - sadece mobilde görünür */
.mobile-menu-btn {
    display: none;
    font-size: 1.3rem;
    padding: 0.5rem 0.75rem;
    min-width: 44px;
    justify-content: center;
}

/* Masaüstünde sadece ikonlu butonlar */
.btn-label {
    display: inline;
}

.desktop-hide {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-hide {
        display: none !important;
    }
    .desktop-hide {
        display: block !important;
    }
}

.btn {
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color), #16a34a);
    color: white;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    inset: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-content {
    background: var(--dark-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: var(--primary-light);
}

.close-modal {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.modal-body {
    padding: 1.5rem;
}

.modal-body ol {
    margin-left: 1.25rem;
    color: var(--text-secondary);
}

.modal-body li {
    margin-bottom: 0.75rem;
}

.modal-note {
    background: rgba(37, 99, 235, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1rem;
    margin-top: 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--text-primary);
}

/* Mobil Navigasyon Menüsü */
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 0.5rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.03);
}

.nav-item:hover {
    background: rgba(37, 99, 235, 0.15);
    color: var(--primary-light);
}

.nav-item.active {
    background: var(--primary-color);
    color: white;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--dark-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--border-color);
}

/* Main Container - Fullscreen Map */
.container {
    position: fixed;
    top: 60px;
    /* Header height */
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
}

/* Stats Grid Removed */

/* Grid Layout - Overlay Sidebar + Fullscreen Map */
.grid {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Sidebar - Floating Overlay */
.sidebar {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 380px;
    max-height: calc(100% - 2rem);
    z-index: 600;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

/* Card */
.card {
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    max-height: calc(100vh - 160px);
    overflow-y: auto;
}

.card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.3);
}

.card-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
}

.card-title-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Form */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.8125rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-control option {
    background: var(--dark-surface);
    color: var(--text-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Map Card - Fullscreen */
.map-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

#map {
    height: 100%;
    width: 100%;
}

/* Results Section - Floating Bottom Panel */
.results-section {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 500px;
    max-height: calc(100% - 2rem);
    z-index: 600;
    display: none;
}

.results-section .card {
    max-height: 70vh;
}

/* Alert - Top Center */
.alert {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1100;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: none;
    align-items: center;
    gap: 0.75rem;
    min-width: 300px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.alert.active {
    display: flex;
    animation: slideDown 0.3s ease;
}

.alert-success {
    background: rgba(34, 197, 94, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--success-color);
    color: white;
}

.alert-error {
    background: rgba(239, 68, 68, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--danger-color);
    color: white;
}

.alert-info {
    background: rgba(37, 99, 235, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--primary-color);
    color: white;
}

/* Loading Spinner - Centered Overlay */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    flex-direction: column;
    gap: 1rem;
}

.loading.active {
    display: flex;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(71, 85, 105, 0.3);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading p {
    color: var(--text-primary);
    font-weight: 600;
}

/* Table */
.table-container {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid rgba(71, 85, 105, 0.3);
    max-height: 50vh;
    overflow-y: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table thead {
    background: var(--dark-card);
    position: sticky;
    top: 0;
    z-index: 10;
}

.table th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--border-color);
}

.table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(71, 85, 105, 0.2);
    color: var(--text-primary);
    font-size: 0.875rem;
}

.table tbody tr:hover {
    background: rgba(37, 99, 235, 0.1);
}

/* Parcel Summary */
.parcel-summary {
    margin-bottom: 1.5rem;
}

.summary-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 12px;
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.summary-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.summary-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.summary-item.Highlight .summary-value {
    color: var(--primary-light);
    font-size: 1.125rem;
    font-weight: 700;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translate(-50%, -20px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(30, 41, 59, 0.3);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* ========================================
   TRANSFORMER MAP VISUALIZATION STYLES
   ======================================== */

/* Trafo İşaretçisi */
.transformer-marker {
    background: transparent;
    border: none;
}

.transformer-icon {
    position: relative;
    width: 50px;
    height: 50px;
    background: rgba(245, 158, 11, 0.95);
    backdrop-filter: blur(10px);
    border: 3px solid #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.transformer-icon:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.7);
}

.transformer-icon.closest {
    background: rgba(34, 197, 94, 0.95);
    border-color: #22c55e;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.6);
    animation: pulse 2s infinite;
}

.transformer-icon.closest:hover {
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.8);
}

@keyframes pulse {

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

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.transformer-icon .icon {
    font-size: 24px;
    line-height: 1;
}

.transformer-icon .distance {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.95);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Trafo Popup */
.transformer-popup .leaflet-popup-content-wrapper {
    background: rgba(30, 41, 59, 0.98);
    backdrop-filter: blur(20px);
    color: #f8fafc;
    border-radius: 16px;
    border: 2px solid rgba(59, 130, 246, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    padding: 0;
}

.transformer-popup .leaflet-popup-tip {
    background: rgba(30, 41, 59, 0.98);
    border: 2px solid rgba(59, 130, 246, 0.5);
}

.transformer-popup-content {
    padding: 1rem;
}

.transformer-popup-content .title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.transformer-popup-content .title.closest {
    color: #22c55e;
    border-bottom-color: rgba(34, 197, 94, 0.3);
}

.transformer-popup-content .info-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.transformer-popup-content .info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    gap: 1rem;
}

.transformer-popup-content .info-row.capacity-row {
    background: rgba(59, 130, 246, 0.1);
    border-left: 3px solid #3b82f6;
}

.transformer-popup-content .info-row.capacity-row.actual-data {
    background: rgba(34, 197, 94, 0.1);
    border-left-color: #22c55e;
}

.transformer-popup-content .label {
    font-size: 0.8125rem;
    color: #cbd5e1;
    font-weight: 600;
    min-width: 120px;
}

.transformer-popup-content .value {
    font-size: 0.875rem;
    color: #f8fafc;
    font-weight: 500;
    text-align: right;
    flex: 1;
}

.transformer-popup-content .value.highlight {
    color: #22c55e;
    font-weight: 700;
    font-size: 1rem;
}

.transformer-popup-content .capacity-value {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.transformer-popup-content .badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.transformer-popup-content .badge.actual {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid #22c55e;
}

.transformer-popup-content .badge.estimated {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid #f59e0b;
}

.transformer-popup-content .data-quality {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(34, 197, 94, 0.1);
    border-left: 3px solid #22c55e;
    border-radius: 8px;
    font-size: 0.75rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.transformer-popup-content .data-quality.estimated {
    background: rgba(245, 158, 11, 0.1);
    border-left-color: #f59e0b;
}

/* Trafo Tooltip */
.transformer-tooltip {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(59, 130, 246, 0.5);
    border-radius: 8px;
    color: white;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.transformer-tooltip::before {
    border-top-color: rgba(15, 23, 42, 0.95);
}

/* Mesafe Çizgisi */
.distance-line {
    pointer-events: none;
}

/* Mesafe Etiketi */
.distance-label {
    background: transparent;
    border: none;
}

.distance-label-content {
    background: rgba(245, 158, 11, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid #f59e0b;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.5);
    white-space: nowrap;
}

.distance-label-content .icon {
    font-size: 1.125rem;
}

.distance-label-content .text {
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
}

/* ========================================
   RESPONSIVE - TABLET & MOBİL UYUMLULUK
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .logo-img-full {
        max-width: 200px;
    }
}

/* Mobilde genel gövde ayarı */
@media (max-width: 768px) {
    body {
        position: fixed;
        width: 100%;
        height: 100%;
        overflow: hidden;
        overscroll-behavior: none;
    }

    /* Header - Daha dar ve temiz */
    .header {
        height: 56px;
        padding: 0 1rem;
        z-index: 1100;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(12px);
    }

    .logo {
        gap: 0.4rem;
    }

    .logo-img { height: 28px; }
    .logo-text { font-size: 0.95rem !important; }

    /* Masaüstü butonlarını mobilde tamamen gizle */
    .mobile-hide {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex !important;
    }

    /* Üst üste binmeyi önlemek için konteyner ayarı */
    .container {
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        bottom: 0;
        height: auto;
        padding: 0;
    }

    .grid {
        display: block;
        height: 100%;
    }

    .map-card {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        z-index: 1;
    }

    #map {
        height: 100% !important;
        border-radius: 0;
    }

    /* Sidebar - Arama Menüsü */
    .sidebar {
        position: fixed;
        bottom: 0;
        top: auto;
        height: auto;
        max-height: 80vh;
        z-index: 1200; /* Alt katman */
        transform: translateY(110%);
        transition: transform 0.3s ease-out;
    }
    
    .sidebar.mobile-open {
        transform: translateY(0);
    }

    /* Sonuçlar açıldığında arama menüsünü tamamen gizle */
    body.results-open .sidebar {
        transform: translateY(110%) !important;
        pointer-events: none;
        visibility: hidden;
    }

    /* Sonuçlar Paneli - Analiz Sonuçları */
    .results-section {
        position: fixed;
        bottom: 0;
        top: auto;
        width: 100%;
        max-height: 85vh;
        z-index: 1500; /* Üst katman - Sidebar'ın üzerinde çıkar */
        background: var(--dark-bg);
        border-radius: 24px 24px 0 0;
        transform: translateY(110%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        padding-bottom: 2rem;
        box-shadow: 0 -15px 50px rgba(0,0,0,0.8);
    }

    .results-section:not(.hidden) {
        transform: translateY(0);
    }
    
    /* Sonuçlar Handle */
    .results-section::before {
        content: '';
        display: block;
        width: 40px;
        height: 5px;
        background: rgba(255,255,255,0.2);
        border-radius: 3px;
        margin: 12px auto;
    }

    .results-section .card {
        background: transparent;
        padding: 0.5rem 0;
        box-shadow: none;
    }

    /* Form ve Tablo Düzenleri */
    .form-group { margin-bottom: 0.75rem; }
    .form-group label { font-size: 0.75rem; margin-bottom: 0.25rem; }
    
    select, input {
        height: 48px !important; /* Touch friendly */
        font-size: 1rem !important;
    }

    .table-container {
        max-height: 40vh;
        border-radius: 12px;
        background: rgba(0,0,0,0.2);
    }

    /* Floating Action Buttons (FAB) Fix */
    #alert {
        top: auto;
        bottom: 2rem;
        left: 1rem;
        right: 1rem;
        width: auto;
        padding: 1rem;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.3);
        z-index: 2000;
        transform: translateY(200%);
        transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    }

    #alert.active { transform: translateY(0); }

    /* Map UI Controls Fix */
    .leaflet-top { top: 64px !important; }
    .leaflet-left { left: 12px !important; }
    .leaflet-control-zoom { border: none !important; box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important; }

    /* Buttons */
    .btn {
        height: 52px;
        border-radius: 14px;
        font-size: 0.95rem;
        font-weight: 600;
    }
}

/* Küçük ekran özel fixleri */
@media (max-width: 380px) {
    .logo-text { display: none; }
    .header { padding: 0 0.75rem; }
}

/* Çok küçük ekranlar (≤400px) */
@media (max-width: 400px) {
    .logo-img-full {
        max-width: 120px;
    }

    .logo-img-icon {
        height: 34px;
        width: 34px;
    }
}