@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

:root {
    --font-h: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-b: 'DM Sans', system-ui, sans-serif;

    /* KOYU TEMA — antrasit / near-black */
    --bg:               #0D0D0F;
    --bg-surface:       #161618;
    --bg-surface-hover: #1F1F22;
    --border:           rgba(255, 255, 255, 0.07);
    --border-hover:     rgba(255, 255, 255, 0.13);

    --text-main:  #ECEEF1;
    --text-muted: #6B7280;

    --accent:       #3A8FB5;
    --accent-hover: #5AAFD5;
    --accent-glow:  rgba(58, 143, 181, 0.22);

    --grad-primary:       linear-gradient(135deg, #1E6B8A, #3A8FB5);
    --grad-primary-hover: linear-gradient(135deg, #155878, #1E6B8A);

    --rozet-k-bg:     rgba(200, 40, 40, 0.14);
    --rozet-k-text:   #F8A5A5;
    --rozet-k-border: rgba(200, 40, 40, 0.25);

    --rozet-l-bg:     rgba(58, 143, 181, 0.14);
    --rozet-l-text:   #7EC8E8;
    --rozet-l-border: rgba(58, 143, 181, 0.28);

    --rozet-s-bg:     rgba(60, 160, 110, 0.14);
    --rozet-s-text:   #72D4A8;
    --rozet-s-border: rgba(60, 160, 110, 0.26);

    /* Koyu modda siyah gölge görünmez; üst kenar parlaması + derin gölge */
    --shadow-sm:  0 1px 0 rgba(255,255,255,0.05), 0 2px 8px rgba(0,0,0,.6);
    --shadow-md:  0 1px 0 rgba(255,255,255,0.05), 0 6px 20px rgba(0,0,0,.65);
    --shadow-lg:  0 1px 0 rgba(255,255,255,0.06), 0 12px 36px rgba(0,0,0,.7);
    --shadow-xl:  0 1px 0 rgba(255,255,255,0.06), 0 20px 56px rgba(0,0,0,.75);
    --shadow-glow:0 0 28px var(--accent-glow);

    --radius-sm:  4px;
    --radius-md:  8px;
    --radius-lg:  14px;
    --radius-full:9999px;

    --glass-bg:    rgba(16, 16, 18, 0.84);
    --glass-border:rgba(255, 255, 255, 0.09);
}

body.light {
    --bg:               #F2F5F8;
    --bg-surface:       #FFFFFF;
    --bg-surface-hover: #E8EEF4;
    --border:           rgba(15, 40, 70, 0.1);
    --border-hover:     rgba(15, 40, 70, 0.2);

    --text-main:  #0A1929;
    --text-muted: #4A6A88;

    --accent:       #1A5E7A;
    --accent-hover: #114A63;
    --accent-glow:  rgba(26, 94, 122, 0.16);

    --grad-primary:       linear-gradient(135deg, #1A5E7A, #2C7FA0);
    --grad-primary-hover: linear-gradient(135deg, #114A63, #1A5E7A);

    --rozet-k-bg:     rgba(185, 28, 28, 0.08);
    --rozet-k-text:   #9B1C1C;
    --rozet-k-border: rgba(185, 28, 28, 0.16);

    --rozet-l-bg:     rgba(26, 94, 122, 0.09);
    --rozet-l-text:   #114A63;
    --rozet-l-border: rgba(26, 94, 122, 0.2);

    --rozet-s-bg:     rgba(20, 130, 80, 0.09);
    --rozet-s-text:   #0E6B45;
    --rozet-s-border: rgba(20, 130, 80, 0.2);

    --shadow-sm:  0 1px 4px  rgba(10,25,41,.05);
    --shadow-md:  0 4px 16px rgba(10,25,41,.07);
    --shadow-lg:  0 12px 36px rgba(10,25,41,.09);
    --shadow-xl:  0 20px 56px rgba(10,25,41,.12);

    --glass-bg:    rgba(242, 245, 248, 0.88);
    --glass-border:rgba(15, 40, 70, 0.08);
}

/* ─── Reset ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    font-family: var(--font-b);
    background-color: var(--bg);
    color: var(--text-main);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-h);
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.025em;
}

a { text-decoration: none; color: inherit; transition: color 0.2s ease; }
img { max-width: 100%; height: auto; display: block; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }
::selection { background-color: var(--accent); color: #fff; }

/* ─── Animations ───────────────────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: no-preference) {
    .fade-up {
        opacity: 0;
        animation: fadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    .d1 { animation-delay: 0.07s; }
    .d2 { animation-delay: 0.14s; }
    .d3 { animation-delay: 0.21s; }
    .d4 { animation-delay: 0.28s; }
}

@media (prefers-reduced-motion: reduce) {
    .fade-up { opacity: 1; }
}

/* ─── Layout ───────────────────────────────────────────────────────── */
.container    { max-width: 1440px; margin: 0 auto; padding: 0 28px; }
.container-md { max-width: 1100px; margin: 0 auto; padding: 0 28px; }

/* ─── Preloader ────────────────────────────────────────────────────── */
.site-preloader {
    position: fixed; inset: 0;
    background-color: var(--bg);
    z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s ease;
}

/* ─── Theme Button ─────────────────────────────────────────────────── */
.theme-btn {
    position: fixed; top: 24px; right: 28px; z-index: 1000;
    width: 42px; height: 42px;
    border-radius: var(--radius-full);
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-muted);
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.2s ease-out, border-color 0.2s ease-out, color 0.2s ease-out;
    font-size: 15px;
}
.theme-btn:hover {
    transform: scale(1.08);
    border-color: var(--border-hover);
    color: var(--text-main);
}

/* ─── WhatsApp Float ───────────────────────────────────────────────── */
.wa-float {
    position: fixed; bottom: 28px; left: 28px; z-index: 1000;
    background: #25D366; color: #fff;
    border-radius: var(--radius-full);
    padding: 12px 22px;
    display: flex; align-items: center; gap: 10px;
    font-weight: 500; font-size: 14px;
    font-family: var(--font-b);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.26);
    transition: transform 0.2s ease-out, background-color 0.2s ease-out, box-shadow 0.2s ease-out;
    border: 1px solid rgba(255,255,255,0.14);
}
.wa-float:hover {
    transform: translateY(-3px);
    background: #1EBE57;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.34);
}
.wa-float i { font-size: 20px; }

/* ─── Hero ─────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100dvh;
    display: flex; align-items: center;
    overflow: hidden;
    padding: 90px 0 80px;
}

.glow {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 10% 50%, rgba(58, 143, 181, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 90% 30%, rgba(58, 143, 181, 0.05) 0%, transparent 60%);
    pointer-events: none; z-index: 0;
}
body.light .glow {
    background:
        radial-gradient(ellipse 60% 70% at 10% 50%, rgba(26, 94, 122, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 90% 30%, rgba(58, 143, 181, 0.05) 0%, transparent 60%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px; align-items: center;
    position: relative; z-index: 1;
}

@media (min-width: 1024px) {
    .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
}

/* Eyebrow — tek kelime sınır çizgisiyle, pill yok */
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-b);
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
    font-weight: 500; color: var(--accent);
    margin-bottom: 18px;
}
.hero-eyebrow::before {
    content: '';
    display: inline-block; width: 24px; height: 1px;
    background: var(--accent); flex-shrink: 0;
}

