/* SIFIRLAMA AYARLARI */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #f8fafc;
    color: #1e293b;
    line-height: 1.6;
}

/* ÜST MENÜ */
.navbar {
    background: #ffffff;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-container {
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-weight: 800;
    font-size: 1.35rem;
    color: #0f172a;
    text-decoration: none;
    letter-spacing: 0.5px;
}
.nav-menu {
    display: flex;
    list-style: none;
}
.nav-menu li { margin-left: 30px; }
.nav-menu a {
    text-decoration: none;
    color: #475569;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s;
}
.nav-menu a:hover { color: #c5a880; }

/* KAHRAMAN ALANI */
.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: white;
    padding: 130px 0 100px 0;
    text-align: center;
}
.hero-content { width: 75%; margin: auto; }
.hero-content h1 { font-size: 2.8rem; margin-bottom: 20px; font-weight: 700; letter-spacing: -0.5px; }
.hero-content p { font-size: 1.2rem; max-width: 800px; margin: auto; color: #94a3b8; margin-bottom: 40px; }

/* BUTONLAR */
.cta-buttons { display: flex; justify-content: center; gap: 20px; }
.btn-primary, .btn-secondary {
    padding: 14px 35px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}
.btn-primary { background: #c5a880; color: #0f172a; }
.btn-primary:hover { background: #b3956d; transform: translateY(-2px); }
.btn-secondary { background: #25d366; color: white; }
.btn-secondary:hover { background: #20ba59; transform: translateY(-2px); }

/* ÇALIŞMA ALANLARI KART DÜZENLERİ */
.services-section { width: 85%; margin: 100px auto; text-align: center; }
.services-section h2 { font-size: 2.2rem; color: #0f172a; margin-bottom: 10px; }
.section-subtitle { color: #64748b; margin-bottom: 50px; font-size: 1.05rem; }
.services-grid { display: flex; gap: 30px; justify-content: center; }
.service-card-link { text-decoration: none; color: inherit; flex: 1; max-width: 450px; }
.service-box {
    background: white;
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: left;
}
.service-icon { font-size: 2.5rem; color: #c5a880; margin-bottom: 20px; }
.service-box h3 { font-size: 1.4rem; color: #0f172a; margin-bottom: 15px; }
.service-box p { color: #475569; font-size: 0.95rem; }
.service-card-link:hover .service-box {
    border-color: #c5a880;
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(197, 168, 128, 0.15);
}

/* DETAY SAYFALARI İÇİN İÇERİK ŞABLONU */
.detail-container { width: 65%; margin: 70px auto; min-height: 70vh; }
.category-tag { color: #c5a880; font-weight: 700; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }
.detail-container h1 { font-size: 2.6rem; color: #0f172a; margin: 10px 0 20px 0; }
.lead-text { font-size: 1.2rem; color: #475569; margin-bottom: 40px; }
.sub-law-section { margin-top: 50px; }
.sub-law-section h3 { font-size: 1.5rem; color: #0f172a; margin-bottom: 25px; border-left: 4px solid #c5a880; padding-left: 12px; }
.sub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.sub-box { background: white; padding: 25px; border-radius: 6px; border: 1px solid #e2e8f0; }
.sub-box h4 { color: #0f172a; margin-bottom: 10px; font-size: 1.15rem; }
.sub-box p { color: #475569; font-size: 0.95rem; }

/* HAKKIMIZDA */
.about-section { background: #f1f5f9; padding: 100px 0; }
.about-container { width: 85%; margin: auto; display: flex; gap: 60px; align-items: center; }
.about-image img { width: 100%; max-width: 380px; border-radius: 6px; box-shadow: 0 15px 35px rgba(0,0,0,0.05); }
.about-text { flex: 1; }
.about-text span { color: #c5a880; font-weight: 700; text-transform: uppercase; font-size: 0.85rem; }
.about-text h2 { font-size: 2.3rem; margin: 10px 0 20px 0; color: #0f172a; }
.about-text p { color: #334155; margin-bottom: 15px; }

/* İLETİŞİM ALANI */
.contact-section { width: 85%; margin: 100px auto; }
.contact-section h2 { text-align: center; margin-bottom: 50px; color: #0f172a; }
.contact-container { display: flex; gap: 50px; }
.contact-info { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 25px; }
.contact-info p { font-size: 1.1rem; color: #1e293b; }
.contact-info p i { color: #c5a880; margin-right: 12px; font-size: 1.2rem; }
.contact-link { color: inherit; text-decoration: none; font-weight: 600; }
.contact-link:hover { color: #c5a880; }
.action-btn { background: #0f172a; color: white; padding: 12px 25px; text-decoration: none; border-radius: 4px; display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.95rem; margin-top: 10px; width: fit-content; }
.action-btn:hover { background: #1e293b; }
.contact-map { flex: 1; box-shadow: 0 8px 30px rgba(0,0,0,0.04); }

/* YÜZEN ERİŞİM BUTONLARI */
.sticky-action-bars { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 15px; z-index: 9999; }
.sticky-call, .sticky-whatsapp { width: 55px; height: 55px; border-radius: 50%; display: flex; justify-content: center; align-items: center; color: white; font-size: 1.6rem; box-shadow: 0 4px 15px rgba(0,0,0,0.2); text-decoration: none; transition: transform 0.3s; }
.sticky-call { background: #0f172a; }
.sticky-whatsapp { background: #25d366; }
.sticky-call:hover, .sticky-whatsapp:hover { transform: scale(1.1); }

/* FOOTER */
footer { background: #0f172a; color: #64748b; text-align: center; padding: 30px 0; font-size: 0.9rem; }

/* MOBIL UYUMLULUK */
@media (max-width: 992px) {
    .nav-container, .services-grid, .about-container, .contact-container, .sub-grid { flex-direction: column; grid-template-columns: 1fr; }
    .nav-menu { margin-top: 15px; }
    .nav-menu li { margin: 5px 15px; }
    .hero-content h1 { font-size: 2.1rem; }
    .detail-container { width: 85%; }
    .about-image img { max-width: 100%; }
}


