/* =============================================
   Web Tasarım İzmir - Ana Stil Dosyası
   Modern, SEO-dostu, Responsive Tasarım
   ============================================= */

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

/* ---- CSS Değişkenleri ---- */
:root {
    --primary:        #0f172a;
    --primary-light:  #1e293b;
    --blue:           #2563eb;
    --blue-dark:      #1d4ed8;
    --purple:         #7c3aed;
    --purple-light:   #8b5cf6;
    --cyan:           #06b6d4;
    --gradient:       linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --gradient-warm:  linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    --white:          #ffffff;
    --light:          #f8fafc;
    --light-blue:     #eff6ff;
    --gray-100:       #f1f5f9;
    --gray-200:       #e2e8f0;
    --gray-300:       #cbd5e1;
    --gray-500:       #64748b;
    --gray-700:       #334155;
    --text:           #1e293b;
    --text-light:     #64748b;
    --border:         #e2e8f0;
    --shadow-sm:      0 1px 3px rgba(0,0,0,0.08);
    --shadow:         0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg:      0 20px 40px rgba(0,0,0,0.12);
    --shadow-blue:    0 8px 30px rgba(37,99,235,0.25);
    --radius:         12px;
    --radius-lg:      20px;
    --radius-xl:      32px;
    --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font:           'Inter', system-ui, sans-serif;
    --font-heading:   'Poppins', 'Inter', sans-serif;
    --header-h:       72px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 800;
    color: var(--primary);
}

p { color: var(--text-light); line-height: 1.75; }

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

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--light-blue);
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.15;
}

.section-title span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.75;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(37,99,235,0.35);
}

.btn-secondary {
    background: var(--white);
    color: var(--blue);
    border-color: var(--blue);
}

.btn-secondary:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(37,211,102,0.35);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37,211,102,0.45);
}

.btn-call {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(245,158,11,0.35);
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(245,158,11,0.45);
}

.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: 14px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* =============================================
   HEADER & NAVİGASYON
   ============================================= */
#header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    transition: var(--transition);
}

#header.transparent {
    background: transparent;
}

#header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border), var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    color: var(--primary);
    transition: var(--transition);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.logo-text span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#header.transparent .logo { color: var(--white); }
#header.transparent .logo-text span { -webkit-text-fill-color: inherit; color: #a5b4fc; }

/* Nav */
.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav a {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
}

.nav a:hover, .nav a.active {
    background: var(--light-blue);
    color: var(--blue);
}

#header.transparent .nav a { color: rgba(255,255,255,0.85); }
#header.transparent .nav a:hover,
#header.transparent .nav a.active { background: rgba(255,255,255,0.15); color: white; }

/* Dropdown */
.nav-item { position: relative; }

.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 12px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 8px 12px;
    font-size: 13px;
    border-radius: 8px;
    color: var(--text);
    white-space: nowrap;
}

.nav-dropdown a:hover { background: var(--light-blue); color: var(--blue); }

/* Transparent header'da dropdown linkleri beyaz değil koyu olmalı */
#header.transparent .nav-dropdown a { color: var(--text); }
#header.transparent .nav-dropdown a:hover { background: var(--light-blue); color: var(--blue); }

.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

#header.transparent .hamburger span { background: white; }

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    z-index: 999;
}

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

.mobile-menu a {
    display: block;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius);
    margin-bottom: 4px;
    color: var(--text);
    transition: var(--transition);
}

.mobile-menu a:hover { background: var(--light-blue); color: var(--blue); }

.mobile-menu-section { margin-bottom: 16px; }
.mobile-menu-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    padding: 8px 16px;
}

.mobile-menu-divider { height: 1px; background: var(--border); margin: 12px 0; }

/* Mobil menü ilçe toggle */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: var(--radius);
    transition: var(--transition);
}
.mobile-menu-toggle:hover { background: var(--light-blue); }
.mobile-menu-toggle-icon {
    font-size: 12px;
    color: var(--gray-500);
    transition: transform 0.3s ease;
}
.mobile-menu-toggle.open .mobile-menu-toggle-icon { transform: rotate(180deg); }

/* İlçe grid */
.mobile-district-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 4px 8px 8px;
}
.mobile-district-grid.open { display: grid; }
.mobile-district-grid a {
    padding: 8px 10px;
    font-size: 12px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 0;
}

.mobile-menu-cta {
    display: flex;
    gap: 10px;
    padding: 12px 0 0;
}

.mobile-menu-cta .btn { flex: 1; justify-content: center; }