/* Rozetler */
.rozet-kutu { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }

.rozet {
    display: inline-flex; align-items: center;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11.5px; font-weight: 500;
    font-family: var(--font-b); letter-spacing: 0.01em;
    border: 1px solid transparent;
}
.rozet-k { background: var(--rozet-k-bg); color: var(--rozet-k-text); border-color: var(--rozet-k-border); }
.rozet-l { background: var(--rozet-l-bg); color: var(--rozet-l-text); border-color: var(--rozet-l-border); }
.rozet-s { background: var(--rozet-s-bg); color: var(--rozet-s-text); border-color: var(--rozet-s-border); }

/* Hero Başlık */
.hero-title {
    font-size: clamp(2.6rem, 5vw, 4.75rem);
    font-weight: 800; line-height: 1.06;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 17px; line-height: 1.75;
    color: var(--text-muted); margin-bottom: 40px;
    max-width: 480px; font-weight: 300;
}

/* Butonlar */
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.btn-primary, .btn-secondary {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 13px 28px;
    border-radius: var(--radius-full);
    font-weight: 600; font-size: 14px;
    font-family: var(--font-b); letter-spacing: 0.01em;
    cursor: pointer;
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, background-color 0.18s ease-out, border-color 0.18s ease-out;
    border: none; white-space: nowrap;
}

