/* Temel Değişkenler */
:root {
    --primary-red: #D31111;
    --deep-black: #0E0E0E;
    --pure-white: #FFFFFF;
    --light-gray: #F4F4F4;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--pure-white);
    color: var(--deep-black);
    overflow-x: hidden;
}

/* Navigasyon */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: var(--pure-white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.main-logo {
    height: 80px; /* Logo boyutunu buradan ayarlayabilirsiniz */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--deep-black);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-red);
}

.contact-btn {
    background-color: var(--primary-red);
    color: white !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-style: italic;
}

/* Hero Alanı */
.hero-section {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    background: linear-gradient(135deg, #ffffff 60%, #f0f0f0 100%);
}

.hero-content {
    max-width: 700px;
    z-index: 2;
}

.brand-title {
    font-size: 5rem;
    font-weight: 900;
    font-style: italic;
    line-height: 0.9;
    margin-bottom: 10px;
    color: var(--deep-black);
    letter-spacing: -2px;
}

.service-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    margin-bottom: 25px;
    border-left: 5px solid var(--deep-black);
    padding-left: 15px;
}

.service-subtitle .divider {
    color: var(--deep-black);
    font-size: 1.2rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 35px;
}

/* Butonlar */
.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    text-decoration: none;
    padding: 15px 35px;
    font-weight: 800;
    text-transform: uppercase;
    font-style: italic;
    transition: var(--transition);
    position: relative;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%); /* Logodaki eğik çizgiler gibi */
}

.btn-primary {
    background-color: var(--primary-red);
    color: white;
}

.btn-secondary {
    background-color: var(--deep-black);
    color: white;
}

.btn:hover {
    transform: translateY(-5px);
    filter: brightness(1.2);
}

/* Aksan Çizgisi (Logodaki araç çizgisine gönderme) */
.hero-accent-line {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 10px;
    background: var(--primary-red);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .brand-title { font-size: 3rem; }
    .service-subtitle { font-size: 1.2rem; }
    .navbar { flex-direction: column; gap: 20px; }
}
:root { --red: #D31111; --black: #0E0E0E; }

.brand-font { font-style: italic; font-weight: 900; text-align: center; }
.red-text { color: var(--red); }

/* Modal Stilleri */
.modal-overlay { 
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(0,0,0,0.8); z-index: 1000; align-items: center; justify-content: center; 
}

.modal-content { 
    background: white; padding: 30px; width: 400px; border-top: 5px solid var(--red); 
    position: relative; font-family: sans-serif;
}

/* Hasar Seçim Alanı */
.damage-grid { 
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 15px 0; text-align: left; 
}

input[type="email"], input[type="tel"] { 
    width: 100%; padding: 10px; margin: 5px 0; box-sizing: border-box; 
}

.submit-btn { 
    width: 100%; padding: 15px; background: var(--black); color: white; 
    border: none; font-weight: bold; cursor: pointer; margin-top: 10px;
}

/* Admin Tablo Stilleri */
.admin-panel { margin: 50px auto; max-width: 900px; padding: 20px; background: white; }
table { width: 100%; border-collapse: collapse; margin-top: 20px; }
th, td { border: 1px solid #ddd; padding: 12px; text-align: left; }
th { background-color: var(--black); color: white; }

.btn-approve { background: #2e7d32; color: white; border: none; padding: 5px 10px; cursor: pointer; }
.btn-reject { background: var(--red); color: white; border: none; padding: 5px 10px; cursor: pointer; margin-left: 5px; }
/* Hata Animasyonu */
@keyframes shakeEffect {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-10px); }
    60% { transform: translateX(10px); }
}
.shake { animation: shakeEffect 0.4s ease; }