/*!
 * ------------------------------------------------------------
 * İkramedya Web Tasarım Hizmetleri
 * https://ikramedya.com
 * ------------------------------------------------------------
 *
 * Proje: Optimum Kurumsal Web Sitesi
 * Bileşen: Frontend Styles (CSS Tokens & Base & Components)
 *
 * Açıklama:
 * Referans görseldeki (homepage-reference.png) koyu lacivert & altın/turuncu
 * renk paleti, typography, Header, Hero, Türkiye Haritası & Pinler ve İstatistik Bandı.
 *
 * Telif: Copyright (c) İkramedya Web Tasarım Hizmetleri.
 * Tüm hakları saklıdır.
 * ------------------------------------------------------------
 */

:root {
    /* ── Renk Paleti (Referans Birebir) ────────────────────── */
    --opt-bg-dark:        #060B19;
    --opt-bg-navy:        #0B132B;
    --opt-bg-card-dark:   #0E1838;
    --opt-gold-primary:   #D97706;
    --opt-gold-light:     #F59E0B;
    --opt-gold-hover:     #B45309;
    --opt-gold-bg:        rgba(217, 119, 6, 0.12);
    
    /* Metin Renkleri */
    --opt-text-white:     #FFFFFF;
    --opt-text-muted:     #94A3B8;
    --opt-text-subtle:    #64748B;

    /* Sınır & Yüzeyler */
    --opt-border-dark:    rgba(255, 255, 255, 0.10);
    --opt-border-gold:    rgba(217, 119, 6, 0.35);

    /* Açık Header / Footer */
    --opt-header-bg:          rgba(250, 248, 243, 0.96);
    --opt-header-border:      rgba(15, 23, 42, 0.08);
    --opt-header-text:        #0F172A;
    --opt-header-text-muted:  #64748B;
    --opt-header-text-hover:  #0B132B;
    --opt-header-surface:     #FAF8F3;
    --opt-header-surface-alt: #F3F0E8;
    --opt-header-shadow:      0 1px 0 rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.06);

    /* Tipografi */
    --opt-font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Konteyner & Düzen */
    --opt-container-max:  1280px;
    --opt-header-height:  80px;
}

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

html {
    /* Güvenlik katmanı: kaynak düzeltmelerinden sonra kalan yuvarlama taşmalarını keser */
    overflow-x: clip;
}

body {
    background-color: var(--opt-bg-dark);
    color: var(--opt-text-white);
    font-family: var(--opt-font-sans);
    line-height: 1.6;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: var(--opt-container-max);
    margin: 0 auto;
    margin-inline: auto;
    padding: 0 1.5rem;
    padding-inline: clamp(1rem, 3vw, 1.5rem);
    width: 100%;
    box-sizing: border-box;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

svg {
    max-width: 100%;
}

/* Harita SVG oranı bozulmasın */
.hero-map-wrapper > svg,
.turkey-map-svg,
#svg-turkiye-haritasi {
    height: auto;
}

/* ── Navbar & Header (açık yüzey) ───────────────────────────── */
.site-header {
    height: var(--opt-header-height);
    background-color: var(--opt-header-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--opt-header-border);
    box-shadow: var(--opt-header-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    transition: transform 0.28s ease;
    will-change: transform;
    color: var(--opt-header-text);
}

.site-header.is-scroll-hidden {
    transform: translateY(-100%);
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .site-header {
        transition: none;
    }

    .site-header.is-scroll-hidden {
        transform: none;
        pointer-events: auto;
    }
}

body.mobile-nav-open .site-header.is-scroll-hidden {
    transform: none;
    pointer-events: auto;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-width: 0;
    width: 100%;
}

/* Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    flex: 0 1 auto;
    max-width: 100%;
}

.site-header .brand-logo {
    flex: 1 1 auto;
    max-width: min(100%, 22rem);
}

.brand-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-title-group {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1 1 auto;
    max-width: 100%;
}

.brand-main-title {
    font-size: clamp(0.92rem, 0.7rem + 0.9vw, 1.2rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--opt-text-white);
    line-height: 1.2;
    overflow-wrap: anywhere;
    word-break: normal;
    white-space: normal;
    max-width: 100%;
}

.site-header .brand-main-title {
    color: var(--opt-header-text);
}

.brand-sub-title {
    font-size: clamp(0.55rem, 0.48rem + 0.35vw, 0.65rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--opt-text-muted);
    margin-top: 3px;
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: normal;
    white-space: normal;
    max-width: 100%;
}

.site-header .brand-sub-title {
    color: var(--opt-header-text-muted);
}

.site-header .brand-icon path[stroke="#FFFFFF"] {
    stroke: var(--opt-header-text);
}

/* Navigasyon Linkleri */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex: 1 1 auto;
    min-width: 0;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--opt-header-text-muted);
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.is-active,
.nav-item.has-children:hover > .nav-link,
.nav-item.has-children:focus-within > .nav-link {
    color: var(--opt-gold-primary);
}

