@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- TASARIM SİSTEMİ (TOKENLAR VE DEĞİŞKENLER) --- */
:root {
    --bg-primary: #0a0b0d; /* Ultra Koyu Antrasit */
    --bg-secondary: #121418; /* Koyu Kömür */
    --bg-card: rgba(22, 26, 33, 0.65); /* Glassmorphism Panel Arka Planı */
    --bg-card-hover: rgba(30, 36, 45, 0.85);
    
    --text-primary: #f8fafc; /* Parlak Beyaz */
    --text-secondary: #94a3b8; /* Gümüş Gri */
    --text-muted: #64748b; /* Koyu Gri Muted */
    
    --accent-gold: #c5a880; /* İka Premium Altın Sarısı */
    --accent-gold-rgb: 197, 168, 128;
    --accent-gold-hover: #b49366;
    
    --accent-cyan: #0ea5e9; /* Operasyonel Siber Mavi / Cyan */
    --accent-cyan-rgb: 14, 165, 233;
    
    --accent-danger: #ef4444; /* Haciz/Bildirim Kırmızısı */
    --accent-danger-rgb: 239, 68, 68;
    --accent-success: #10b981; /* Bulundu/Doğrulandı Yeşili */
    
    --border-color: rgba(197, 168, 128, 0.15); /* Hafif Altın Kenarlık */
    --border-color-glow: rgba(197, 168, 128, 0.35);
    --border-dark: rgba(255, 255, 255, 0.05);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.7);
    --glow-gold: 0 0 15px rgba(var(--accent-gold-rgb), 0.2);
    --glow-cyan: 0 0 15px rgba(var(--accent-cyan-rgb), 0.25);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

/* --- GENEL SIFIRLAMA --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

/* --- ARKA PLAN EFEKTLERİ --- */
.bg-glow-effect {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--accent-gold-rgb), 0.05) 0%, rgba(0,0,0,0) 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
    z-index: -1;
    filter: blur(80px);
}

.bg-glow-effect-bottom {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--accent-cyan-rgb), 0.03) 0%, rgba(0,0,0,0) 70%);
    bottom: -150px;
    left: -100px;
    pointer-events: none;
    z-index: -1;
    filter: blur(80px);
}

/* --- TİPOGRAFİ --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

p {
    color: var(--text-secondary);
}

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

/* --- ORTAK BİLEŞENLER & CLASSLAR --- */

/* Glassmorphism Panel */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.glass-panel:hover {
    border-color: var(--border-color-glow);
    box-shadow: var(--shadow-lg), var(--glow-gold);
    transform: translateY(-2px);
}

/* Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-primary {
    background-color: var(--accent-gold);
    color: #0c0e12;
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(var(--accent-gold-rgb), 0.3);
}

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

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.btn-danger {
    background-color: rgba(var(--accent-danger-rgb), 0.15);
    color: var(--accent-danger);
    border: 1px solid rgba(var(--accent-danger-rgb), 0.3);
}

.btn-danger:hover {
    background-color: var(--accent-danger);
    color: white;
    transform: translateY(-2px);
}

/* Badge (Durum Rozetleri) */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-danger {
    background-color: rgba(var(--accent-danger-rgb), 0.15);
    color: var(--accent-danger);
    border: 1px solid rgba(var(--accent-danger-rgb), 0.2);
}

