/* ============================================
   ATAKUM TESİSAT - Ana Stil Dosyası
   Renk Paleti: Buz Mavisi Teması
   ============================================ */

/* CSS Değişkenleri */
:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --primary-100: #e0f2fe;
    --primary-200: #bae6fd;
    --primary-50: #f0f9ff;
    --secondary: #0f172a;
    --secondary-light: #1e293b;
    --accent: #06b6d4;
    --accent-light: #22d3ee;
    --text-dark: #0f172a;
    --text-body: #334155;
    --text-light: #64748b;
    --text-white: #f8fafc;
    --bg-white: #ffffff;
    --bg-light: #f0f9ff;
    --bg-gray: #f1f5f9;
    --border: #e2e8f0;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   BUTONLAR
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.5);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-phone {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.4);
}

.btn-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.5);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* ============================================
   BAŞLIKLAR
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--primary-100);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   NAVİGASYON
   ============================================ */
.topbar {
    background: var(--secondary);
    color: var(--text-white);
    padding: 8px 0;
    font-size: 0.85rem;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-white);
    opacity: 0.9;
}

.topbar-item i {
    color: var(--primary-light);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}



.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
}

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

.logo-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text h1,
.logo-text .logo-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    display: block;
}

.logo-text span {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-menu-icon {
    display: none;
}

.nav-menu-cta {
    display: none;
}

.nav-menu a {
    padding: 10px 16px;
    color: var(--text-body);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
    background: var(--primary-50);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.4);
    color: white;
}

.nav-phone i {
    animation: phoneRing 2s ease-in-out infinite;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-10deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-5deg); }
    50% { transform: rotate(0); }
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 10px;
    transition: background 0.2s ease;
    position: relative;
    z-index: 1002;
}

.mobile-toggle:hover {
    background: var(--primary-50);
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transform-origin: center;
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    min-height: 92vh;
    transition: height 0.5s ease;
    overflow: hidden;
}

/* Slide */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.9s;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

/* Background image (blurred) */
.hero-slide-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(6px) brightness(0.25);
    transform: scale(1.1);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 50, 90, 0.88) 0%, rgba(14, 100, 170, 0.72) 50%, rgba(56, 189, 248, 0.55) 100%);
}

/* Slide Content: Left image + Right text */
.hero-slide-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 92vh;
    padding-top: 40px;
    padding-bottom: 80px;
}

/* Left: Image Frame */
.hero-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 480px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255,255,255,0.08);
}

