/* --- Değişkenler --- */
:root {
    --bg-dark: #0a0a0a;
    --bg-panel: #111111;
    --color-red: #d90429;
    --color-white: #ffffff;
    --color-grey: #8d99ae;
    
    --font-heading: 'Anton', sans-serif;
    --font-mono: 'Roboto Mono', monospace;
    --font-body: 'Roboto', sans-serif;
    
    --sidebar-width: 280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-dark);
    color: var(--color-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- Layout Structure --- */
.layout-wrapper {
    display: flex;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* --- Sidebar --- */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--bg-panel);
    height: 100%;
    border-right: 1px solid #333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    position: fixed;
    z-index: 100;
}

.logo-area .logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 2px;
    color: var(--color-white);
}
.red-dot { color: var(--color-red); }
.logo-sub { font-family: var(--font-mono); font-size: 0.7rem; color: var(--color-grey); letter-spacing: 3px; margin-top: 5px; }

.side-nav ul { display: flex; flex-direction: column; gap: 20px; }
.side-nav a {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--color-grey);
    display: block;
    padding: 10px 0;
    transition: 0.3s;
}
.side-nav a:hover, .side-nav a.active { color: var(--color-white); padding-left: 10px; border-left: 2px solid var(--color-red); }

.emergency-btn {
    background-color: var(--color-red);
    color: var(--color-white);
    display: block;
    text-align: center;
    padding: 15px 0;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    font-size: 1.2rem;
}
.emergency-btn:hover { background-color: #ef233c; }

/* --- Main Content --- */
.content-area {
    margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
    height: 100%;
    overflow-y: auto;
    position: relative;
    background-color: var(--bg-dark);
}

.scrollable { overflow-y: auto; }
.content-padding { padding: 80px 100px; max-width: 1400px; }

/* --- Mobile Header (Hidden on Desktop) --- */
.mobile-header { display: none; }

/* --- Hero Section --- */
.hero-fullscreen {
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 100px;
}
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, #000 0%, rgba(0,0,0,0.6) 100%); z-index: 1; }
.hero-inner { position: relative; z-index: 2; max-width: 700px; }

.badge-red { background: var(--color-red); color: #fff; padding: 5px 15px; font-family: var(--font-mono); font-size: 0.8rem; font-weight: bold; margin-bottom: 20px; display: inline-block; }
.hero-inner h1 { font-family: var(--font-heading); font-size: 5rem; line-height: 1; margin-bottom: 30px; letter-spacing: 2px; }
.hero-inner p { font-size: 1.2rem; color: #ccc; margin-bottom: 40px; border-left: 4px solid var(--color-red); padding-left: 20px; }

.btn-solid { background: var(--color-white); color: #000; padding: 15px 40px; font-family: var(--font-heading); font-size: 1.2rem; text-transform: uppercase; letter-spacing: 1px; }
.btn-solid:hover { background: var(--color-red); color: #fff; }

/* --- Practice Areas --- */
.practice-areas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #111;
    border-top: 1px solid #333;
}
.area-box { padding: 50px; border-right: 1px solid #333; transition: 0.3s; }
.area-box:hover { background: #1a1a1a; }
.area-box h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 15px; color: var(--color-red); }
.area-box p { color: #888; font-size: 0.95rem; }

/* --- Strategy (About) --- */
.page-title { font-family: var(--font-heading); font-size: 4rem; margin-bottom: 20px; border-bottom: 2px solid var(--color-red); display: inline-block; padding-bottom: 10px; }
.lead-text { font-size: 1.5rem; color: #ccc; margin-bottom: 60px; max-width: 800px; }

.strategy-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
.strategy-item { background: #111; padding: 40px; border: 1px solid #333; position: relative; }
.strategy-item .num { font-family: var(--font-heading); font-size: 4rem; color: #222; position: absolute; top: 10px; right: 20px; }
.strategy-item h2 { font-family: var(--font-mono); color: var(--color-red); margin-bottom: 20px; font-size: 1.2rem; }
.quote-block { margin-top: 60px; font-family: var(--font-heading); font-size: 2.5rem; text-align: center; color: #555; }

/* --- Case Files (Testimonials) --- */
.case-list { display: flex; flex-direction: column; gap: 30px; max-width: 900px; }
.case-file { background: #111; padding: 40px; border-left: 5px solid #333; }
.case-file:hover { border-left-color: var(--color-red); }
.case-header { display: flex; justify-content: space-between; margin-bottom: 20px; border-bottom: 1px solid #333; padding-bottom: 10px; }
.case-id { font-family: var(--font-mono); color: #666; }
.case-result { font-family: var(--font-heading); background: #1a1a1a; padding: 2px 10px; color: var(--color-red); }
.case-file h3 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 15px; }

/* --- Contact Split --- */
.split-contact { display: grid; grid-template-columns: 1fr 1fr; height: 100%; }
.contact-info-dark { background: #111; padding: 80px; display: flex; flex-direction: column; justify-content: center; }
.contact-info-dark h1 { font-family: var(--font-heading); font-size: 3.5rem; margin-bottom: 20px; }
.line-item { margin-bottom: 40px; }
.line-item span { font-family: var(--font-mono); color: var(--color-red); display: block; margin-bottom: 5px; font-size: 0.9rem; }
.line-item p { font-size: 1.5rem; font-weight: 300; }
.mono { font-family: var(--font-mono); }

.contact-form-dark { background: #0a0a0a; padding: 80px; display: flex; flex-direction: column; justify-content: center; }
#darkForm .form-group { margin-bottom: 30px; }
#darkForm label { font-family: var(--font-mono); color: #555; display: block; margin-bottom: 10px; font-size: 0.8rem; }
#darkForm input, #darkForm select, #darkForm textarea { width: 100%; background: #111; border: none; border-bottom: 2px solid #333; color: #fff; padding: 15px; font-family: var(--font-body); font-size: 1.1rem; }
#darkForm input:focus { border-bottom-color: var(--color-red); outline: none; }
.btn-block { width: 100%; background: var(--color-red); color: #fff; padding: 20px; font-family: var(--font-heading); font-size: 1.5rem; border: none; cursor: pointer; }
.btn-block:hover { background: #fff; color: #000; }

/* --- Rights List --- */
.rights-list { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.right-item h3 { font-family: var(--font-mono); color: var(--color-red); margin-bottom: 15px; font-size: 1.3rem; }

/* --- Mobile Overlay --- */
.mobile-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #000; z-index: 200; display: flex; flex-direction: column; justify-content: center; align-items: center; transform: translateY(-100%); transition: 0.4s ease; }
.mobile-overlay.active { transform: translateY(0); }
.close-btn { position: absolute; top: 20px; right: 20px; font-size: 2rem; background: none; border: none; color: #fff; cursor: pointer; }
.mobile-overlay nav a { display: block; font-family: var(--font-heading); font-size: 3rem; margin: 20px 0; color: #555; }
.mobile-overlay nav a:hover { color: var(--color-red); }

@media (max-width: 992px) {
    .layout-wrapper { flex-direction: column; height: auto; }
    .sidebar { display: none; }
    .mobile-header { display: flex; justify-content: space-between; align-items: center; padding: 20px; background: #000; position: sticky; top: 0; z-index: 90; border-bottom: 1px solid #333; }
    .mobile-header .logo { font-family: var(--font-heading); font-size: 2rem; color: #fff; }
    .menu-trigger { background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; }
    
    .content-area { margin-left: 0; width: 100%; height: auto; }
    .content-padding { padding: 40px 20px; }
    .hero-fullscreen { padding-left: 20px; align-items: center; justify-content: center; text-align: center; }
    .hero-inner p { border-left: none; padding-left: 0; border-top: 4px solid var(--color-red); padding-top: 20px; }
    .practice-areas, .strategy-grid, .split-contact, .rights-list { grid-template-columns: 1fr; }
    .area-box { border-right: none; border-bottom: 1px solid #333; }
}