.nav-chevron {
    opacity: 0.7;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.nav-item.has-children:hover > .nav-link .nav-chevron,
.nav-item.has-children:focus-within > .nav-link .nav-chevron {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 50%;
    transform: translateX(-50%) translateY(0.35rem);
    min-width: 12.5rem;
    padding: 0.45rem;
    border-radius: 10px;
    background: var(--opt-header-surface);
    border: 1px solid var(--opt-header-border);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 40;
}

.nav-item.has-children:hover > .nav-dropdown,
.nav-item.has-children:focus-within > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-link {
    display: block;
    padding: 0.55rem 0.75rem;
    border-radius: 7px;
    color: var(--opt-header-text);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.35;
    white-space: nowrap;
}

.nav-dropdown-link:hover,
.nav-dropdown-link:focus-visible {
    background: var(--opt-header-surface-alt);
    color: var(--opt-gold-primary);
    outline: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 0 0 auto;
    min-width: 0;
}

.btn-support {
    background-color: #D97706;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: 6px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    max-width: 14rem;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    overflow-wrap: anywhere;
    word-break: normal;
}

.btn-support:hover {
    background-color: #B45309;
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(217, 119, 6, 0.5);
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--opt-header-text-muted);
}

.lang-selector a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.lang-selector a:hover {
    color: var(--opt-header-text);
}