/* =============================================
   HERO
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--primary);
    padding-top: var(--header-h);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(37,99,235,0.3) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(124,58,237,0.3) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(6,182,212,0.2) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37,99,235,0.2);
    border: 1px solid rgba(37,99,235,0.4);
    color: #93c5fd;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge-dot {
    width: 8px; height: 8px;
    background: #22d3ee;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero h1 .gradient-text {
    background: linear-gradient(90deg, #60a5fa, #a78bfa, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-num span {
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-card-main {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-xl);
    padding: 32px;
    position: relative;
}

.hero-browser {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(0,0,0,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.browser-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}

.browser-dot:nth-child(1) { background: #ff5f57; }
.browser-dot:nth-child(2) { background: #febc2e; }
.browser-dot:nth-child(3) { background: #28c840; }

.browser-url {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    font-family: monospace;
    margin-left: 12px;
}

.hero-browser-content {
    padding: 20px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mock-header {
    height: 40px;
    background: var(--gradient);
    border-radius: 8px;
    opacity: 0.8;
}

.mock-hero {
    height: 80px;
    background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 8px;
}

.mock-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.mock-card {
    height: 50px;
    background: rgba(255,255,255,0.07);
    border-radius: 6px;
}

.hero-float-card {
    position: absolute;
    background: rgba(255,255,255,0.95);
    border-radius: var(--radius);
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-float-card-1 {
    bottom: -20px;
    left: -30px;
    animation: float1 4s ease-in-out infinite;
}

.hero-float-card-2 {
    top: -20px;
    right: -20px;
    animation: float2 4s ease-in-out infinite 1s;
}

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

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

.float-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.float-icon-green { background: #dcfce7; }
.float-icon-blue { background: #dbeafe; }
.float-label { font-size: 11px; color: var(--gray-500); font-weight: 500; }
.float-value { font-size: 15px; font-weight: 700; color: var(--primary); }

/* =============================================
   STATS
   ============================================= */
.stats-section {
    background: var(--primary);
    padding: 64px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.stat-item {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

/* =============================================
   SERVİSLER
   ============================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    group: true;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
    border-radius: inherit;
}

.service-card:hover {
    border-color: var(--blue);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover .service-icon {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.service-card:hover::before { opacity: 0.05; }

.service-card:hover .service-title,
.service-card:hover .service-desc { /* keep default */ }

.service-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius);
    background: var(--light-blue);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
}

.service-feature::before {
    content: '✓';
    width: 18px; height: 18px;
    background: var(--light-blue);
    color: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
    transition: var(--transition);
}

.service-link:hover { gap: 10px; }

/* Featured card */
.service-card.featured {
    background: var(--gradient);
    border-color: transparent;
}

.service-card.featured .service-title { color: var(--white); }
.service-card.featured .service-desc { color: rgba(255,255,255,0.8); }
.service-card.featured .service-icon {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}
.service-card.featured .service-feature { color: rgba(255,255,255,0.85); }
.service-card.featured .service-feature::before {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}
.service-card.featured .service-link { color: rgba(255,255,255,0.9); }
.service-card.featured:hover { transform: translateY(-6px); }

/* =============================================
   NEDEN BİZ
   ============================================= */
.why-section { background: var(--light); }

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-features { display: flex; flex-direction: column; gap: 24px; }

.why-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.why-feature:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow);
    transform: translateX(4px);
}