.hero-slide.active .hero-image-frame {
    animation: heroImgIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

@keyframes heroImgIn {
    from { opacity: 0; transform: translateX(-50px) scale(0.95); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

.hero-image-frame img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 6s ease;
}

.hero-slide.active .hero-image-frame img {
    transform: scale(1.05);
}

.hero-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 2px solid rgba(255,255,255,0.12);
    pointer-events: none;
}

.hero-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(14, 165, 233, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-image-badge i { font-size: 1.1rem; }

/* Right: Text Content */
.hero-right {
    color: white;
}

.hero-slide.active .hero-right {
    animation: heroTextIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

@keyframes heroTextIn {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: #7dd3fc;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    color: white;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #7dd3fc, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
    max-width: 480px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

/* Trust badges */
.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}

.hero-trust-item i {
    color: #7dd3fc;
    font-size: 0.9rem;
}

/* Slider Dots */
.hero-slider-controls {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.4s;
    padding: 0;
}

.hero-slider-dot.active {
    background: white;
    border-color: white;
    transform: scale(1.25);
    box-shadow: 0 0 12px rgba(255,255,255,0.4);
}

/* Slider Arrows */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-arrow:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   AVANTAJLAR ŞERIT
   ============================================ */
.advantages-strip {
    background: var(--bg-white);
    padding: 40px 0 0;
    position: relative;
    z-index: 10;
    margin-top: 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.advantage-item {
    padding: 32px 24px;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: var(--transition);
}

.advantage-item:last-child {
    border-right: none;
}

.advantage-item:hover {
    background: var(--primary-50);
}

.advantage-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary);
    font-size: 1.4rem;
    transition: var(--transition);
}

.advantage-item:hover .advantage-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    transform: scale(1.1);
}

.advantage-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.advantage-text {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================
   HİZMETLER
   ============================================ */
.services {
    padding: 100px 0;
    background: var(--bg-light);
}

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

/* ============================================
   YEREL SEO HİZMET LİNKLERİ
   ============================================ */
.local-seo-links {
    padding: 80px 0;
    background: var(--bg-light);
}

.local-link-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.local-link-card {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 72px;
    padding: 18px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.35;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.local-link-card i {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--primary-100);
    color: var(--primary-dark);
}

.local-link-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.geo-answer-section {
    padding: 36px 0 0;
    background: var(--bg-white);
}

.geo-answer-panel {
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.geo-answer-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--primary-dark);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.geo-answer-panel h2 {
    color: var(--text-dark);
    font-size: 1.45rem;
    line-height: 1.25;
    margin-bottom: 12px;
}

.geo-answer-panel p {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.geo-answer-panel ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    list-style: none;
}

.geo-answer-panel li {
    color: var(--text-body);
    font-size: 0.92rem;
    line-height: 1.5;
}

.geo-answer-panel a {
    color: var(--primary-dark);
    font-weight: 800;
}

/* ============================================
   BLOG DETAY
   ============================================ */
.blog-detail-hero {
    position: relative;
    padding: 96px 0;
    background-position: center;
    background-size: cover;
    color: white;
    overflow: hidden;
}

.blog-detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.88));
}

.blog-detail-hero .container {
    position: relative;
    z-index: 1;
}

.blog-detail-hero-content {
    max-width: 860px;
}

.blog-detail-hero h1 {
    font-size: 3rem;
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 20px;
}

.blog-detail-hero p {
    max-width: 740px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.82);
    margin-bottom: 24px;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: rgba(255,255,255,0.84);
    font-weight: 600;
}

.blog-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 48px;
    align-items: start;
}

.blog-detail-content {
    max-width: 820px;
}

.blog-detail-content p {
    font-size: 1.06rem;
    line-height: 1.9;
    color: var(--text-body);
    margin-bottom: 24px;
}

.blog-detail-content h2 {
    font-size: 2rem;
    line-height: 1.25;
    color: var(--text-dark);
    margin: 44px 0 18px;
}

.blog-detail-content h3 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin: 30px 0 12px;
}

.blog-detail-content strong {
    color: var(--text-dark);
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 0 8px;
}

.blog-tags a {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--primary-100);
    color: var(--primary-dark);
    font-size: 0.9rem;
    font-weight: 700;
}

.blog-tags a:hover {
    background: var(--primary);
    color: white;
}

