/* --- Turkeylegalhelp SOFT GRADIENT VARIABLES --- */
:root {
    /* Gradyanlar */
    --grad-primary: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%); /* Yumuşak Mor-Mavi */
    --grad-secondary: linear-gradient(120deg, #f6d365 0%, #fda085 100%); /* Yumuşak Turuncu */
    --grad-bg: linear-gradient(to top, #f3e7e9 0%, #e3eeff 99%, #e3eeff 100%); /* Çok açık zemin */
    
    /* Renkler */
    --text-dark: #2d3436;
    --text-muted: #636e72;
    --white: #ffffff;
    --accent: #6c5ce7;
    
    /* Yapısal */
    --max-width: 1100px;
    --radius: 20px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* --- RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-image: var(--grad-bg);
    background-attachment: fixed; /* Arka plan sabit */
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Poppins:wght@500;700&display=swap');

a { text-decoration: none; color: inherit; transition: 0.3s ease; }
ul { list-style: none; }
img { width: 100%; height: auto; display: block; border-radius: var(--radius); }

/* --- HEADER --- */
header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px); /* Buzlu cam etkisi */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; /* Gradyan metin */
}

.nav-links { display: flex; gap: 30px; }

.nav-links a {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 50px;
}

.nav-links a:hover, .nav-links a.active {
    background: var(--grad-primary);
    color: white;
    box-shadow: 0 5px 15px rgba(142, 197, 252, 0.4);
}

/* Mobile Menu */
.burger { display: none; cursor: pointer; color: var(--accent); font-size: 1.5rem; }

/* --- LAYOUTS --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px 20px;
    flex: 1;
}

.section { margin-bottom: 80px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

/* --- COMPONENTS --- */
.btn {
    display: inline-block;
    padding: 12px 35px;
    background: var(--grad-primary);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(142, 197, 252, 0.4);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(142, 197, 252, 0.6);
}

.soft-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s;
    border: 1px solid rgba(255,255,255,0.5);
}

.soft-card:hover { transform: translateY(-5px); }

/* Icons */
.icon-box svg { width: 50px; height: 50px; margin-bottom: 20px; }
.icon-gradient {
    fill: url(#grad1); /* SVG içindeki gradient ID'si */
}

/* --- TYPOGRAPHY --- */
h1, h2, h3 {
    font-family: var(--font-heading);
    margin-bottom: 20px;
    color: var(--text-dark);
}

h1 { font-size: 3rem; line-height: 1.2; background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
h2 { font-size: 2.2rem; text-align: center; }
p { color: var(--text-muted); margin-bottom: 20px; }

/* --- HERO --- */
.hero {
    padding: 80px 20px;
    text-align: left;
}

/* --- FORMS --- */
.form-group { margin-bottom: 20px; }
label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--text-dark); }
input, textarea, select {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    background: #f9f9f9;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: 0.3s;
}
input:focus, textarea:focus { 
    outline: none; 
    border-color: #8ec5fc; 
    box-shadow: 0 0 10px rgba(142, 197, 252, 0.2); 
    background: white;
}

/* --- FOOTER --- */
footer {
    background: var(--white);
    padding: 60px 0 20px;
    margin-top: auto;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.footer-col h4 { 
    background: var(--grad-secondary); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    margin-bottom: 20px; 
    font-size: 1.2rem; 
    font-family: var(--font-heading);
}
.footer-col a { display: block; margin-bottom: 10px; color: var(--text-muted); }
.footer-col a:hover { color: var(--accent); }

.tr-phone {
    font-weight: 700;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute; top: 70px; left: 0; width: 100%;
        background: white;
        flex-direction: column; padding: 20px; text-align: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    .nav-links.active { display: flex; }
    .burger { display: block; }
    
    .grid-2 { grid-template-columns: 1fr; }
    h1 { font-size: 2.5rem; text-align: center; }
    .hero { text-align: center; }
    .footer-content { flex-direction: column; text-align: center; }
    .tr-phone { justify-content: center; }
}