/* ADALET HUKUK - LAW FIRM CSS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
    --primary: #ffffff;
    --navy: #0d1b2a; /* Deep Navy */
    --emerald: #134f3b; /* Deep Emerald */
    --gold: #d4af37; /* Metallic Gold */
    --gold-light: #f3e5ab;
    --text-dark: #1b263b;
    --text-light: #778da9;
    --border: #e0e1dd;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--primary);
    color: var(--text-dark);
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
    max-width: 100vw;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--navy);
}

/* Header */
header {
    background: #fff;
    padding: 20px 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: 1px;
}
.logo span { color: var(--gold); }

.nav-links { display: flex; gap: 35px; }
.nav-links a {
    color: var(--text-dark); text-decoration: none;
    font-weight: 600; font-size: 13px;
    text-transform: uppercase; letter-spacing: 1px;
    transition: 0.3s;
}
.nav-links a:hover { color: var(--gold); }

.btn-consult {
    background: transparent;
    color: var(--navy);
    padding: 10px 24px;
    border: 1px solid var(--navy);
    text-decoration: none;
    font-weight: 600; font-size: 13px;
    text-transform: uppercase; letter-spacing: 1px;
    transition: 0.4s;
}
.btn-consult:hover { background: var(--navy); color: var(--gold); }

/* Hero Section */
.hero {
    height: 85vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(13, 27, 42, 0.85), rgba(13, 27, 42, 0.9)), url('mockup_hukuk_hero.webp');
    background-size: cover; background-position: center;
    color: #fff;
    padding: 0 5vw;
    border-bottom: 8px solid var(--gold);
}

.hero-content { max-width: 800px; }
.hero-subtitle {
    display: block; font-size: 14px; text-transform: uppercase;
    letter-spacing: 4px; color: var(--gold); margin-bottom: 20px;
    font-weight: 700;
}
.hero h1 {
    font-size: 4.5rem; color: #fff; line-height: 1.1; margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.hero p {
    font-size: 1.2rem; color: #ccc; line-height: 1.8;
    margin-bottom: 40px; font-weight: 300;
}
.hero-btn {
    background: var(--gold); color: var(--navy);
    padding: 15px 35px; text-decoration: none;
    font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem;
    transition: 0.3s; border: 2px solid var(--gold);
}
.hero-btn:hover { background: transparent; color: var(--gold); }

/* Practice Areas */
.practice { padding: 100px 5vw; background: #fff; }
.section-title {
    text-align: center; font-size: 2.8rem; margin-bottom: 15px; position: relative;
}
.section-title::after {
    content: ''; display: block; width: 60px; height: 3px;
    background: var(--gold); margin: 20px auto 0;
}
.section-desc { text-align: center; color: var(--text-light); max-width: 600px; margin: 0 auto 60px; line-height: 1.6; }

.practice-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.practice-card {
    text-align: center; padding: 40px;
    border: 1px solid var(--border); transition: 0.4s;
    background: #fafafa;
}
.practice-card:hover { border-color: var(--gold); transform: translateY(-5px); background: #fff; box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
.practice-icon {
    width: 60px; height: 60px; margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    background: var(--navy); color: var(--gold); border-radius: 50%;
}
.practice-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.practice-card p { color: var(--text-light); line-height: 1.6; margin-bottom: 20px; font-size: 15px; }
.read-more { color: var(--navy); text-decoration: none; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; border-bottom: 1px solid var(--gold); padding-bottom: 3px; }

/* Lawyer Profile */
.attorney {
    padding: 100px 5vw; background: var(--navy); color: #fff;
    display: flex; align-items: center; gap: 5vw;
}
.attorney-img {
    flex: 1; height: 600px;
    background-image: url('mockup_hukuk_avukat.webp');
    background-size: cover; background-position: center;
    border: 5px solid var(--gold);
}
.attorney-info { flex: 1; }
.attorney-info h2 { color: #fff; font-size: 3rem; margin-bottom: 10px; }
.attorney-info h4 { color: var(--gold); font-family: 'Lato', sans-serif; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 30px; font-size: 14px; }
.attorney-info p { color: #ccc; line-height: 1.8; margin-bottom: 20px; font-size: 1.1rem; }
.edu-list { list-style: none; margin-top: 30px; }
.edu-list li { margin-bottom: 10px; padding-left: 20px; position: relative; color: #fff; }
.edu-list li::before { content: '■'; color: var(--gold); position: absolute; left: 0; font-size: 10px; top: 5px; }

/* Publications / Blog */
.publications { padding: 100px 5vw; background: #f9f9f9; }
.pub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.pub-card {
    background: #fff; border: 1px solid var(--border); padding: 40px;
    transition: 0.3s; display: flex; flex-direction: column; justify-content: space-between;
}
.pub-card:hover { border-color: var(--navy); box-shadow: 0 10px 20px rgba(0,0,0,0.03); }
.pub-date { color: var(--gold); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }
.pub-card h3 { font-size: 1.6rem; margin-bottom: 20px; line-height: 1.4; }
.pub-card p { color: var(--text-light); line-height: 1.6; margin-bottom: 20px; }

/* Consultation Form */
.consultation {
    padding: 100px 5vw; background: #fff;
    display: flex; gap: 5vw;
}
.consult-text { flex: 1; }
.consult-text h2 { font-size: 2.8rem; margin-bottom: 20px; }
.consult-text p { color: var(--text-light); line-height: 1.7; margin-bottom: 30px; font-size: 1.1rem; }
.privacy-note { padding: 20px; background: rgba(212, 175, 55, 0.1); border-left: 3px solid var(--gold); font-style: italic; color: var(--navy); }

.consult-form { flex: 1; background: var(--navy); padding: 50px; }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; color: var(--gold); margin-bottom: 8px; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.form-group input, .form-group textarea {
    width: 100%; padding: 15px; background: transparent;
    border: 1px solid rgba(255,255,255,0.2); color: #fff;
    font-family: 'Lato', sans-serif; transition: 0.3s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); outline: none; }
.submit-btn {
    background: var(--gold); color: var(--navy);
    border: none; padding: 15px 30px; font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 700; cursor: pointer; transition: 0.3s; width: 100%;
}
.submit-btn:hover { background: #fff; }

/* Footer */
footer { background: #070e17; color: #fff; padding: 50px 5vw; text-align: center; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 24px; color: #fff; margin-bottom: 20px; }
.footer-logo span { color: var(--gold); }
footer p { color: rgba(255,255,255,0.5); font-size: 13px; }

@media(max-width: 768px) {
    header { padding: 15px 5vw; }
    .logo { font-size: 20px; }
    .btn-consult { padding: 8px 15px; font-size: 11px; }
    .nav-links { display: none; }
    .hero h1 { font-size: 13vw; }
    .practice-grid, .pub-grid, .consultation, .attorney { grid-template-columns: 1fr; flex-direction: column; }
    .attorney-img { width: 100%; height: 400px; }
}
