/* --- NEUMORPHISM VARIABLES --- */
:root {
    --bg-color: #e0e5ec;        /* Klasik Neumorphism Gri/Mavisi */
    --text-main: #4a5568;       /* Yumuşak Koyu Gri */
    --text-light: #718096;
    --highlight: #ffffff;       /* Işık Kaynağı */
    --shadow: #a3b1c6;          /* Gölge */
    --accent: #4d7cff;          /* Vurgu Rengi (Mavi) */
    --radius: 20px;
    --font-head: 'Nunito', sans-serif;
    --font-body: 'Quicksand', sans-serif;
    --max-width: 1100px;
    
    /* Neumorphic Shadows */
    --neumo-flat: 9px 9px 16px var(--shadow), -9px -9px 16px var(--highlight);
    --neumo-pressed: inset 6px 6px 10px var(--shadow), inset -6px -6px 10px var(--highlight);
    --neumo-icon: 5px 5px 10px var(--shadow), -5px -5px 10px var(--highlight);
}

/* --- RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800&family=Quicksand:wght@400;600&display=swap');

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { width: 100%; height: auto; display: block; border-radius: var(--radius); }

/* --- HEADER --- */
header {
    background-color: var(--bg-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    /* Hafif bir gölge ile ayrım */
    box-shadow: 0 4px 6px -1px rgba(163, 177, 198, 0.3);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 2px 2px 4px var(--shadow), -2px -2px 4px var(--highlight);
}

.nav-links { display: flex; gap: 25px; }

.nav-links a {
    font-weight: 700;
    color: var(--text-main);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    transition: 0.3s;
}

/* Hover durumunda dışa doğru kabartma */
.nav-links a:hover, .nav-links a.active {
    box-shadow: var(--neumo-flat);
    color: var(--accent);
}

/* Aktif linke basılı hissi vermek isterseniz: 
.nav-links a.active { box-shadow: var(--neumo-pressed); } 
*/

.burger { 
    display: none; 
    cursor: pointer; 
    padding: 10px;
    border-radius: 10px;
    box-shadow: var(--neumo-flat);
    color: var(--accent);
}

/* --- LAYOUTS --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px 20px;
    flex: 1;
}

.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: 40px; }

/* --- COMPONENTS (NEUMORPHIC) --- */
.neumo-card {
    background: var(--bg-color);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--neumo-flat);
    border: 1px solid rgba(255,255,255,0.4);
    transition: transform 0.3s ease;
}

.neumo-card:hover { transform: translateY(-5px); }

.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--bg-color);
    color: var(--accent);
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: var(--neumo-flat);
    transition: 0.2s;
    font-family: var(--font-head);
}

.btn:hover {
    box-shadow: var(--neumo-pressed); /* Basılı efekti */
    transform: translateY(2px);
}

.btn:active {
    box-shadow: var(--neumo-pressed);
}

.icon-box {
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--neumo-icon);
    margin-bottom: 20px;
    color: var(--accent);
}
.icon-box svg { width: 30px; height: 30px; fill: currentColor; }

/* --- TYPOGRAPHY --- */
h1, h2, h3 {
    font-family: var(--font-head);
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.2;
}

h1 { font-size: 3rem; color: var(--accent); }
h2 { font-size: 2.2rem; text-align: center; margin-bottom: 40px; }
p { margin-bottom: 20px; color: var(--text-light); }

/* --- HERO --- */
.hero {
    padding: 80px 20px;
}

/* --- FORMS --- */
.form-group { margin-bottom: 25px; }
label { display: block; margin-bottom: 10px; font-weight: 700; color: var(--text-main); padding-left: 10px; }
input, textarea, select {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 15px;
    background: var(--bg-color);
    box-shadow: var(--neumo-pressed); /* İç gölge */
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    outline: none;
}
input:focus, textarea:focus { 
    box-shadow: inset 2px 2px 5px var(--shadow), inset -2px -2px 5px var(--highlight), 0 0 5px rgba(77, 124, 255, 0.2); 
}

/* --- FOOTER --- */
footer {
    background-color: var(--bg-color);
    padding: 60px 0 20px;
    margin-top: auto;
    box-shadow: 0 -4px 10px -4px rgba(163, 177, 198, 0.3); /* Üst gölge */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.footer-col h4 { color: var(--accent); margin-bottom: 20px; font-family: var(--font-head); font-size: 1.2rem; }
.footer-col a { display: block; margin-bottom: 10px; color: var(--text-light); font-weight: 600; }
.footer-col a:hover { color: var(--accent); }

.tr-phone {
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: var(--neumo-flat);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute; top: 80px; left: 0; width: 100%;
        background-color: var(--bg-color);
        flex-direction: column; padding: 30px; text-align: center;
        box-shadow: 0 10px 20px rgba(163, 177, 198, 0.3);
        border-radius: 0 0 20px 20px;
    }
    .nav-links.active { display: flex; }
    .burger { display: block; }
    
    .grid-2 { grid-template-columns: 1fr; }
    h1 { font-size: 2.5rem; text-align: center; }
    .hero-text { text-align: center; }
    .hero-btn { display: flex; justify-content: center; }
    .footer-content { flex-direction: column; text-align: center; }
    .tr-phone { justify-content: center; }
}