:root {
    color-scheme: light;
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --bg: #f4f7fb;
    --text: #0f172a;
    --muted: #64748b;
    --border: #e2e8f0;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, #f8fbff 0%, var(--bg) 100%);
    color: var(--text);
    line-height: 1.6;
}

.navbar {
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.navbar-brand {
    letter-spacing: 0.02em;
}

.card-agency {
    min-height: 100%;
    border: 1px solid var(--border);
    border-radius: 1rem;
    transition: transform .2s ease, box-shadow .2s ease;
    overflow: hidden;
}

.card-agency:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.card-agency .card-body {
    padding: .9rem 1rem;
}

/* Kompakt avatar — dış görsel yerine harf rozeti (minimum resim) */
.agency-avatar {
    width: 48px;
    height: 48px;
}

.agency-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 0.6rem;
}

.agency-initial {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 0.6rem;
    background: linear-gradient(135deg, var(--primary) 0%, #3b82f6 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.35rem;
    line-height: 1;
}

.min-w-0 {
    min-width: 0;
}

.service-badge {
    font-size: .72rem;
    font-weight: 500;
    margin: .15rem .15rem 0 0;
    border-radius: 999px;
    padding: .3rem .6rem;
    background: #eef2ff;
    color: var(--primary-dark);
}

.agency-description {
    font-size: .92rem;
    color: var(--muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.7em;
}

.agency-services {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
}

.site-hero {
    background: linear-gradient(135deg, #0f172a 0%, var(--primary) 50%, #3b82f6 100%);
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.site-hero p {
    color: rgba(255,255,255,.9);
}

.site-hero .btn-white {
    background: #fff;
    color: var(--primary-dark);
    font-weight: 600;
    border-radius: 999px;
}

a {
    color: var(--primary);
}

h1, h2, h3 {
    letter-spacing: -0.02em;
}

.breadcrumb {
    border: 1px solid var(--border);
}

.alert {
    border-radius: 0.9rem;
}