.lang-selector a.active,
.lang-selector span.active {
    color: var(--opt-gold-primary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--opt-header-text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ── Hero Bölümü ───────────────────────────────────────────── */
.hero-section {
    position: relative;
    padding: 4.5rem 0 3.5rem;
    background: radial-gradient(circle at 75% 30%, #101c3d 0%, var(--opt-bg-dark) 65%);
    overflow: hidden;
}

.hero-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
}

/* Sol Taraf: Metin & Butonlar */
.hero-content {
    flex: 1 1 50%;
    min-width: 0;
    max-width: 580px;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: clamp(2.1rem, 2.8vw + 0.5rem, 3.1rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--opt-text-white);
    margin-bottom: 1.25rem;
}

.hero-title .hero-line-1 {
    display: block;
    overflow-wrap: break-word; word-break: normal; white-space: normal;
}

.hero-title .hero-line-2 {
    display: block;
    overflow-wrap: break-word; word-break: normal; white-space: normal;
    color: var(--opt-gold-light);
    margin-top: 0.25rem;
}

.hero-title .highlight-gold {
    color: var(--opt-gold-light);
}

.hero-description {
    font-size: 0.95rem;
    color: var(--opt-text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 520px;
    overflow-wrap: break-word;
    word-break: break-word;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background-color: var(--opt-gold-primary);
    color: var(--opt-text-white);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 1.6rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.btn-hero-primary:hover {
    background-color: var(--opt-gold-hover);
    transform: translateY(-2px);
}

.btn-hero-secondary {
    background-color: transparent;
    border: 1px solid var(--opt-border-dark);
    color: var(--opt-text-white);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 1.6rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.btn-hero-secondary:hover {
    border-color: var(--opt-gold-primary);
    color: var(--opt-gold-light);
}

/* ── Sağ Taraf: Harita ve Şehir Pinleri ───────────────────── */
.hero-map-wrapper,
.hero-map-container {
    flex: 0 0 48%;
    width: 48%;
    max-width: 620px;
    position: relative;
    z-index: 1;
    margin-left: auto;
    margin-right: 0;
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
}

.turkey-map-svg,
.hero-map-wrapper > svg,
#svg-turkiye-haritasi {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    overflow: hidden;
}

.svg-turkiye-haritasi {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.svg-turkiye-haritasi svg {
  width: 100%;
  height: auto;
}
.il-isimleri {
  position: absolute;
  z-index: 999;
  pointer-events: none;
}
.il-isimleri div {
  font-family: inherit;
  display: inline-block;
  background: #060B19;
  color: #F59E0B;
  border: 1px solid #D97706;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
#svg-turkiye-haritasi #map-regions g[data-iladi] path {
  cursor: pointer;
}

/* Şehir Pinleri Overlay */
.map-pins-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.city-pin {
    position: absolute;
    pointer-events: auto;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.pin-dot {
    width: 10px;
    height: 10px;
    background-color: var(--opt-gold-light);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.3), 0 0 12px var(--opt-gold-light);
    position: relative;
    transition: transform 0.2s ease;
}

.pin-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 1px solid var(--opt-gold-light);
    animation: pinPulse 2s infinite ease-out;
}

@keyframes pinPulse {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

.city-pin:hover .pin-dot {
    transform: scale(1.3);
    background-color: #ffffff;
}

.pin-label {
    font-size: 11px;
    font-weight: 600;
    color: #FFFFFF;
    background: rgba(6, 11, 25, 0.85);
    backdrop-filter: blur(4px);
    padding: 2px 8px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: all 0.2s ease;
}

.city-pin:hover .pin-label {
    border-color: var(--opt-gold-primary);
    color: var(--opt-gold-light);
}

/* Tooltip Popup */
.pin-tooltip {
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--opt-bg-navy);
    border: 1px solid var(--opt-gold-primary);
    color: var(--opt-text-white);
    padding: 0.6rem 0.9rem;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 20;
}

.pin-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: var(--opt-gold-primary) transparent transparent transparent;
}

.city-pin:hover .pin-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ── Hero İstatistik Bandı ─────────────────────────────────── */
.hero-stats-band {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--opt-border-dark);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background-color: rgba(217, 119, 6, 0.1);
    border: 1px solid var(--opt-border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--opt-gold-light);
    flex-shrink: 0;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--opt-text-white);
    line-height: 1;
}

.stat-title {
    font-size: 0.85rem;
    color: var(--opt-text-muted);
    margin-top: 0.35rem;
}

/* Responsive Media Queries */
@media (max-width: 991.98px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-grid {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }

    .hero-title .hero-line-1,
    .hero-title .hero-line-2 {
        white-space: normal;
        overflow-wrap: break-word;
    }

    .hero-map-wrapper,
    .hero-map-container {
        flex: 0 0 auto;
        width: 100%;
        max-width: 540px;
        margin: 0 auto;
        padding-left: 0;
        justify-content: center;
    }

    .hero-content {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
        min-width: 0;
        text-align: center;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats-band {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 140px), 1fr));
        gap: 1.5rem;
    }
}

/* ═════════════════════════════════════════════════════════════
   FAZ 3 — HİZMETLER GRID & SÜREÇ TIMELINE & İSTATİSTİK BANDI
   ═════════════════════════════════════════════════════════════ */

/* ── Hizmetler Bölümü (Açık Yüzey) ────────────────────────── */
.services-section {
    background-color: #F8FAFC;
    color: #0F172A;
    padding: 5rem 0;
}

.services-grid-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2.5rem;
}

.services-intro-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.services-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--opt-gold-primary);
    margin-bottom: 0.75rem;
    display: block;
}

.services-main-title {
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0F172A;
    margin-bottom: 1.25rem;
}

.services-description {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-all-services {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border: 1px solid #CBD5E1;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    background-color: #FFFFFF;
    transition: all 0.2s ease;
    width: fit-content;
}

.btn-all-services:hover {
    border-color: var(--opt-gold-primary);
    color: var(--opt-gold-primary);
    transform: translateX(2px);
}

/* 8'li Hizmet Grid Yapısı */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
    gap: 1.25rem;
}

.service-card {
    background: #FAF8F5;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    border: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.25s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
    border-color: rgba(217, 119, 6, 0.4);
}