.blog-detail-sidebar {
    position: sticky;
    top: 104px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sidebar-box {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.sidebar-box h2 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.sidebar-box p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.sidebar-box .btn {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    padding: 14px 18px;
    font-size: 0.95rem;
}

.sidebar-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-links a {
    display: block;
    color: var(--text-body);
    font-weight: 700;
}

.sidebar-links a:hover {
    color: var(--primary);
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

/* Service Image */
.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-image-overlay {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(14,165,233,0.4);
    transition: var(--transition);
}

.service-card:hover .service-image-overlay {
    transform: scale(1.1) rotate(-5deg);
}

.service-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Fallback icon (no image) */
.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.6rem;
    margin: 24px 24px 0;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    transform: rotate(-5deg) scale(1.1);
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-link:hover {
    gap: 10px;
    color: var(--primary-dark);
}

/* ============================================
   HAKKIMIZDA
   ============================================ */
.about {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.about-image {
    position: relative;
}

.about-image-main {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-main .about-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
}

.about-placeholder span {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 16px;
}

.about-experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 24px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.about-experience-number {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.about-experience-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.about-content .section-badge {
    margin-bottom: 16px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-text {
    color: var(--text-body);
    margin-bottom: 32px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 36px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--primary-100);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
}

.about-feature-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.about-feature-text p {
    font-size: 0.82rem;
    color: var(--text-light);
}

.about-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   YORUMLAR / TESTİMONİALS
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: var(--bg-light);
}

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

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

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

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
    color: var(--warning);
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ============================================
   BLOG
   ============================================ */
.blog {
    padding: 100px 0;
    background: var(--bg-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    height: 220px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(transparent, rgba(0,0,0,0.1));
}

.blog-content {
    padding: 28px;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

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

/* ============================================
   SSS (FAQ)
   ============================================ */
.faq {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, white 100%);
}

.faq-grid {
    max-width: 720px;
    margin: 0 auto;
    counter-reset: faq-counter;
}

.faq-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    counter-increment: faq-counter;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    background: transparent;
}

.faq-item.active {
    background: transparent;
    border-color: var(--border);
    box-shadow: none;
}

.faq-question {
    padding: 24px 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.05rem;
    gap: 18px;
    transition: color 0.2s ease;
    position: relative;
    /* button reset */
    width: 100%;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    font-family: var(--font-main);
    -webkit-appearance: none;
    appearance: none;
}

.faq-question::before {
    content: counter(faq-counter, decimal-leading-zero);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.5;
    min-width: 28px;
    transition: opacity 0.2s ease;
}

.faq-item.active .faq-question::before {
    opacity: 1;
}

.faq-question span {
    flex: 1;
    line-height: 1.5;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    color: var(--text-light);
    font-size: 0.75rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border: 2px solid var(--border);
}

.faq-item:hover .faq-question i {
    border-color: var(--primary-200);
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

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

.faq-answer-content {
    padding: 0 0 28px 46px;
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.85;
}

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

/* ============================================
   İLETİŞİM
   ============================================ */
.contact {
    padding: 100px 0;
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-cards {
    display: grid;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-info-card:hover {
    background: var(--primary-100);
    transform: translateX(8px);
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-info-text h4 {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-info-text p {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-info-text a {
    color: var(--primary);
}

.contact-info-text a:hover {
    color: var(--primary-dark);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-map iframe {
    border-radius: var(--radius-lg);
}

.contact-form-wrapper {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form-wrapper h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

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

.contact-form .form-group {
    margin-bottom: 16px;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

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

.contact-form .btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
}

/* WhatsApp Form Header */
.whatsapp-form-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2f7e1;
}

.whatsapp-form-header > i {
    font-size: 2.5rem;
    color: #25D366;
}

.whatsapp-form-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.whatsapp-form-header p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.contact-or-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 20px 0;
}

.contact-or-divider::before,
.contact-or-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.contact-or-divider span {
    font-size: 0.85rem;
    color: var(--text-light);
    white-space: nowrap;
}

/* ============================================
   HİZMET BÖLGELERİ
   ============================================ */
.service-areas {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #0c1e3a 100%);
    color: white;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.area-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    transition: var(--transition);
}

.area-card:hover {
    background: rgba(14, 165, 233, 0.15);
    border-color: var(--primary-light);
    transform: translateY(-4px);
}

.area-card i {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 12px;
}

.area-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.area-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
    padding: 120px 0 60px;
}

.legal-header {
    margin-bottom: 40px;
}

.legal-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 16px 0 8px;
}

.legal-updated {
    color: var(--text-light);
    font-size: 0.9rem;
}

.legal-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 32px 0 12px;
}

.legal-content p,
.legal-content li {
    color: var(--text-body);
    line-height: 1.8;
    font-size: 1rem;
}

.legal-content ul {
    padding-left: 24px;
    margin: 12px 0;
}

.legal-content ul li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary);
}

.breadcrumb {
    display: flex;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

/* ============================================
   DISTRICT CROSSLINKS
   ============================================ */
.district-crosslinks {
    padding: 60px 0;
    background: var(--bg-light);
}

.district-crosslinks .section-title {
    text-align: center;
    margin-bottom: 8px;
}

.district-crosslinks .section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.crosslink-card {
    background: white;
    border-radius: 12px;
    padding: 28px 24px;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.crosslink-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.crosslink-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.crosslink-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.crosslink-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.crosslink-arrow {
    position: absolute;
    top: 28px;
    right: 24px;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.crosslink-card:hover .crosslink-arrow {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .crosslinks-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .district-crosslinks {
        padding: 40px 0;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.8);
    padding: 0;
}

/* Footer CTA Band */
.footer-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 40px 0;
    margin-bottom: 48px;
}

.footer-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-cta-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 4px;
}

.footer-cta-text p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
}

.footer-cta-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    transition: var(--transition);
}

.footer-cta-phone {
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
}

.footer-cta-phone:hover {
    background: rgba(255,255,255,0.28);
    transform: translateY(-2px);
}

.footer-cta-wp {
    background: #25D366;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.footer-cta-wp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
}

/* Footer Brand */
.footer-brand {
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 32px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-text h1,
.footer-brand .logo-text .logo-title {
    color: white;
}

.footer-brand .logo-text span {
    color: rgba(255,255,255,0.5);
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 480px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Footer Columns Row */
.footer-columns-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 32px;
}

.footer-column h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

/* Footer Contact */
.footer-contact {
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 0;
}

.footer-contact h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 16px 32px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-item i {
    color: var(--primary-light);
    min-width: 16px;
    font-size: 0.9rem;
}

.footer-contact-item p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.footer-contact-item a {
    color: rgba(255,255,255,0.8);
}

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

/* Footer Bottom */
.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

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

.footer-bottom-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}

/* Footer Credit */
.footer-credit {
    background: rgba(0,0,0,0.25);
    text-align: center;
    padding: 14px 20px;
}

.footer-credit p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}

.footer-credit a {
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    transition: var(--transition);
}

.footer-credit a:hover {
    color: var(--primary-light);
}

/* ============================================
   SABİT WhatsApp & Telefon Butonları
   ============================================ */

/* Desktop: sağ alt köşe dikey */
.fixed-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fixed-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.fixed-btn:hover {
    transform: scale(1.1);
}

.fixed-whatsapp {
    background: #25D366;
    animation: floatBtn 3s ease-in-out infinite;
}

.fixed-phone {
    background: #dc2626;
}

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

.fixed-whatsapp:hover {
    animation: none;
    transform: scale(1.1);
}

/* Mobil alt bar: gizli, 768px altında aktif */
.mobile-bottom-bar {
    display: none;
}

@media (max-width: 768px) {
    /* Desktop butonları mobilde gizle */
    .fixed-buttons {
        display: none;
    }

    /* Mobil alt bar göster */
    .mobile-bottom-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: white;
        border-top: 1px solid #e5e7eb;
        padding: 6px 8px;
        padding-bottom: calc(6px + env(safe-area-inset-bottom));
        gap: 6px;
    }

    .mobile-bottom-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: white;
        font-size: 0.9rem;
        font-weight: 700;
        font-family: var(--font-main);
        text-decoration: none;
        border: none;
        cursor: pointer;
        height: 46px;
        border-radius: 12px;
        letter-spacing: 0.3px;
        transition: opacity 0.2s ease;
    }

    .mobile-bottom-btn:active {
        opacity: 0.85;
    }

    .mobile-bottom-btn i {
        font-size: 1.15rem;
    }

    .mobile-bottom-btn.btn-call {
        background: #dc2626;
    }

    .mobile-bottom-btn.btn-wp {
        background: #25D366;
    }

    /* Footer'a alt bar yüksekliği kadar padding ekle */
    .footer {
        padding-bottom: 80px;
    }
}

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .scroll-top {
        bottom: 90px;
        z-index: 1001;
    }
}

