/* Genel yapı */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #f9fafb;
    color: #111827;
}

.toed-logo {
    height: 38px;
    width: auto;
}

/* HERO */
.hero-section {
    background: radial-gradient(circle at top left, #0d6efd 0, #020617 50%, #020617 100%);
    color: #ffffff;
    padding: 80px 0 70px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.9rem;
    background-color: rgba(15, 118, 210, 0.25);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background-color: #22c55e;
}

.hero-title {
    font-weight: 700;
    font-size: clamp(2rem, 3vw + 1rem, 2.8rem);
}

.hero-subtitle {
    font-size: 1.05rem;
    max-width: 560px;
    color: #e5e7eb;
}

.hero-slogan {
    font-size: 0.98rem;
    color: #9ca3af;
    font-style: italic;
}

.hero-card {
    background: rgba(15, 23, 42, 0.95);
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    padding: 20px;
}

.hero-stat-value {
    font-weight: 700;
    font-size: 1.3rem;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: #9ca3af;
}

.hero-list {
    padding-left: 18px;
}

/* Genel section stilleri */
.section-title {
    font-size: 1.8rem;
    font-weight: 700;
}

.section-text {
    color: #4b5563;
}

.section-list {
    color: #374151;
}

/* Yumuşak arka planlı bölümler */
.section-soft {
    background-color: #f3f4f6;
}
section {
    scroll-margin-top: 50px;
}

/* Kartlar */
.info-card,
.stat-card,
.kpi-card,
.step-card,
.person-card,
.contact-card,
.map-placeholder {
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
    padding: 16px 18px;
}

/* Özel kartlar */
.info-card {
    padding: 18px 20px;
}

.info-list {
    margin: 0;
    padding-left: 18px;
}

.info-list li {
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.stat-card {
    padding: 18px 20px;
}

.kpi-card {
    text-align: left;
}

.kpi-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0d6efd;
}

.kpi-label {
    font-size: 0.85rem;
    color: #6b7280;
}

.step-card {
    position: relative;
    padding-top: 24px;
}

.step-number {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #9ca3af;
}

/* Kişi kartı */
.person-card {
    text-align: center;
    padding: 16px;
}

.person-photo {
    width: 100%;
    max-width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 999px;
    margin-bottom: 8px;
}

/* İletişim */
.contact-card {
    padding: 20px 22px;
}

.map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: #020617;
    color: #9ca3af;
    padding: 18px 0;
}

.footer a {
    color: #e5e7eb;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Mobil uyum */
@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 60px;
    }
    
    .hero-card {
        margin-top: 22px;
    }
}
.social-links a {
    display: inline-block;
    margin-right: 12px;
}

.social-icon {
    width: 32px;
    height: 32px;
    color: #4b5563;
    opacity: 0.9;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}

.dropdown-menu {
    border-radius: 8px;
    padding: 8px 0;
}
.dropdown-item {
    padding: 6px 16px;
}

@media (max-width: 576px) {
    .card-title {
        font-size: 0.75rem;
        line-height: 1.1;
    }

    .card-text {
        font-size: 0.65rem;
        line-height: 1.1;
    }

    .card .btn {
        font-size: 0.65rem;
        padding: 2px 6px;
    }
}
.map-image-wrapper {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.map-image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.map-image-wrapper:hover img {
    transform: scale(1.03);
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-image-wrapper:hover .map-overlay {
    opacity: 1;
}

