@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Fonts */
    --font-h: 'Outfit', sans-serif;
    --font-b: 'Inter', sans-serif;
    
    /* Premium Koyu Tema Renkleri (Midnight/Slate) */
    --bg: #020617; /* Derin Gece Mavisi/Siyah */
    --bg-surface: #0f172a; /* Zarif Kart Arkaplanı */
    --bg-surface-hover: #1e293b;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    
    /* Metin Renkleri */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    /* Vurgu ve Marka Renkleri */
    --accent: #60a5fa; /* Elektrik Mavi */
    --accent-hover: #3b82f6;
    --accent-glow: rgba(99, 102, 241, 0.4); /* İndigo parlaması */
    
    --grad-primary: linear-gradient(135deg, #3b82f6, #6366f1);
    --grad-primary-hover: linear-gradient(135deg, #2563eb, #4f46e5);
    
    --rozet-k-bg: rgba(220, 38, 38, 0.15);
    --rozet-k-text: #fca5a5;
    --rozet-k-border: rgba(220, 38, 38, 0.3);
    
    --rozet-l-bg: rgba(37, 99, 235, 0.15);
    --rozet-l-text: #93c5fd;
    --rozet-l-border: rgba(37, 99, 235, 0.3);
    
    --rozet-s-bg: rgba(245, 158, 11, 0.15);
    --rozet-s-text: #fcd34d;
    --rozet-s-border: rgba(245, 158, 11, 0.3);

    /* Gölgeler ve Efektler */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 20px var(--accent-glow);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --glass-bg: rgba(24, 24, 27, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
}

body.light {
    /* Modern Açık Tema Renkleri */
    --bg: #f8fafc;
    --bg-surface: #ffffff;
    --bg-surface-hover: #f1f5f9;
    --border: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(0, 0, 0, 0.15);
    
    --text-main: #0f172a;
    --text-muted: #64748b;
    
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --accent-glow: rgba(37, 99, 235, 0.3);
    
    --grad-primary: linear-gradient(135deg, #3b82f6, #8b5cf6);
    --grad-primary-hover: linear-gradient(135deg, #2563eb, #7c3aed);
    
    --rozet-k-bg: rgba(220, 38, 38, 0.1);
    --rozet-k-text: #b91c1c;
    --rozet-k-border: rgba(220, 38, 38, 0.2);
    
    --rozet-l-bg: rgba(37, 99, 235, 0.1);
    --rozet-l-text: #1d4ed8;
    --rozet-l-border: rgba(37, 99, 235, 0.2);
    
    --rozet-s-bg: rgba(245, 158, 11, 0.1);
    --rozet-s-text: #b45309;
    --rozet-s-border: rgba(245, 158, 11, 0.2);

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.05);
}

/* Genel Sıfırlama ve Temel Ayarlar */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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.25s ease, color 0.25s ease;
}

/* Site 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.4s ease;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Erişilebilirlik */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
    border-radius: 4px;
}

::selection {
    background-color: var(--accent);
    color: #fff;
}

/* Animasyonlar */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes meshPan {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.fade-up {
    opacity: 0; /* Başlangıçta görünmez */
    animation: fadeUp 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.2s; }
.d3 { animation-delay: 0.3s; }
.d4 { animation-delay: 0.4s; }

/* Layout & Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-md {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* UI Elemanları */
.theme-btn {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 1000;
    width: 48px;
    height: 48px;
    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-main);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 18px;
}

.theme-btn:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.wa-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    background: #25D366;
    color: #fff;
    border-radius: var(--radius-full);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 15px;
    font-family: var(--font-b);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wa-float:hover {
    transform: translateY(-5px) scale(1.02);
    background: #1EBE57;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.wa-float i {
    font-size: 22px;
}

/* Kahraman (Hero) Bölümü */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Gelişmiş Arka Plan Mesh Efekti */
.glow {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 120%;
    height: 140%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 40%);
    background-size: 200% 200%;
    animation: meshPan 15s ease infinite;
    pointer-events: none;
    z-index: 0;
}

body.light .glow {
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 40%);
}

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

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

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    background: var(--glass-bg);
    color: var(--accent);
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.rozet-kutu {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.rozet {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-b);
    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-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(to right, var(--text-main), var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 540px;
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    font-family: var(--font-b);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    z-index: 1;
}

.btn-primary {
    background: var(--grad-primary);
    color: #fff;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-primary-hover);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-main);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--bg-surface-hover);
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.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.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-img-wrap:hover img {
    transform: scale(1.05);
}

.hero-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.hero-img-wrap:hover .hero-badge {
    transform: scale(1.05);
}

.hero-badge-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.hero-badge-title { font-weight: 700; font-size: 15px; color: var(--text-main); font-family: var(--font-h); }
.hero-badge-sub { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

/* Genel Bölüm Ayarları */
section {
    padding: 100px 0;
    position: relative;
    border-top: 1px solid var(--glass-border);
}

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

.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 16px;
    padding: 6px 14px;
    background: var(--rozet-l-bg);
    border-radius: var(--radius-full);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

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

/* Hizmetler / Uzmanlıklar */
.hizmet-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .hizmet-grid { grid-template-columns: repeat(3, 1fr); }
}

.hizmet-karti {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hizmet-karti::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.hizmet-karti:hover, .hizmet-karti.aktif {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--accent);
}

.hizmet-karti:hover::before, .hizmet-karti.aktif::before {
    opacity: 1;
}

.hizmet-ikon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: var(--rozet-l-bg);
    color: var(--accent);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.hizmet-karti:hover .hizmet-ikon, .hizmet-karti.aktif .hizmet-ikon {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--shadow-glow);
}

.hizmet-isim {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-h);
    margin-bottom: 8px;
    color: var(--text-main);
}

