* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1e2a3e;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.site-header {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eef2f8;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.logo-text h2 {
    font-size: 0.75rem;
    font-weight: 800;
    color: #1e2f3f;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #2c3e50;
    transition: 0.2s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #b48c48;
}

.mobile-menu-icon {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #1e3a5f;
    background: none;
    border: none;
}

.btn-primary {
    background: linear-gradient(95deg, #1e3a5f, #1e4a6f);
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.25s;
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    background: #b48c48;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid #1e3a5f;
    padding: 8px 24px;
    border-radius: 40px;
    font-weight: 600;
    color: #1e3a5f;
    cursor: pointer;
    transition: 0.2s;
    display: inline-block;
    text-decoration: none;
}

.btn-outline:hover {
    background: #1e3a5f;
    color: white;
}

footer {
    background: #0a1f2e;
    color: #cddfe7;
    padding: 45px 0 30px;
    text-align: center;
    margin-top: 40px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cddfe7;
    text-decoration: none;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #b48c48;
}

h1 {
    font-size: 3rem;
    margin: 20px 0;
    line-height: 1.2;
    color: #1e2f3f;
}

h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #1e3a5f;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: #b48c48;
    margin: 16px auto 0;
    border-radius: 4px;
}

h3 {
    margin: 15px 0 10px;
    font-size: 1.35rem;
}

.uzmanlik-grid, .makale-grid, .sss-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.card {
    background: white;
    border-radius: 28px;
    padding: 28px;
    border: 1px solid #ecf3f9;
    transition: all 0.25s;
    cursor: pointer;
    box-shadow: 0 8px 20px -6px rgba(0,0,0,0.02);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 35px -12px rgba(0,0,0,0.1);
    border-color: #e0cfaa;
}

.card i {
    font-size: 2rem;
    color: #b48c48;
}

.avukat-grid {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.avukat-card {
    max-width: 500px;
    background: #fafcff;
    border-radius: 32px;
    padding: 28px;
    text-align: center;
    border: 1px solid #eef2fa;
}

.avukat-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #b48c48;
}

.hesap-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.hesap-card {
    flex: 1;
    min-width: 280px;
    background: #f8fafd;
    border-radius: 28px;
    padding: 28px;
    border: 1px solid #e2e8f0;
}

.hesap-card input, .hesap-card select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #dce5ef;
    border-radius: 30px;
    font-family: inherit;
}

.result {
    background: #eef2fa;
    padding: 15px;
    border-radius: 20px;
    margin-top: 20px;
    font-weight: 600;
}

.iletisim-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.iletisim-bilgi, .iletisim-form {
    flex: 1;
    background: #f8fafd;
    padding: 32px;
    border-radius: 32px;
}

.iletisim-form {
    background: white;
    border: 1px solid #eef2f8;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #dce5ef;
    border-radius: 34px;
    font-size: 0.95rem;
    font-family: inherit;
}

.hero-grad {
    background: radial-gradient(circle at 10% 30%, rgba(30,58,95,0.02) 0%, rgba(255,255,255,0) 70%);
    padding: 60px 32px;
}

.hero-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 40px -12px rgba(0,0,0,0.12);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 999;
    transition: 0.2s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    background: #128C7E;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 28px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    background: none;
    border: none;
    color: #888;
}

.makale-yazar {
    font-size: 0.8rem;
    color: #b48c48;
    margin-top: 10px;
}

.makale-detay {
    background: #f9fafc;
    padding: 40px;
    border-radius: 28px;
}

.ucret-tablosu {
    background: #f8fafd;
    border-radius: 24px;
    padding: 20px;
    margin: 20px 0;
    overflow-x: auto;
}

.ucret-satir {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    flex-wrap: wrap;
    gap: 10px;
}

.ucret-baslik {
    background: #1e3a5f;
    color: white;
    padding: 12px;
    border-radius: 16px;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.info-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 12px;
}

.map-container {
    margin-top: 40px;
    border-radius: 32px;
    overflow: hidden;
    height: 320px;
    width: 100%;
}

iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.hero-badge {
    color: #b48c48;
    font-weight: 700;
}

.text-center {
    text-align: center;
}

.uzmanlik-badge {
    color: #b48c48;
    font-weight: 600;
    margin-bottom: 15px;
}

.kurumsal-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.baro-box {
    background: #f0f3f9;
    padding: 20px;
    border-radius: 20px;
    margin: 20px 0;
}

.misyon-vizyon {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.misyon, .vizyon {
    flex: 1;
    background: #f8fafd;
    padding: 24px;
    border-radius: 24px;
    text-align: left;
}

.tarife-aciklama {
    text-align: center;
    margin-bottom: 20px;
    color: #555;
}

.uyari {
    text-align: center;
    font-size: 0.75rem;
    color: #888;
    margin-top: 20px;
}

.reklam-uyari {
    font-size: 0.7rem;
    color: #888;
    margin-top: 20px;
}

.footer-barobilgi {
    font-size: 0.7rem;
    margin-top: 10px;
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        background: white;
        padding: 20px 0;
        text-align: center;
        gap: 15px;
    }
    .nav-links.show {
        display: flex;
    }
    .mobile-menu-icon {
        display: block;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.6rem;
    }
    .hero-grad {
        padding: 40px 20px;
    }
    .misyon-vizyon {
        flex-direction: column;
    }
}