/* ============================================
   FORM MESAJLARI
   ============================================ */
.form-success {
    background: #ecfdf5;
    color: #065f46;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #a7f3d0;
    margin-bottom: 16px;
    display: none;
}

.form-error {
    background: #fef2f2;
    color: #991b1b;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #fecaca;
    margin-bottom: 16px;
    display: none;
}

/* ============================================
   İLÇE SAYFALARI
   ============================================ */
.district-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--secondary), #0c1e3a);
    color: white;
    text-align: center;
}

.district-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.district-hero h1 span {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.district-hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 32px;
}

.district-content {
    padding: 80px 0;
}

.district-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.district-content p {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 20px;
}

.district-services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.district-service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.district-service-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* ============================================
   ANİMASYONLAR
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-slide-content {
        grid-template-columns: 1fr;
        gap: 32px;
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 80px;
    }

    .hero-slider { min-height: 0; }

    .hero-left { order: -1; }

    .hero-image-frame img { height: 320px; }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-slider-arrow { display: none; }

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

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

    .blog-detail-layout {
        grid-template-columns: 1fr;
    }

    .blog-detail-sidebar {
        position: static;
    }

    .about {
        padding: 80px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .about-content {
        text-align: center;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .about-buttons {
        justify-content: center;
    }

    .footer-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-cta-text h3 {
        font-size: 1.3rem;
    }

    .footer-contact-grid {
        grid-template-columns: repeat(2, auto);
    }

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

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

@media (max-width: 768px) {
    .topbar-left {
        display: none;
    }

    /* Mobil Menü - Koyu Tema */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(180deg, #0c1a2e 0%, #0f2440 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        z-index: 1001;
        padding: 80px 40px 40px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s ease;
        overflow-y: auto;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        list-style: none;
        width: 100%;
        max-width: 320px;
        transform: translateY(20px);
        opacity: 0;
        transition: transform 0.4s ease, opacity 0.4s ease;
    }

    .nav-menu.active li {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.05s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(7) { transition-delay: 0.38s; }

    .nav-menu a {
        font-size: 1.1rem;
        font-weight: 600;
        padding: 16px 4px;
        display: flex;
        align-items: center;
        gap: 14px;
        color: rgba(255,255,255,0.75);
        border-bottom: 1px solid rgba(255,255,255,0.06);
        border-radius: 0;
        background: none;
        transition: color 0.2s, padding-left 0.2s;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu-icon {
        width: 20px;
        text-align: center;
        font-size: 0.95rem;
        color: var(--primary-light);
        opacity: 0.7;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: white;
        background: none;
        padding-left: 8px;
    }

    .nav-menu a:hover .nav-menu-icon,
    .nav-menu a.active .nav-menu-icon {
        opacity: 1;
    }

    .nav-menu li:last-child a {
        border-bottom: none;
    }

    /* Menü içi CTA butonları */
    .nav-menu-cta {
        border-bottom: none !important;
        margin-top: 24px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .nav-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 14px 24px;
        border-radius: 12px;
        font-size: 0.95rem;
        font-weight: 700;
        color: white !important;
        border-bottom: none !important;
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .nav-menu-btn:hover {
        transform: scale(1.02);
        padding-left: 24px !important;
    }

    .nav-menu-btn-phone {
        background: linear-gradient(135deg, #ef4444, #dc2626);
        box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
    }

    .nav-menu-btn-wp {
        background: linear-gradient(135deg, #25D366, #128C7E);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }

    /* Hamburger renk - menü açıkken beyaz */
    .mobile-toggle.active .hamburger-line {
        background: white;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1002;
    }

    .nav-cta {
        display: none;
    }

    /* Desktop ikonları gizle */
    .nav-menu-icon {
        display: inline-block;
    }

    .hero-slide-content {
        padding-top: 80px;
        padding-bottom: 60px;
        gap: 24px;
    }

    .hero-image-frame img { height: 260px; }

    .hero-title { font-size: 1.8rem; }

    .hero-buttons { display: none; }

    .hero-trust { gap: 12px; }

    .hero-trust-item { font-size: 0.75rem; }

    .hero-slider-controls { bottom: 20px; }

    .section-title {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .local-seo-links {
        padding: 56px 0;
    }

    .local-link-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .local-link-card {
        min-height: 64px;
        padding: 14px 16px;
        font-size: 0.92rem;
    }

    .geo-answer-section {
        padding-top: 24px;
    }

    .geo-answer-panel {
        padding: 20px 18px;
        border-radius: 12px;
    }

    .geo-answer-panel h2 {
        font-size: 1.18rem;
    }

    .geo-answer-panel p {
        font-size: 0.94rem;
    }

    .geo-answer-panel ul {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .blog-detail-hero {
        padding: 72px 0;
    }

    .blog-detail-hero h1 {
        font-size: 2rem;
    }

    .blog-detail-hero p,
    .blog-detail-content p {
        font-size: 0.98rem;
    }

    .blog-detail-content h2 {
        font-size: 1.55rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .footer-cta {
        padding: 28px 0;
        margin-bottom: 24px;
    }

    .footer-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-cta-text h3 {
        font-size: 1.15rem;
    }

    .footer-cta-text p {
        font-size: 0.85rem;
    }

    .footer-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .footer-cta-btn {
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .footer-brand {
        text-align: center;
        padding-bottom: 24px;
        margin-bottom: 24px;
    }

    .footer-brand .logo {
        justify-content: center;
    }

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

    .footer-social {
        justify-content: center;
    }

    .footer-columns-row {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding-bottom: 24px;
        margin-bottom: 24px;
    }

    .footer-column h3 {
        font-size: 0.95rem;
        margin-bottom: 14px;
        padding-bottom: 10px;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        font-size: 0.82rem;
    }

    .footer-contact {
        padding-bottom: 24px;
    }

    .footer-contact h3 {
        text-align: center;
    }

    .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px 0;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .footer-credit {
        padding-bottom: calc(18px + env(safe-area-inset-bottom));
    }

    .advantages-grid {
        grid-template-columns: repeat(4, 1fr);
        border-radius: 12px;
    }

    .advantage-item {
        padding: 14px 6px;
        border-right: 1px solid var(--border);
        border-bottom: none;
    }

    .advantage-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .advantage-title {
        font-size: 0.65rem;
        line-height: 1.3;
    }

    .advantage-text {
        display: none;
    }

    /* About - Mobil Modern Tasarım */
    .about {
        padding: 60px 0;
    }

    .about-grid {
        gap: 32px;
    }

    .about-image {
        max-width: 280px;
        margin: 0 auto;
    }

    .about-image-main {
        border-radius: 16px;
    }

    .about-experience {
        bottom: -12px;
        right: -8px;
        padding: 16px 20px;
        border-radius: 12px;
    }

    .about-experience-number {
        font-size: 2rem;
    }

    .about-experience-text {
        font-size: 0.78rem;
    }

    .about-content {
        text-align: center;
    }

    .about-content .section-title {
        text-align: center;
        font-size: 1.6rem;
    }

    .about-text {
        text-align: center;
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .about-features {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .about-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        background: var(--bg-light);
        border-radius: 12px;
        padding: 16px 10px;
        gap: 8px;
    }

    .about-feature-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 12px;
        font-size: 1.1rem;
    }

    .about-feature-text h4 {
        font-size: 0.82rem;
    }

    .about-feature-text p {
        font-size: 0.72rem;
    }

    .about-buttons {
        justify-content: center;
    }

    .about-buttons .btn {
        flex: 1;
        justify-content: center;
        min-width: 0;
        font-size: 0.85rem;
        padding: 12px 16px;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        justify-content: center;
    }

    .district-services-list {
        grid-template-columns: 1fr;
    }

    .district-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .footer {
        background: #0b1727;
        padding-bottom: 84px;
    }

    .footer-cta {
        padding: 26px 0;
        margin-bottom: 28px;
    }

    .footer-cta-content {
        align-items: stretch;
        gap: 18px;
    }

    .footer-cta-text h3 {
        font-size: 1.22rem;
        line-height: 1.25;
    }

    .footer-cta-text p {
        max-width: 280px;
        margin: 6px auto 0;
        line-height: 1.55;
    }

    .footer-cta-buttons {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .footer-cta-btn {
        min-height: 48px;
        width: 100%;
        border-radius: 10px;
    }

    .footer > .container {
        padding: 0 18px;
    }

    .footer-brand {
        text-align: left;
        padding: 0 0 24px;
        margin-bottom: 22px;
    }

    .footer-brand .logo {
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 14px;
    }

    .footer-brand .logo-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .footer-brand .logo-text .logo-title {
        font-size: 1rem;
        line-height: 1.2;
    }

    .footer-brand .logo-text span:not(.logo-title) {
        font-size: 0.72rem;
        line-height: 1.35;
    }

    .footer-brand p {
        font-size: 0.88rem;
        line-height: 1.7;
        margin-bottom: 18px;
        color: rgba(255,255,255,0.68);
    }

    .footer-social {
        justify-content: flex-start;
        gap: 8px;
    }

    .footer-social a {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        background: rgba(255,255,255,0.1);
    }

    .footer-columns-row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-bottom: 24px;
        margin-bottom: 24px;
    }

    .footer-column {
        background: rgba(255,255,255,0.045);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 12px;
        padding: 18px 16px 14px;
    }

    .footer-column h3 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 0.98rem;
        margin-bottom: 12px;
        padding-bottom: 10px;
    }

    .footer-column h3::after {
        width: 28px;
    }

    .footer-links {
        display: grid;
        gap: 2px;
    }

    .footer-links li {
        margin-bottom: 0;
    }

    .footer-links a {
        min-height: 38px;
        padding: 7px 0;
        font-size: 0.9rem;
        line-height: 1.35;
        color: rgba(255,255,255,0.72);
    }

    .footer-links a i {
        width: 14px;
        min-width: 14px;
        color: var(--primary-light);
    }

    .footer-contact {
        padding: 18px 16px 20px;
        margin-bottom: 4px;
        background: rgba(255,255,255,0.045);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 12px;
    }

    .footer-contact h3 {
        text-align: left;
        margin-bottom: 14px;
        font-size: 0.98rem;
    }

    .footer-contact h3::after {
        left: 0;
        transform: none;
        width: 28px;
    }

    .footer-contact-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .footer-contact-item {
        justify-content: flex-start;
        align-items: center;
        min-height: 42px;
        gap: 12px;
    }

    .footer-contact-item i {
        width: 34px;
        height: 34px;
        min-width: 34px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 9px;
        background: rgba(255,255,255,0.08);
        font-size: 0.9rem;
    }

    .footer-contact-item p {
        font-size: 0.9rem;
        line-height: 1.35;
        color: rgba(255,255,255,0.72);
        overflow-wrap: anywhere;
    }

    .footer-bottom {
        align-items: flex-start;
        text-align: left;
        padding: 20px 0 18px;
        gap: 14px;
    }

    .footer-bottom p {
        font-size: 0.78rem;
        line-height: 1.55;
    }

    .footer-bottom-links {
        justify-content: flex-start;
        gap: 10px 14px;
    }

    .footer-bottom-links a {
        font-size: 0.8rem;
    }

    .footer-credit {
        padding: 12px 18px calc(14px + env(safe-area-inset-bottom));
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .service-card {
        padding: 24px 20px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }
}

/* Print */
@media print {
    .navbar, .topbar, .fixed-buttons, .scroll-top {
        display: none !important;
    }
}