.service-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #FFF3E0;
    color: #D97706;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.service-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 0.65rem;
    line-height: 1.3;
}

.service-card-text {
    font-size: 0.85rem;
    color: #64748B;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.service-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--opt-gold-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.2s ease;
}

.service-card:hover .service-link {
    gap: 0.75rem;
}

/* Sizi Arayalım Vurgu Kartı */
.service-card.cta-card {
    background: #0A1128;
    color: #FFFFFF;
    border: 1px solid rgba(217, 119, 6, 0.4);
    position: relative;
    overflow: hidden;
}

.service-card.cta-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.25) 0%, transparent 70%);
    border-radius: 50%;
}

.service-card.cta-card .service-icon-box {
    background-color: rgba(255, 255, 255, 0.1);
    color: #F59E0B;
}

.service-card.cta-card .service-card-title {
    color: #FFFFFF;
}

.service-card.cta-card .service-card-text {
    color: #94A3B8;
}

.service-card.cta-card .service-link {
    color: #F59E0B;
}

/* ── Çalışma Süreci (Zaman Çizgisi) ────────────────────────── */
.process-section {
    background-color: #FFFFFF;
    padding: 5.5rem 0;
    color: #0F172A;
    text-align: center;
}

.process-header {
    max-width: 650px;
    margin: 0 auto 4rem;
}

.process-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--opt-gold-primary);
    margin-bottom: 0.75rem;
    display: block;
}

.process-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 1rem;
}

.process-sub {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.6;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
    gap: 2rem;
    position: relative;
}

/* Bağlantı Çizgisi — Dairesel 76px ikona tam ortalanmış */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #E2E8F0;
    z-index: 1;
}

.timeline-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon-circle {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background-color: var(--opt-gold-primary);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
    transition: transform 0.25s ease;
}

.timeline-step:hover .step-icon-circle {
    transform: scale(1.08);
}

.step-number {
    font-size: 0.8rem;
    font-weight: 600;
    color: #94A3B8;
    margin-bottom: 0.5rem;
}

.step-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 0.65rem;
}

.step-desc {
    font-size: 0.85rem;
    color: #64748B;
    line-height: 1.5;
    max-width: 240px;
}

/* ── Koyu Lacivert Alt İstatistik Bandı ────────────────────── */
.dark-stats-band {
    background-color: var(--opt-bg-dark);
    padding: 3.5rem 0;
    border-top: 1px solid var(--opt-border-dark);
}

.dark-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
    gap: 2rem;
}

.dark-stat-box {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0 1rem;
    border-right: 1px solid var(--opt-border-dark);
}

.dark-stat-box:last-child {
    border-right: none;
}

.dark-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--opt-border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--opt-gold-light);
    flex-shrink: 0;
}

.dark-stat-num {
    font-size: 1.85rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
}

.dark-stat-lbl {
    font-size: 0.85rem;
    color: #94A3B8;
    margin-top: 0.35rem;
}

/* FAZ 3 Responsive Media Queries */
@media (max-width: 1199.98px) {
    .services-grid-wrapper {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .process-timeline::before {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .dark-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 140px), 1fr));
        gap: 1.5rem;
    }

    .dark-stat-box {
        border-right: none;
        border-bottom: 1px solid var(--opt-border-dark);
        padding-bottom: 1.5rem;
    }

    .dark-stat-box:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* ═════════════════════════════════════════════════════════════
   FAZ 4 — REFERANS KURUMSAL FOOTER & ALT TELİF SATIRI
   (Header ile aynı açık yüzey hiyerarşisi)
   ═════════════════════════════════════════════════════════════ */