.btn-primary {
    background: var(--grad-primary); color: #fff;
    box-shadow: 0 4px 14px var(--accent-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px var(--accent-glow);
}

.btn-secondary {
    background: transparent; color: var(--text-main);
    border: 1px solid var(--border-hover);
}
.btn-secondary:hover {
    background: var(--bg-surface);
    border-color: var(--accent); color: var(--accent);
    transform: translateY(-2px);
}

/* Aktif basma hissi */
.btn-primary:active  { transform: translateY(0) scale(0.98); }
.btn-secondary:active{ transform: translateY(0) scale(0.98); }

/* Hero Görsel */
.hero-img-wrap {
    position: relative;
    border-radius: var(--radius-lg); overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-xl); border: 1px solid var(--border);
}
@media (min-width: 768px)  { .hero-img-wrap { aspect-ratio: 1/1; } }
@media (min-width: 1024px) { .hero-img-wrap { aspect-ratio: 4/5; } }

.hero-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-img-wrap:hover img { transform: scale(1.04); }

.hero-badge {
    position: absolute; bottom: 22px; left: 22px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    padding: 13px 17px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg); border: 1px solid var(--glass-border);
    display: flex; align-items: center; gap: 13px;
    transition: transform 0.2s ease-out;
}
.hero-img-wrap:hover .hero-badge { transform: translateY(-2px); }

.hero-badge-icon {
    width: 40px; height: 40px;
    background: var(--grad-primary); color: #fff;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; flex-shrink: 0;
}
.hero-badge-title { font-weight: 700; font-size: 13.5px; color: var(--text-main); letter-spacing: -0.01em; }
.hero-badge-sub   { font-size: 11.5px; color: var(--text-muted); margin-top: 1px; }

/* ─── Sections ─────────────────────────────────────────────────────── */
section { padding: 100px 0; position: relative; }
section + section { border-top: 1px solid var(--border); }

.section-head {
    text-align: center; max-width: 660px;
    margin: 0 auto 60px;
}

/* Eyebrow — minimal, no pill */
.section-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-b);
    font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--accent); margin-bottom: 16px;
}
.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    display: inline-block; width: 14px; height: 1px;
    background: currentColor; opacity: 0.5; flex-shrink: 0;
}

.section-title {
    font-size: clamp(2rem, 3.8vw, 3.25rem);
    margin-bottom: 18px; letter-spacing: -0.025em;
    font-weight: 700;
}

.section-desc {
    color: var(--text-muted); font-size: 16px;
    line-height: 1.8; font-weight: 300;
}

/* ─── Hizmet Bölümü — Sidebar-Tab Düzeni ──────────────────────────── */
/* Desktop: sol = servis listesi, sag = detay paneli */
@media (min-width: 1024px) {
    #uzmanliklar .container {
        display: grid;
        grid-template-columns: 260px 1fr;
        grid-template-rows: auto 1fr;
        column-gap: 20px;
        align-items: start;
    }
    #uzmanliklar .section-head {
        grid-column: 1 / -1;
        text-align: left;
    }
    #uzmanliklar .hizmet-grid    { grid-column: 1; grid-row: 2; }
    #uzmanliklar #loading-kutu   { grid-column: 2; grid-row: 2; }
    #uzmanliklar #hizmet-detay   { grid-column: 2; grid-row: 2; }
}

#uzmanliklar {
    border-top: 1px solid var(--border);
}

.hizmet-grid {
    display: flex; 
    flex-direction: column;
    gap: 5px; 
    margin-bottom: 48px;
}

@media (max-width: 1023px) {
    .hizmet-grid { flex-direction: row; flex-wrap: wrap; margin-bottom: 32px; }
    .hizmet-karti { flex: 1 1 calc(33% - 4px); min-width: 140px; }
}

@media (max-width: 800px) {
    .hizmet-grid { flex-direction: column; flex-wrap: wrap; margin-bottom: 32px; }
    .hizmet-karti { flex: 1 1 calc(33% - 4px); min-width: 140px; }
}

.hizmet-karti {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    cursor: pointer;
    display: flex; align-items: center; gap: 14px;
    transition: background-color 0.18s ease-out, border-color 0.18s ease-out;
    position: relative; overflow: hidden;
}