.hizmet-alt {
    font-size: 14px;
    color: var(--text-muted);
}

/* Detay Alanı (Glassmorphism) */
.detay-alani {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-xl);
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.detay-alani::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

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

.detay-alani.goster {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.detay-ic {
    display: flex;
    flex-direction: column;
    gap: 40px;
    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: 45%; }
}

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

.detay-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--rozet-l-bg);
    color: var(--accent);
    border: 1px solid var(--rozet-l-border);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.detay-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.detay-desc {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.ozellik-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
    list-style: none;
}

@media (min-width: 640px) {
    .ozellik-grid { grid-template-columns: 1fr 1fr; }
}

.ozellik-grid li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
}

.ozellik-grid li i {
    color: var(--accent);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Loading Kutu */
.loading-kutu { display: none; text-align: center; padding: 40px; }
.loading-kutu.aktif { display: block; animation: fadeIn 0.3s ease; }
.spinner-wrap {
    display: inline-flex;
    width: 40px; height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Portföy */
.portfoy-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    gap: 24px;
    padding: 10px 0 20px;
}

.carousel::-webkit-scrollbar { display: none; }

.portfoy-kart {
    flex: 0 0 100%;
    scroll-snap-align: center;
    background: var(--bg-surface);
    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: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
    .portfoy-kart { flex: 0 0 calc(50% - 12px); scroll-snap-align: start; }
}
@media (min-width: 1024px) {
    .portfoy-kart { flex: 0 0 calc(33.333% - 16px); }
}

.portfoy-kart:hover {
    transform: translateY(-8px);
    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.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfoy-kart:hover .portfoy-img img {
    transform: scale(1.08);
}

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

.portfoy-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.portfoy-title {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-main);
}

.portfoy-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.carousel-btns {
    display: none;
    gap: 12px;
}

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

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    background: var(--bg-surface);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* İletişim */
.iletisim-kart {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
    .iletisim-kart { flex-direction: row; }
}

.iletisim-sol {
    background: var(--bg-surface);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    color: var(--text-main);
}

@media (min-width: 1024px) {
    .iletisim-sol { width: 45%; }
}

.iletisim-baslik {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-main);
}

.iletisim-alt {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.iletisim-satirlar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.iletisim-satir {
    display: flex;
    align-items: center;
    gap: 16px;
}

.iletisim-ikon {
    width: 48px;
    height: 48px;
    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: 18px;
    color: var(--accent);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.iletisim-satir:hover .iletisim-ikon {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--accent);
}

.iletisim-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
    font-weight: 600;
}

.iletisim-val {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-main);
}

.iletisim-val a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s ease;
}
.iletisim-val a:hover {
    color: var(--accent);
}

.iletisim-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

@media (min-width: 640px) {
    .iletisim-cta { flex-direction: row; }
}

.cta-ara, .cta-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    flex: 1;
}

.cta-ara {
    background: var(--bg-surface-hover);
    border: 1px solid var(--border);
    color: var(--text-main);
}

.cta-ara:hover {
    background: var(--bg-surface);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.cta-wa {
    background: #25D366;
    color: #fff;
    border: 1px solid transparent;
}

.cta-wa:hover {
    background: #1EBE57;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

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

.sosyal-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    background: var(--bg-surface-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: 16px;
    transition: all 0.3s ease;
}

.sosyal-btn:hover {
    background: var(--bg-surface);
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.harita-wrap {
    flex: 1;
    min-height: 400px;
    position: relative;
    border-left: 1px solid var(--border);
}

.harita-wrap iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
    filter: grayscale(100%) opacity(0.8);
    transition: filter 0.5s ease;
}

body.light .harita-wrap iframe {
    filter: grayscale(0%) opacity(1);
}

.harita-wrap:hover iframe {
    filter: grayscale(0%) opacity(1);
}

.sosyal-alt {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding-top: 60px;
    margin-top: 60px;
    border-top: 1px solid var(--glass-border);
}

.sosyal-alt-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.sosyal-alt-link:hover {
    color: var(--accent);
}

.sosyal-alt-link i {
    font-size: 16px;
}

/* Footer */
footer {
    padding: 40px 24px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-isim {
    color: var(--text-main);
    font-weight: 600;
}

/* Scrollbar Özelleştirme */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-surface-hover);
    border-radius: 4px;
    border: 2px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Responsive Düzenlemeler */
@media (max-width: 480px) {
    .wa-float span { display: none; }
    .wa-float { padding: 14px; border-radius: 50%; }
    .hero { min-height: 90vh; padding: 100px 0 60px; }
    .hero-title { font-size: 2rem; }
    .hero-badge { bottom: 15px; left: 15px; right: 15px; padding: 12px 16px; }
    .btn-row { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; }
    .hizmet-karti { padding: 30px 20px; }
    .detay-tag { font-size: 11px; }
    .portfoy-head { flex-direction: column; align-items: flex-start; }
    section { padding: 60px 0; }
    .iletisim-sol { padding: 40px 24px; }
}