.site-footer {
    background-color: var(--opt-header-surface, #FAF8F3);
    color: var(--opt-header-text, #0F172A);
    border-top: 1px solid var(--opt-header-border, rgba(15, 23, 42, 0.08));
    padding-top: 4.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem;
    padding-bottom: 4rem;
    width: 100%;
}

.footer-col {
    min-width: 0;
}

.footer-col .brand-logo {
    max-width: 100%;
}

.site-footer .brand-main-title {
    color: var(--opt-header-text, #0F172A);
}

.site-footer .brand-sub-title {
    color: var(--opt-header-text-muted, #64748B);
}

.site-footer .brand-icon path[stroke="#FFFFFF"] {
    stroke: var(--opt-header-text, #0F172A);
}

.footer-col-desc {
    font-size: 0.9rem;
    color: var(--opt-header-text-muted, #64748B);
    line-height: 1.6;
    margin: 1.25rem 0 1.5rem;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
}

.footer-socials {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.social-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--opt-header-surface-alt, #F3F0E8);
    border: 1px solid var(--opt-header-border, rgba(15, 23, 42, 0.08));
    color: var(--opt-header-text-muted, #64748B);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.social-icon-btn:hover {
    background: var(--opt-gold-primary);
    border-color: var(--opt-gold-primary);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--opt-header-text, #0F172A);
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link-item a {
    font-size: 0.9rem;
    color: var(--opt-header-text-muted, #64748B);
    transition: color 0.2s ease;
}

.footer-link-item a:hover {
    color: var(--opt-gold-primary);
}

.footer-sublinks {
    list-style: none;
    margin: 0.45rem 0 0;
    padding: 0 0 0 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    border-left: 1px solid var(--opt-header-border, rgba(15, 23, 42, 0.08));
}

.footer-sublinks a {
    font-size: 0.82rem;
    color: var(--opt-header-text-muted, #64748B);
}

.footer-sublinks a:hover {
    color: var(--opt-gold-primary);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--opt-header-text-muted, #64748B);
    line-height: 1.5;
    min-width: 0;
}

.footer-contact-item svg {
    color: var(--opt-gold-primary);
    flex-shrink: 0;
    margin-top: 2px;
    max-width: none;
}

.footer-contact-item span,
.footer-contact-item a {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: normal;
}

.footer-contact-item a {
    color: inherit;
    transition: color 0.2s ease;
}

.footer-contact-item a:hover {
    color: var(--opt-gold-primary);
}

.footer-link-item a,
.footer-title {
    overflow-wrap: anywhere;
    word-break: normal;
}

/* Bottom Copyright Bar */
.footer-bottom-bar {
    border-top: 1px solid var(--opt-header-border, rgba(15, 23, 42, 0.08));
    padding: 1.5rem 0;
    background-color: var(--opt-header-surface-alt, #F3F0E8);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--opt-header-text-muted, #64748B);
    min-width: 0;
}

.footer-bottom-inner > span {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: normal;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    min-width: 0;
}

.footer-legal-links a {
    color: inherit;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: var(--opt-gold-primary);
}

.footer-credit-logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    opacity: 0.85;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-credit-logo img {
    display: block;
    height: 18px;
    width: auto;
    max-width: 96px;
}

.footer-credit-logo:hover,
.footer-credit-logo:focus-visible {
    opacity: 1;
    transform: scale(1.03);
    outline: none;
}

@media (max-width: 575.98px) {
    .footer-credit-logo img {
        height: 15px;
        max-width: 84px;
    }
}

/* ── Global Floating Communication Widgets (sol) ───────────── */
.floating-widgets {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: auto;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    align-items: flex-start;
}

.floating-widget-btn,
.back-to-top {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.floating-widget-icon {
    font-size: 1.625rem;
    line-height: 1;
}

.floating-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.floating-phone {
    background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
}

.back-to-top {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    left: auto;
    z-index: 9999;
    background: linear-gradient(135deg, #0E1838 0%, #0B132B 100%);
    border: 1px solid rgba(217, 119, 6, 0.45);
    color: #F59E0B;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top[hidden] {
    display: none !important;
}

.floating-widget-btn:hover,
.back-to-top:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.back-to-top.is-visible:hover {
    transform: translateY(-4px) scale(1.08);
}

.floating-widget-btn .widget-tooltip,
.back-to-top .widget-tooltip {
    position: absolute;
    left: 64px;
    background: #060B19;
    color: #FFFFFF;
    border: 1px solid var(--opt-border-gold);
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    font-size: 0.825rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.back-to-top .widget-tooltip--left {
    left: auto;
    right: 64px;
}

.floating-widget-btn:hover .widget-tooltip {
    opacity: 1;
    visibility: visible;
    left: 68px;
}

.back-to-top:hover .widget-tooltip--left {
    opacity: 1;
    visibility: visible;
    right: 68px;
}

/* Şehir Pini Işıldama (Pulse) Animasyonu */
.pin-dot {
    width: 14px;
    height: 14px;
    background: #F59E0B;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    position: relative;
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.8);
    cursor: pointer;
}

.pin-dot::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 2px solid #F59E0B;
    border-radius: 50%;
    animation: pinPulse 2s infinite ease-in-out;
}

@keyframes pinPulse {
    0% {
        transform: scale(0.6);
        opacity: 1;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

@media (max-width: 767.98px) {
    .floating-widgets {
        left: 1.25rem;
        right: auto;
        bottom: 1.25rem;
    }

    .back-to-top {
        right: 1.25rem;
        left: auto;
        bottom: 1.25rem;
    }

    .floating-widget-btn,
    .back-to-top {
        width: 48px;
        height: 48px;
    }

    .floating-widget-btn .widget-tooltip,
    .back-to-top .widget-tooltip {
        display: none;
    }
}

@media (max-width: 1023.98px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 575.98px) {
    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 2rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}





/* =============================================================
   FAZ 4 — İÇ SAYFALAR (INNER PAGES) - GLOBAL UI SYSTEM
   ============================================================= */

/* --- Hero --- */
.inner-page-hero {
    padding: 5rem 0 4rem;
    background: radial-gradient(circle at 50% 0%, #101c3d 0%, var(--opt-bg-dark) 100%);
    text-align: center;
    border-bottom: 1px solid var(--opt-border-dark);
}
.inner-page-hero__content {
    max-width: 820px;
    margin: 0 auto;
}
.inner-page-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--opt-gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
    display: inline-block;
    background: var(--opt-gold-bg);
    padding: 0.3rem 1rem;
    border-radius: 20px;
}
.inner-page-title {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 700;
    color: var(--opt-text-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.inner-page-description {
    font-size: 1.1rem;
    color: var(--opt-text-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}
.inner-breadcrumb {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--opt-text-subtle);
}
.inner-breadcrumb a {
    color: var(--opt-gold-primary);
    transition: color 0.2s;
    text-decoration: none;
}
.inner-breadcrumb a:hover {
    color: var(--opt-gold-hover);
}
.inner-breadcrumb span[aria-current="page"] {
    color: var(--opt-text-white);
}

/* --- Sections --- */
.inner-page-main {
    flex: 1;
}
.inner-section {
    padding: 5rem 0;
}
.inner-section--light {
    background-color: #F8FAFC;
    color: #0F172A;
}
.inner-section--muted {
    background-color: #F1F5F9;
}
.inner-section--dark {
    background-color: var(--opt-bg-navy);
    color: var(--opt-text-muted);
}
.inner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.inner-container--reading {
    max-width: 820px;
}

/* --- Cards --- */
.inner-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}
.inner-section--dark .inner-card {
    background: var(--opt-bg-card-dark);
    border-color: var(--opt-border-dark);
    box-shadow: none;
}
.inner-card--compact {
    padding: 1.5rem;
}
.inner-form-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    height: 100%;
}
.inner-map-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

/* --- Grids --- */
.inner-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}
.inner-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

/* --- Forms --- */
.opt-form-group {
    margin-bottom: 1.5rem;
}
.opt-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
}
.opt-input, .opt-textarea, .opt-select {
    width: 100%;
    padding: 0.85rem 1.25rem;
    background: #FFFFFF;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    color: #0F172A;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s;
}
.opt-input:focus, .opt-textarea:focus, .opt-select:focus {
    outline: none;
    border-color: var(--opt-gold-primary);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}
.opt-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}
.opt-checkbox-text {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
}
.file-upload-wrapper {
    position: relative;
    border: 2px dashed rgba(217, 119, 6, 0.4);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    background: rgba(217, 119, 6, 0.05);
    transition: all 0.2s;
}
.file-upload-wrapper:hover {
    border-color: var(--opt-gold-primary);
    background: rgba(217, 119, 6, 0.1);
}
.file-upload-input {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* --- Trust Strip --- */
.inner-trust-strip {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #E2E8F0;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    color: #64748B;
    font-size: 0.95rem;
    text-align: center;
}
.inner-trust-strip__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* --- Typography & Rich Text --- */
.rich-text-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #334155;
}
.rich-text-body h2 {
    font-size: 1.75rem;
    color: #0F172A;
    margin: 2.5rem 0 1.25rem;
    font-weight: 600;
}
.rich-text-body h3 {
    font-size: 1.4rem;
    color: #0F172A;
    margin: 2rem 0 1rem;
    font-weight: 600;
}
.rich-text-body p { margin-bottom: 1.5rem; }
.rich-text-body ul, .rich-text-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}
.rich-text-body li { margin-bottom: 0.5rem; }
.rich-text-body a {
    color: var(--opt-gold-primary);
    text-decoration: underline;
}

/* --- Empty States --- */
.inner-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: #FFFFFF;
    border: 1px dashed #CBD5E1;
    border-radius: 12px;
}
.inner-empty-state-icon {
    font-size: 3.5rem;
    color: #94A3B8;
    margin-bottom: 1rem;
}
.inner-empty-state-title {
    font-size: 1.25rem;
    color: #0F172A;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.inner-empty-state-desc {
    font-size: 1rem;
    color: #64748B;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* --- CTA Band --- */
.inner-cta-band {
    background: radial-gradient(circle at 50% 100%, #101c3d 0%, var(--opt-bg-dark) 100%);
    padding: 5rem 1.5rem;
    text-align: center;
    border-top: 1px solid var(--opt-border-dark);
}
.inner-cta-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--opt-text-white);
    margin-bottom: 1rem;
    font-weight: 700;
}
.inner-cta-desc {
    color: var(--opt-text-muted);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* --- Component Specifics --- */
/* Contact Page Cards */
.contact-info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    height: 100%;
}
.contact-info-card__icon {
    background: rgba(217, 119, 6, 0.1);
    padding: 18px;
    border-radius: 50%;
    color: var(--opt-gold-hover);
    margin-bottom: 1.5rem;
}
.contact-info-card__title {
    font-size: 1.15rem;
    color: #0F172A;
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.contact-info-card__text {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
}
.contact-info-card__link {
    color: var(--opt-gold-hover);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.contact-info-card__link:hover {
    color: var(--opt-gold-primary);
}

/* Career Page Cards */
.career-pos-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 1.75rem 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.2s;
}
.career-pos-card:hover {
    border-color: var(--opt-gold-primary);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .inner-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .inner-content-grid {
        grid-template-columns: 1fr;
    }
    .inner-section { padding: 4rem 0; }
}
@media (max-width: 768px) {
    .inner-page-hero { padding: 4rem 0 3rem; }
    .inner-info-grid { grid-template-columns: 1fr; }
    .inner-card, .inner-form-card { padding: 1.5rem; }
    .inner-trust-strip { flex-direction: column; gap: 1.5rem; }
}

/* R3.0 — Settings-driven logo (Media Library URL) */
.brand-logo-img {
    display: block;
    max-height: 48px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1199.98px) and (min-width: 992px) {
    .main-nav {
        gap: 1.1rem;
    }

    .nav-link {
        font-size: 0.88rem;
    }

    .btn-support {
        max-width: 11rem;
        padding: 8px 14px;
        font-size: 0.82rem;
    }
}

/* ── DALGA D.5 — Hero map overflow containment (harita davranışı korunur) ── */
@media (max-width: 991.98px) {
    .hero-map-wrapper,
    .hero-map-container {
        overflow: hidden;
        max-width: 100%;
    }
}

/* ── DALGA D.3 — Hero layout lock (starter + overflow) ── */
.hero-section { overflow: hidden; }
.hero-content { max-width: min(580px, 100%); }
.hero-title,
.hero-title .hero-line-1,
.hero-title .hero-line-2 {
    white-space: normal !important;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: manual;
}
.hero-map-wrapper,
.hero-map-container {
    overflow: visible;
    isolation: isolate;
}
.hero-map-wrapper > svg,
#svg-turkiye-haritasi {
    overflow: visible;
    max-width: 100%;
}
#network-rings {
    display: none !important;
}
.hero-stats-band,
.dark-stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
}
@media (max-width: 575.98px) {
    .city-pin .pin-label { display: none; }
    .hero-stats-band,
    .dark-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 140px), 1fr));
    }
}