/* Sol aksanı — aktif ve hover durumda */
.hizmet-karti::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--grad-primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
.hizmet-karti:hover::before,
.hizmet-karti.aktif::before { transform: scaleY(1); }

.hizmet-karti:hover,
.hizmet-karti.aktif {
    background: var(--bg-surface-hover);
    border-color: var(--border-hover);
}

.hizmet-ikon {
    width: 44px; height: 44px; flex-shrink: 0;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    background: var(--rozet-l-bg); color: var(--accent);
    transition: background-color 0.18s ease-out, color 0.18s ease-out;
}
.hizmet-karti:hover .hizmet-ikon,
.hizmet-karti.aktif .hizmet-ikon {
    background: var(--accent); color: #fff;
}

/* Dikey düzende metin */
.hizmet-metin { display: flex; flex-direction: column; }
.hizmet-isim {
    font-family: var(--font-h);
    font-size: 15px; font-weight: 700;
    color: var(--text-main); letter-spacing: -0.01em;
}
.hizmet-alt {
    font-size: 12.5px; color: var(--text-muted); margin-top: 2px;
    font-weight: 300;
}

/* Detay Alanı */
.detay-alani {
    display: none; opacity: 0;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    transition: opacity 0.22s ease-out;
    position: relative; overflow: hidden;
}
.detay-alani::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--grad-primary);
}

@media (max-width: 768px) { .detay-alani { padding: 26px 18px; } }

.detay-alani.goster { display: block; opacity: 1; }

.detay-ic {
    display: flex; flex-direction: column; gap: 36px;
    position: relative; z-index: 1;
}
@media (min-width: 1024px) {
    .detay-ic { flex-direction: row; align-items: stretch; }
}

.detay-img {
    width: 100%; border-radius: var(--radius-md);
    overflow: hidden; box-shadow: var(--shadow-md); flex-shrink: 0;
}
@media (min-width: 1024px) { .detay-img { width: 42%; } }

.detay-img img { width: 100%; height: 100%; object-fit: cover; }

.detay-tag {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 5px 12px;
    background: var(--rozet-l-bg); color: var(--accent);
    border: 1px solid var(--rozet-l-border);
    border-radius: var(--radius-full);
    font-size: 11.5px; font-weight: 600;
    letter-spacing: 0.07em; text-transform: uppercase;
    margin-bottom: 16px; font-family: var(--font-b);
}

.detay-title {
    font-family: var(--font-h);
    font-size: clamp(1.6rem, 2.8vw, 2.25rem);
    font-weight: 700; margin-bottom: 12px;
    line-height: 1.12; letter-spacing: -0.025em;
}

.detay-desc {
    color: var(--text-muted); font-size: 15px;
    line-height: 1.75; margin-bottom: 26px; font-weight: 300;
}

.ozellik-grid {
    display: grid; grid-template-columns: 1fr;
    gap: 10px; margin-bottom: 28px; list-style: none;
}
@media (min-width: 640px) { .ozellik-grid { grid-template-columns: 1fr 1fr; } }

.ozellik-grid li {
    display: flex; align-items: flex-start;
    gap: 9px; font-size: 14px; font-weight: 400;
}
.ozellik-grid li i {
    color: var(--accent); font-size: 15px;
    margin-top: 3px; flex-shrink: 0;
}

/* Loading */
.loading-kutu { display: none; text-align: center; padding: 40px; }
.loading-kutu.aktif { display: block; animation: fadeIn 0.2s ease; }
.spinner-wrap {
    display: inline-flex; width: 32px; height: 32px;
    border: 2px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%; animation: spin 0.7s linear infinite;
    margin-bottom: 12px;
}

/* ─── Portföy ──────────────────────────────────────────────────────── */

/* Koyu: section = bg-surface (#161618), kartlar = bg-surface-hover (#1F1F22) → kartlar daha açık = yüksek
   Açık: section = bg (#F2F5F8), kartlar = bg-surface (beyaz) → kartlar daha açık = yüksek */
.portfoy-section { background: var(--bg-surface); }

body.light .portfoy-section { background: var(--bg); }
body.light .portfoy-kart,
body.light .portfoy-info  { background: var(--bg-surface); }