.badge-success {
    background-color: rgba(16, 185, 129, 0.15);
    color: var(--accent-success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-warning {
    background-color: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

/* --- HEADER / NAV --- */
header.site-header {
    background: rgba(10, 11, 13, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-dark);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* SVG Logo Styling */
.logo-link {
    display: flex;
    align-items: center;
}

.logo-svg {
    height: 48px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1.8rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobil Menü Butonu */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- ANA EKRAN (HERO) --- */
.hero-section {
    position: relative;
    padding: 8rem 1.5rem 6rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(197, 168, 128, 0.1);
    color: var(--accent-gold);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(197, 168, 128, 0.2);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    animation: float 3s ease-in-out infinite;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-title span {
    background: linear-gradient(135deg, var(--accent-gold) 30%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* --- CANLI SAYAÇLAR (STATS) --- */
.stats-section {
    padding: 3rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- HİZMET ÖZETLERİ --- */
.services-highlight {
    padding: 5rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: 2.2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-link {
    margin-top: auto;
    padding-top: 1.5rem;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.service-link:hover {
    color: var(--accent-gold-hover);
}

.service-link:hover svg {
    transform: translateX(3px);
}

.service-link svg {
    transition: var(--transition-fast);
}

/* --- INTERAKTIF BÖLÜM CTA --- */
.interactive-cta-section {
    padding: 5rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-box {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-image-mockup {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--glow-cyan);
}

.pulse-radar {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    top: 40%;
    left: 60%;
}

.pulse-radar::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--accent-cyan);
    animation: pulse 1.8s infinite ease-out;
}

/* --- HAKKIMIZDA SAYFASI --- */
.page-header {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 6rem 1.5rem 3rem;
    text-align: center;
    border-bottom: 1px solid var(--border-dark);
}

.page-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.page-container {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.about-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

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

/* --- PLAKA SORGULA --- */
.query-box {
    max-width: 600px;
    margin: 2rem auto;
}

.search-input-group {
    display: flex;
    background: rgba(10, 11, 13, 0.6);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.4rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.search-input-group:focus-within {
    border-color: var(--accent-gold);
    box-shadow: var(--glow-gold);
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 1.3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    letter-spacing: 0.05em;
}

.search-input::placeholder {
    color: var(--text-muted);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.search-btn {
    border-radius: 4px;
}

/* Sonuç Panelleri */
.result-panel {
    display: none;
    animation: slideUp 0.4s ease-out forwards;
}

.result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.result-plate-box {
    background: #ffffff;
    color: #000000;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    padding: 0.3rem 1rem;
    border-radius: 4px;
    border: 2px solid #000000;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.result-plate-box::before {
    content: 'TR';
    background: #003399;
    color: #ffffff;
    font-size: 0.65rem;
    padding: 0.4rem 0.25rem;
    margin-right: 0.5rem;
    border-radius: 2px;
    display: flex;
    align-items: center;
}

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

.info-item label {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.info-item span {
    font-size: 1.05rem;
    font-weight: 600;
}

.reward-info-box {
    background: rgba(197, 168, 128, 0.08);
    border: 1px dashed var(--accent-gold);
    border-radius: var(--radius-sm);
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.reward-amount {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-gold);
}

/* --- ARAÇ BİLDİR SAYFASI --- */
.form-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    background: rgba(10, 11, 13, 0.8);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.8rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--accent-gold);
    outline: none;
    box-shadow: var(--glow-gold);
}

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

/* Resim Yükleme Dropzone */
.file-upload-wrapper {
    position: relative;
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-sm);
    padding: 2.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.file-upload-wrapper:hover {
    border-color: var(--accent-gold);
    background: rgba(197, 168, 128, 0.02);
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.upload-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
}

.upload-preview {
    max-width: 150px;
    max-height: 100px;
    margin: 0.75rem auto 0;
    border-radius: 4px;
    display: none;
    object-fit: cover;
}

/* Konum Seçici Mockup */
.location-selector-mockup {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 300px;
    position: relative;
}

.location-marker-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

/* --- PORTAL / OPERASYON PANELİ --- */
.portal-login-box {
    max-width: 420px;
    margin: 4rem auto;
}

.portal-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2rem;
    max-width: 1300px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

/* Portal Sidebar */
.portal-sidebar {
    height: fit-content;
}

.portal-user-info {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.portal-user-avatar {
    width: 60px;
    height: 60px;
    background: rgba(197, 168, 128, 0.15);
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 0.75rem;
}

.portal-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.portal-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition-fast);
}

.portal-nav-link:hover, .portal-nav-link.active {
    background: rgba(197, 168, 128, 0.08);
    color: var(--text-primary);
}

.portal-nav-link.active {
    border-left: 3px solid var(--accent-gold);
}

/* Portal Content Dashboard */
.portal-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.portal-stat-card {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.portal-stat-icon {
    font-size: 2rem;
    color: var(--accent-gold);
}

.portal-stat-details h4 {
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 500;
}

.portal-stat-details span {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

/* Portal Listeler */
.table-responsive {
    overflow-x: auto;
    width: 100%;
}

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

.portal-table th {
    padding: 1rem;
    border-bottom: 2px solid var(--border-color);
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.portal-table td {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid var(--border-dark);
}

.portal-table tr:hover td {
    background-color: rgba(255, 255, 255, 0.01);
}

/* Mini Plaka Arayüzü */
.mini-plate {
    background: #f8fafc;
    color: #0f172a;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    border: 1.5px solid #0f172a;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
}

.mini-plate::before {
    content: 'TR';
    background: #003399;
    color: #ffffff;
    font-size: 0.5rem;
    padding: 0.15rem 0.1rem;
    margin-right: 0.3rem;
    border-radius: 1px;
}

/* Takip Haritası Mockup */
.tracking-map-wrapper {
    height: 400px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
    position: relative;
}

/* --- FOOTER --- */
footer.site-footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-dark);
    margin-top: auto;
    padding: 4rem 1.5rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about p {
    font-size: 0.9rem;
    margin-top: 1rem;
    max-width: 300px;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-gold);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.footer-contact-item svg {
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- ANIMASYONLAR --- */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

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

/* --- RESPONSIVE TASARIM (MEDIA QUERIES) --- */

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-box {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .portal-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        display: none; /* JS ile mobil çekmeceye dönüştürülecek */
    }
    
    .nav-actions .btn {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .portal-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 6rem 1rem 4rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .result-info-grid {
        grid-template-columns: 1fr;
    }
}