.why-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.why-icon-blue { background: #dbeafe; }
.why-icon-purple { background: #ede9fe; }
.why-icon-green { background: #dcfce7; }
.why-icon-orange { background: #ffedd5; }

.why-feature-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.why-feature-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
}

.why-visual {
    position: relative;
}

.why-main-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.why-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.why-card-title { font-size: 16px; font-weight: 700; }

.badge-success {
    background: #dcfce7;
    color: #16a34a;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
}

.progress-list { display: flex; flex-direction: column; gap: 16px; }

.progress-item-label {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.progress-bar-bg {
    height: 8px;
    background: var(--gray-100);
    border-radius: 100px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    border-radius: 100px;
    background: var(--gradient);
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
   İLÇELER
   ============================================= */
.districts-section { background: var(--white); }

.districts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 48px;
}

.district-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    text-decoration: none;
}

.district-card:hover {
    background: var(--white);
    border-color: var(--blue);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.district-icon {
    width: 40px; height: 40px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.district-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2px;
}

.district-label {
    font-size: 11px;
    color: var(--text-light);
}

/* =============================================
   PROCESS / SÜREÇ
   ============================================= */
.process-section { background: var(--primary); }

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 64px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(12.5%);
    right: calc(12.5%);
    height: 2px;
    background: rgba(255,255,255,0.1);
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-num {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 0 0 8px rgba(37,99,235,0.1);
}

.process-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.process-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-section {
    background: var(--gradient);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0% 100%, rgba(0,0,0,0.2) 0%, transparent 60%),
        radial-gradient(circle at 100% 0%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-inner p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { background: var(--light); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.star { color: #f59e0b; font-size: 16px; }

.testimonial-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.author-name { font-size: 14px; font-weight: 700; color: var(--primary); }
.author-title { font-size: 12px; color: var(--text-light); }

/* =============================================
   FOOTER
   ============================================= */
#footer {
    background: var(--primary);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand-desc {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255,255,255,0.55);
    margin: 16px 0 24px;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
    color: rgba(255,255,255,0.7);
}

.social-link:hover {
    background: var(--blue);
    color: white;
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-links a:hover { color: white; transform: translateX(4px); display: inline-flex; }

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-contact-item a:hover { color: white; }

.footer-contact-icon {
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.35);
    transition: var(--transition);
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* Footer Logo Override */
#footer .logo { color: white; }
#footer .logo-text span { -webkit-text-fill-color: #93c5fd; color: #93c5fd; }

/* =============================================
   FLOATING BUTTONS (WhatsApp & Ara)
   ============================================= */
.float-buttons {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    transition: var(--transition);
    white-space: nowrap;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.float-btn-icon {
    width: 28px; height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.float-btn-text { display: none; }

.float-btn:hover .float-btn-text { display: block; }

.float-btn:hover {
    border-radius: 100px;
    padding-right: 24px;
}

.float-btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.float-btn-whatsapp:hover {
    box-shadow: 0 8px 32px rgba(37,211,102,0.5);
    transform: scale(1.05);
}

.float-btn-call {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.float-btn-call:hover {
    box-shadow: 0 8px 32px rgba(59,130,246,0.5);
    transform: scale(1.05);
}

.float-btn-icon-only {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
}

.float-btn-icon-only .float-btn-icon {
    width: auto; height: auto;
    font-size: 22px;
}

/* Pulse animation for WhatsApp */
.float-btn-whatsapp::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.4);
    animation: float-pulse 2s ease-out infinite;
}

@keyframes float-pulse {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.5); }
}

/* =============================================
   İLÇE SAYFASI
   ============================================= */
.page-hero {
    background: var(--primary);
    padding: calc(var(--header-h) + 60px) 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(37,99,235,0.25) 0%, transparent 60%),
        radial-gradient(circle at 80% 30%, rgba(124,58,237,0.2) 0%, transparent 50%);
}

.page-hero-inner {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}

.breadcrumb a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.breadcrumb a:hover { color: white; }
.breadcrumb-sep { font-size: 10px; }

.page-hero h1 {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.page-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* District services */
.district-services {
    background: var(--light);
}

.district-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.district-service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}

.district-service-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

/* District list */
.districts-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 40px;
}

/* İletişim Formu */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }

.contact-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition);
}

.contact-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }

.contact-card-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-card-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-card-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
}

/* Form */
.contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
}

.form-group { margin-bottom: 20px; }

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.form-control::placeholder { color: var(--gray-300); }

textarea.form-control { resize: vertical; min-height: 120px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-success {
    display: none;
    background: #dcfce7;
    border: 1px solid #86efac;
    color: #15803d;
    padding: 16px;
    border-radius: var(--radius);
    font-weight: 600;
    margin-bottom: 20px;
}

.form-error {
    display: none;
    background: #fee2e2;
    border: 1px solid #fca5a5;
    color: #dc2626;
    padding: 16px;
    border-radius: var(--radius);
    font-weight: 600;
    margin-bottom: 20px;
}

/* Hakkımızda */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.team-card {
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: var(--transition);
}

.team-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.team-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.team-name { font-size: 17px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--text-light); }

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--purple);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.value-title { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.value-desc { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* FAQ */
.faq-section { background: var(--light); }
.faq-list { margin-top: 48px; max-width: 800px; margin-left: auto; margin-right: auto; }

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover { border-color: var(--blue); }
.faq-item.active { border-color: var(--blue); box-shadow: var(--shadow); }

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    text-align: left;
    background: none;
    border: none;
    transition: var(--transition);
    gap: 16px;
}

.faq-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 16px;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-icon { background: var(--blue); color: white; transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer { max-height: 300px; }

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.75;
}

/* =============================================
   ANIMATIONS (AOS)
   ============================================= */
[data-aos] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

[data-aos="fade-right"] { transform: translateX(-24px); }
[data-aos="fade-left"] { transform: translateX(24px); }
[data-aos="zoom-in"] { transform: scale(0.9); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 60px; }
    .hero-visual { display: none; }
    .hero { min-height: auto; padding-bottom: 80px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .why-visual { order: -1; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .districts-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid::before { display: none; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .district-services-grid { grid-template-columns: repeat(2, 1fr); }
    .districts-list-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --header-h: 64px; }
    .section { padding: 64px 0; }
    .nav, .header-cta .btn:not(.btn-sm) { display: none; }
    .hamburger { display: flex; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .districts-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .process-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: 1fr; }
    .districts-list-grid { grid-template-columns: repeat(2, 1fr); }
    /* İletişim 3 sütun → 1 sütun */
    .contact-info-cols-3 { grid-template-columns: 1fr !important; }
    /* SSS 2 sütun grid → 1 sütun */
    .faq-two-col { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-actions { flex-direction: column; }
    .hero-stats { flex-direction: column; gap: 24px; }
    .districts-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .districts-list-grid { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; align-items: center; }
    .float-buttons { bottom: 16px; right: 16px; }
    .float-btn-icon-only { width: 48px; height: 48px; }
}