.portfoy-head {
    display: flex; justify-content: space-between;
    align-items: flex-end; margin-bottom: 40px;
    flex-wrap: wrap; gap: 18px;
}

.carousel {
    display: flex; overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; gap: 18px; padding: 4px 0 18px;
}
.carousel::-webkit-scrollbar { display: none; }

.portfoy-kart {
    flex: 0 0 100%; scroll-snap-align: center;
    background: var(--bg-surface-hover);
    border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    display: flex; flex-direction: column;
    cursor: pointer;
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out;
}
@media (min-width: 768px)  { .portfoy-kart { flex: 0 0 calc(50% - 9px); scroll-snap-align: start; } }
@media (min-width: 1024px) { .portfoy-kart { flex: 0 0 calc(33.333% - 12px); } }

.portfoy-kart:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-hover);
}

.portfoy-img {
    aspect-ratio: 16/10; width: 100%;
    overflow: hidden; position: relative;
}
.portfoy-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.portfoy-kart:hover .portfoy-img img { transform: scale(1.06); }

.portfoy-rozet {
    position: absolute; top: 12px; left: 12px;
    z-index: 2; backdrop-filter: blur(8px);
}

.portfoy-info {
    padding: 20px 22px; flex: 1;
    display: flex; flex-direction: column;
    background: var(--bg-surface-hover);
    border-top: 1px solid var(--border);
}
.portfoy-title {
    font-family: var(--font-h); font-weight: 700;
    font-size: 17px; margin-bottom: 6px;
    color: var(--text-main); letter-spacing: -0.02em;
}
.portfoy-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

.carousel-btns { display: none; gap: 8px; }
@media (min-width: 768px) { .carousel-btns { display: flex; } }

.carousel-btn {
    width: 42px; height: 42px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    background: var(--bg-surface); color: var(--text-muted);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 13px;
    transition: background-color 0.18s ease-out, color 0.18s ease-out, border-color 0.18s ease-out, transform 0.18s ease-out;
}
.carousel-btn:hover {
    background: var(--accent); color: #fff;
    border-color: var(--accent); transform: translateY(-2px);
}

/* ─── İletişim ─────────────────────────────────────────────────────── */
.iletisim-kart {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    display: flex; flex-direction: column;
}
@media (min-width: 1024px) { .iletisim-kart { flex-direction: row; } }

.iletisim-sol {
    padding: 60px 52px;
    display: flex; flex-direction: column;
    justify-content: center; position: relative;
    border-top: 2px solid var(--accent);
}
@media (min-width: 1024px) {
    .iletisim-sol { width: 45%; border-top: none; border-right: 2px solid var(--accent); }
}
@media (max-width: 768px) { .iletisim-sol { padding: 40px 24px; } }

.iletisim-baslik {
    font-family: var(--font-h);
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    font-weight: 700; margin-bottom: 8px;
    letter-spacing: -0.025em; line-height: 1.1;
}
.iletisim-alt {
    font-size: 15px; color: var(--text-muted);
    margin-bottom: 36px; font-weight: 300; line-height: 1.7;
}

.iletisim-satirlar {
    display: flex; flex-direction: column;
    gap: 16px; margin-bottom: 32px;
}
.iletisim-satir { display: flex; align-items: center; gap: 14px; }

.iletisim-ikon {
    width: 42px; height: 42px; flex-shrink: 0;
    border-radius: var(--radius-md);
    background: var(--bg-surface-hover);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; color: var(--accent);
    transition: background-color 0.18s ease-out, color 0.18s ease-out, transform 0.18s ease-out, border-color 0.18s ease-out;
}
.iletisim-satir:hover .iletisim-ikon {
    background: var(--accent); color: #fff;
    transform: translateY(-2px); border-color: var(--accent);
}

.iletisim-label {
    font-size: 10.5px; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 2px; font-weight: 500;
}
.iletisim-val { font-weight: 500; font-size: 14px; color: var(--text-main); }
.iletisim-val a { color: var(--text-main); transition: color 0.18s ease; }
.iletisim-val a:hover { color: var(--accent); }

.iletisim-cta {
    display: flex; flex-direction: column; gap: 9px; margin-bottom: 26px;
}
@media (min-width: 640px) { .iletisim-cta { flex-direction: row; } }

.cta-ara, .cta-wa {
    display: flex; align-items: center; justify-content: center;
    gap: 9px; padding: 12px 22px;
    border-radius: var(--radius-full);
    font-weight: 500; font-size: 14px;
    transition: transform 0.18s ease-out, background-color 0.18s ease-out, border-color 0.18s ease-out;
    flex: 1;
}
.cta-ara {
    background: transparent; border: 1px solid var(--border-hover);
    color: var(--text-main);
}
.cta-ara:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.cta-wa {
    background: #25D366; color: #fff;
    border: 1px solid transparent;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.2);
}
.cta-wa:hover { background: #1EBE57; transform: translateY(-2px); box-shadow: 0 7px 18px rgba(37, 211, 102, 0.3); }

.sosyal-satirlar { display: flex; gap: 8px; }

.sosyal-btn {
    width: 40px; height: 40px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    background: transparent;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 15px;
    transition: color 0.18s ease-out, border-color 0.18s ease-out, transform 0.18s ease-out;
}
.sosyal-btn:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-3px); }

.harita-wrap {
    flex: 1; min-height: 420px;
    position: relative;
}
.harita-wrap iframe {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; border: 0;
    filter: grayscale(70%) opacity(0.85);
    transition: filter 0.4s ease;
}
body.light .harita-wrap iframe { filter: grayscale(15%) opacity(1); }
.harita-wrap:hover iframe { filter: grayscale(0%) opacity(1); }

/* ─── Footer ───────────────────────────────────────────────────────── */
footer {
    padding: 32px 28px; text-align: center;
    font-size: 12.5px; color: var(--text-muted);
    font-weight: 300; letter-spacing: 0.01em;
    border-top: 1px solid var(--border);
}
.footer-isim { color: var(--text-main); font-weight: 500; }

/* ─── Scrollbar ────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-surface-hover); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ─── Responsive ───────────────────────────────────────────────────── */

/* Tablet landscape / küçük desktop (≤1023px) */
@media (max-width: 1023px) {
    section { padding: 80px 0; }
    .section-head { margin-bottom: 48px; }
    .hizmet-grid { margin-bottom: 28px; }
}

/* Tablet portrait (≤767px) */
@media (max-width: 767px) {
    .container, .container-md { padding: 0 20px; }
    section { padding: 72px 0; }
    .section-head { margin-bottom: 40px; }
    .hero-grid { gap: 32px; }
    .hero-img-wrap { aspect-ratio: 4/3; }
    .harita-wrap { min-height: 320px; }
    .portfoy-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 28px;
    }
    .carousel-btns { display: flex; align-self: flex-end; }
    .iletisim-cta { flex-direction: column; }
    .iletisim-sol { padding: 40px 28px; }
}

/* Mobil telefon (≤480px) */
@media (max-width: 480px) {
    .container, .container-md { padding: 0 16px; }
    .wa-float span { display: none; }
    .wa-float { padding: 12px; border-radius: 50%; }
    .hero { min-height: auto; padding: 76px 0 52px; }
    .hero-grid { gap: 24px; }
    .hero-img-wrap { aspect-ratio: 4/3; }
    .hero-title { font-size: 2.2rem; }
    .hero-desc { font-size: 15px; margin-bottom: 28px; }
    .hero-badge { bottom: 12px; left: 12px; right: 12px; padding: 10px 13px; }
    .btn-row { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; }
    section { padding: 60px 0; }
    .section-head { margin-bottom: 32px; }
    .section-title { font-size: clamp(1.75rem, 7.5vw, 2.2rem); }
    .hizmet-karti { padding: 14px 16px; gap: 10px; }
    .hizmet-ikon { width: 38px; height: 38px; font-size: 16px; }
    .hizmet-isim { font-size: 13.5px; }
    .hizmet-alt { font-size: 11.5px; }
    .detay-alani { padding: 20px 14px; }
    .harita-wrap { min-height: 260px; }
    .iletisim-sol { padding: 32px 16px; }
    .sosyal-satirlar { margin-top: 4px; }
}

/* Çok küçük ekran (≤359px) */
@media (max-width: 359px) {
    .container, .container-md { padding: 0 12px; }
    .hero-title { font-size: 1.9rem; }
    .hizmet-karti { flex-direction: column; gap: 8px; padding: 14px; }
    .hizmet-metin { width: 100%; }
}
