/* ============================================
// SAKARYA EN YAKIN ÇEKİCİ - OTO YOL YARDIM
// 2025 ATILIM DİJİTAL - KREATİF UX/UI TASARIM V3 (FİNAL)
// www.atilimdijital.com
// ============================================ */

/* Google Fonts Import - En üstte olmalı */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@700;800;900&family=Inter:wght@400;500;600;700&display=swap');

/* ============================================
   KÖK DEĞİŞKENLER (RENK & TASARIM)
   ============================================ */
:root {
    /* Renk Paleti (Kreatif, Premium, Güvenilir) */
    --color-primary: #007BFF;
    --color-primary-dark: #0056b3;
    --color-secondary: #FFC107;
    --color-secondary-dark: #d39e00;
    --color-danger: #D90429;
    
    /* Nötr Renkler (Koyu Mod Ağırlıklı Premium) */
    --color-text: #212529;
    --color-text-light: #5a6169;
    --color-text-white: #FFFFFF;
    --color-bg: #FFFFFF;
    --color-bg-alt: #F8F9FA;
    --color-border: #DEE2E6;
    --color-dark-bg: #121212;
    --color-dark-bg-alt: #1E1E1E;
    --color-dark-border: #333333;

    /* WhatsApp */
    --color-whatsapp: #25D366;
    --color-whatsapp-dark: #128C7E;
    
    /* Tipografi (Modern ve Okunaklı) */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    --font-display: 'Exo 2', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    
    /* Boşluklar */
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --space-16: 4rem;
    
    /* Gölgeler (Yumuşak) */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-primary: 0 5px 15px rgba(0, 123, 255, 0.2);
    
    /* Geçişler */
    --transition: 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Kenar Yarıçapları */
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Konteyner */
    --container-width: 1240px;
    --container-padding: 1.5rem;
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
        --space-12: 2rem;
        --space-16: 3rem;
    }
}

/* ============================================
   TEMEL STİLLER VE RESET
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body.menu-open {
    overflow: hidden;
}

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

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

a:hover {
    color: var(--color-primary-dark);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-text);
}

.page-home h1, .page-home h2 { 
    letter-spacing: -0.5px; 
}

.page-dynamic h1, .page-dynamic h2 { 
    letter-spacing: -0.2px; 
}

h1 { 
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--space-4); 
}

h2 { 
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--space-6); 
}

h3 { 
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    margin-bottom: var(--space-4); 
}

p {
    margin-bottom: var(--space-6);
    color: var(--color-text-light);
}

p:last-child { 
    margin-bottom: 0; 
}

strong { 
    font-weight: 700; 
    color: var(--color-text); 
}

/* ============================================
   GENEL ELEMENTLER (Container, Buttons)
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Buton Stilleri */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--lg {
    padding: var(--space-6) var(--space-8);
    font-size: 1.125rem;
    border-radius: var(--radius-lg);
}

.btn--block {
    width: 100%;
}

/* Birincil Buton (Sarı) */
.btn--primary {
    background-color: var(--color-secondary);
    color: var(--color-text);
    border-color: var(--color-secondary);
}

.btn--primary:hover {
    background-color: var(--color-secondary-dark);
    border-color: var(--color-secondary-dark);
    color: var(--color-text);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Header Butonu (Acil Kırmızı) */
.btn--header {
    background-color: var(--color-danger);
    border-color: var(--color-danger);
    color: var(--color-text-white);
    font-weight: 700;
    font-size: 0.9375rem;
}

.btn--header:hover {
    background-color: #a1031f;
    border-color: #a1031f;
    color: var(--color-text-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(217, 4, 41, 0.3);
}

/* İkincil Buton (Beyaz/Sınır) */
.btn--secondary {
    background-color: var(--color-bg);
    color: var(--color-text);
    border-color: var(--color-border);
}

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

/* WhatsApp Butonu */
.btn--whatsapp {
    background-color: var(--color-whatsapp);
    color: var(--color-text-white);
    border-color: var(--color-whatsapp);
}

.btn--whatsapp:hover {
    background-color: var(--color-whatsapp-dark);
    border-color: var(--color-whatsapp-dark);
    color: var(--color-text-white);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .btn {
        font-size: 0.9375rem;
        padding: var(--space-3) var(--space-5);
    }
    
    .btn--lg {
        font-size: 1rem;
        padding: var(--space-5) var(--space-6);
    }
}

/* ============================================
   BÖLÜM BAŞLIKLARI
   ============================================ */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-12);
}

.section-header__tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    padding: var(--space-2) var(--space-4);
    background-color: var(--color-primary);
    color: var(--color-text-white);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: var(--space-4);
}

.section-header__title--left {
    text-align: left;
    margin-left: 0;
}

.section-header__subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ============================================
   HEADER & NAVİGASYON (YENİ TASARIM)
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--transition);
    width: 100%;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5.5rem;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--color-text);
}

.header__logo:hover { 
    color: var(--color-text); 
}

.header__logo-img {
    height: 3rem;
    width: auto;
    object-fit: contain;
}

.header__logo-text {
    display: flex;
    flex-direction: column;
}

.header__logo-brand {
    font-family: var(--font-display);
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 800;
    line-height: 1.1;
}

.header__logo-tagline {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
}

.header__logo-brand--footer {
    color: var(--color-text-white);
}

.nav {
    display: block;
}

.nav__list {
    display: flex;
    gap: var(--space-8);
}

.nav__link {
    position: relative;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-light);
    padding: var(--space-2) 0;
}

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

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    transition: width var(--transition);
}

.nav__link:hover::after {
    width: 100%;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.header__mobile-toggle {
    display: none;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    z-index: 1002;
}

.header__toggle-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

body.menu-open .header__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

body.menu-open .header__toggle-line:nth-child(2) {
    opacity: 0;
}

body.menu-open .header__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   ANA SAYFA: HERO (AURORA GRADIENT)
   ============================================ */
.hero {
    position: relative;
    background-color: var(--color-bg-alt);
    padding: 0;
    overflow: hidden;
    width: 100%;
}

/* Yeni Slider Yapısı */
.hero-slider-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 66.666%; /* 3:2 oranı (1536x1024) */
    overflow: hidden;
    background: #000;
}

.hero-slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
    z-index: 1;
    display: block;
}

.hero-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 2;
    display: block !important;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* İlk slide'ın kesinlikle görünür olması için */
.hero-slide:first-child {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide-container .hero-slide.active:first-child {
    opacity: 1 !important;
    visibility: visible !important;
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slider-nav-btn:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-indicator.active {
    background: var(--color-primary);
    width: 30px;
    border-radius: 6px;
}

.slider-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero__slider-wrapper .slider-btn {
    z-index: 10;
}

/* Aurora Gradient Efekti */
.hero__aurora {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 1400px;
    height: 1000px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0, 123, 255, 0.1), transparent 40%),
                radial-gradient(circle, rgba(255, 193, 7, 0.1), transparent 40%);
    filter: blur(120px);
    opacity: 0.7;
    z-index: 0;
}

.hero__container {
    position: relative;
    z-index: 1;
    padding: var(--space-16) var(--container-padding);
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
}

.hero__content {
    width: 100%;
    text-align: center;
}

.hero__title {
    font-size: clamp(2.25rem, 6vw, 3.75rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: var(--space-6);
}

.hero__highlight {
    color: var(--color-primary);
}

.hero__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--color-text-light);
    margin-bottom: var(--space-8);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.hero__cta-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}


/* ============================================
   ANA SAYFA: HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-top: 0;
}

/* Hero içindeki slider */
.hero__slider-wrapper .hero-slider {
    height: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    z-index: 1;
}

.slider-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 2;
    display: block !important;
}

.slider-slide__image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slider-slide__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.slider-slide__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
}

.slider-slide__content {
    position: absolute;
    top: -9999px;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    /* SEO için HTML'de kalıyor ama görsel olarak tamamen gizli */
    visibility: hidden;
    opacity: 0;
    z-index: -1;
}

.slider-slide__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: var(--space-4);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideInUp 0.8s ease-out;
    /* Tamamen gizli */
    display: none;
}

.slider-slide__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    margin-bottom: var(--space-8);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: slideInUp 0.8s ease-out 0.2s both;
    /* Tamamen gizli */
    display: none;
}

.slider-slide__cta {
    display: none;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

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

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    justify-content: space-between;
    padding: 0 var(--space-4);
    pointer-events: none;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all var(--transition);
    pointer-events: all;
    box-shadow: var(--shadow-md);
}

.slider-btn:hover {
    background: var(--color-primary);
    color: var(--color-text-white);
    transform: scale(1.1);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-btn svg {
    width: 24px;
    height: 24px;
}

.slider-dots {
    position: absolute;
    bottom: var(--space-6);
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: var(--space-3);
}

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

.slider-dot.active {
    background: var(--color-text-white);
    border-color: var(--color-text-white);
    transform: scale(1.2);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .hero {
        padding: 0;
    }
    
    .hero__container {
        padding: var(--space-8) var(--container-padding);
    }
    
    .hero__content {
        width: 100%;
        text-align: center;
    }
    
    .hero__title {
        text-align: center;
    }
    
    .hero__subtitle {
        text-align: center;
        max-width: 100%;
    }
    
    .hero__slider-wrapper {
        padding-bottom: 66.666%; /* 3:2 oranı korunuyor */
        height: 0;
        width: 100%;
    }
    
    .hero__slider-wrapper .hero-slider {
        height: 100%;
        width: 100%;
    }
    
    .hero__slider-wrapper .slider-container {
        width: 100%;
        height: 100%;
    }
    
.hero__slider-wrapper .slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
    
    .hero__slider-wrapper .slider-slide {
        width: 100%;
        height: 100%;
    }
    
    .hero__slider-wrapper .slider-slide__image-wrapper {
        width: 100%;
        height: 100%;
    }
    
    .hero__slider-wrapper .slider-slide__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        image-rendering: auto;
    }
    
    .slider-slide__title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .slider-slide__subtitle {
        font-size: clamp(0.9375rem, 3vw, 1.25rem);
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .slider-dots {
        bottom: var(--space-4);
    }
}

/* ============================================
   CONTENT IMAGES (Metinlerin içindeki görseller)
   ============================================ */
.content-image-wrapper {
    margin: var(--space-8) 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.content-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-content__text .content-image-wrapper {
    max-width: 100%;
}

@media (max-width: 768px) {
    .content-image-wrapper {
        margin: var(--space-6) 0;
    }
}

/* ============================================
   ANA SAYFA: STATS BAR
   ============================================ */
.stats-bar {
    background: var(--color-dark-bg);
    color: var(--color-text-white);
    width: 100%;
    overflow: hidden;
}

.stats-bar__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
    padding: var(--space-8) 0;
}

.stat-item {
    text-align: center;
}

.stat-item__value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 900;
    color: var(--color-secondary);
    line-height: 1.1;
}

.stat-item__label {
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 500;
    color: var(--color-text-white);
    opacity: 0.8;
}

/* ============================================
   ANA SAYFA: HİZMETLER (GLASSMORPHISM CARD)
   ============================================ */
.services {
    padding: var(--space-16) 0;
    background: var(--color-bg-alt);
    width: 100%;
    overflow: hidden;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: var(--space-6);
}

.service-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    overflow: hidden;
    color: var(--color-text);
}

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

.service-card__image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card__image {
    transform: scale(1.05);
}

.service-card__content {
    padding: var(--space-6);
}

.service-card__title {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 800;
    margin-bottom: var(--space-2);
}

.service-card__desc {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-4);
}

.service-card__link {
    font-weight: 700;
    color: var(--color-primary);
    position: relative;
}

.service-card__link::after {
    content: '→';
    margin-left: var(--space-2);
    transition: margin-left var(--transition);
}

.service-card:hover .service-card__link::after {
    margin-left: var(--space-3);
}

/* ============================================
   ANA SAYFA: NASIL ÇALIŞIR? (YENİ BÖLÜM)
   ============================================ */
.how-it-works {
    padding: var(--space-16) 0;
    background: var(--color-bg);
    width: 100%;
    overflow: hidden;
}

.how-it-works__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: var(--space-6);
}

.how-it-works__step {
    text-align: center;
    padding: var(--space-6);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    background: var(--color-bg);
    box-shadow: var(--shadow-sm);
}

.how-it-works__number {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: var(--space-4);
}

.how-it-works__title {
    font-size: clamp(1.125rem, 3vw, 1.375rem);
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.how-it-works__step p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin: 0;
}

/* ============================================
   ANA SAYFA: NEDEN BİZ (ASYMMETRICAL)
   ============================================ */
.why-us {
    padding: var(--space-16) 0;
    background: var(--color-bg-alt);
    width: 100%;
    overflow: hidden;
}

.why-us__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: var(--space-12);
    align-items: center;
}

.why-us__image-wrapper {
    position: relative;
    width: 100%;
}

.why-us__image {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Dekoratif element - Mobilde gizle */
.why-us__image-wrapper::before {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    width: 100px;
    height: 100px;
    background: var(--color-primary);
    opacity: 0.1;
    border-radius: var(--radius-lg);
    z-index: -1;
}

@media (max-width: 768px) {
    .why-us__image-wrapper::before {
        display: none;
    }
}

.why-us__content p {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    margin-bottom: var(--space-6);
}

.why-us__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.why-us__feature-item {
    display: flex;
    flex-direction: column;
}

.why-us__feature-item strong {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    font-weight: 700;
    color: var(--color-text);
}

.why-us__feature-item span {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

/* ============================================
   ANA SAYFA: BÖLGELER (YENİ TABLI YAPI)
   ============================================ */
.areas {
    padding: var(--space-16) 0;
    background: var(--color-bg);
    width: 100%;
    overflow: hidden;
}

/* İlçe/Mahalle Tab Yapısı */
.area-tabs {
    width: 100%;
    margin-top: var(--space-8);
}

/* Tab Navigation */
.area-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    border-bottom: 3px solid var(--color-border);
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-2);
    position: relative;
}

.area-tabs__button {
    padding: var(--space-4) var(--space-6);
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 700;
    color: var(--color-text-light);
    border: none;
    border-bottom: 3px solid transparent;
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    transform: translateY(2px);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    white-space: nowrap;
}

.area-tabs__button::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--color-primary);
    transition: width var(--transition);
}

.area-tabs__button:hover {
    color: var(--color-primary);
}

.area-tabs__button:hover::after {
    width: 100%;
}

.area-tabs__button.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.area-tabs__button.active::after {
    width: 100%;
}

.area-tabs__button-text {
    display: block;
}

.area-tabs__button-count {
    font-size: 0.875em;
    font-weight: 600;
    opacity: 0.7;
    display: block;
}

.area-tabs__button.active .area-tabs__button-count {
    opacity: 1;
}

/* Tab Panels Container */
.area-tabs__panels {
    position: relative;
    min-height: 300px;
}

/* Tab Panel */
.area-tabs__panel {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.area-tabs__panel.active {
    display: block;
}

.area-tabs__panel-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    margin-bottom: var(--space-6);
    color: var(--color-text);
    padding-bottom: var(--space-4);
    border-bottom: 2px solid var(--color-border);
}

/* Mahalleler Listesi */
.area-tabs__neighborhood-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr));
    gap: var(--space-3);
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-tabs__neighborhood-link {
    display: block;
    padding: var(--space-4) var(--space-5);
    background: var(--color-bg-alt);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: var(--color-text);
    text-decoration: none;
    transition: all var(--transition);
    word-wrap: break-word;
    position: relative;
    overflow: hidden;
}

.area-tabs__neighborhood-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.1), transparent);
    transition: left 0.5s;
}

.area-tabs__neighborhood-link:hover::before {
    left: 100%;
}

.area-tabs__neighborhood-link:hover {
    background: var(--color-primary);
    color: var(--color-text-white);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

/* ============================================
   ANA SAYFA: SSS (YENİ BÖLÜM)
   ============================================ */
.faq-home {
    padding: var(--space-16) 0;
    background: var(--color-bg-alt);
    width: 100%;
    overflow: hidden;
}

.accordion--home {
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================
   ANA SAYFA: CTA (KOYU TASARIM)
   ============================================ */
.cta {
    padding: var(--space-16) 0;
    background: var(--color-dark-bg);
    color: var(--color-text-white);
    width: 100%;
    overflow: hidden;
}

.cta__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-8);
    flex-wrap: wrap;
}

.cta__content {
    flex: 1 1 100%;
    max-width: 100%;
}

@media (min-width: 769px) {
    .cta__content {
        flex: 1 1 60%;
    }
    
    .cta__actions {
        flex: 1 1 35%;
    }
}

.cta__title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 900;
    color: var(--color-text-white);
    margin-bottom: var(--space-4);
}

.cta__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: var(--color-text-white);
    opacity: 0.8;
    margin-bottom: 0;
}

.cta__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    width: 100%;
}

/* ============================================
   DİNAMİK SAYFA: HERO
   ============================================ */
.hero-dynamic {
    position: relative;
    padding: var(--space-16) 0;
    color: var(--color-text-white);
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.hero-dynamic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-dynamic__container {
    position: relative;
    z-index: 2;
}

.breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    font-size: 0.875rem;
    margin-bottom: var(--space-4);
}

.breadcrumb__item {
    display: flex;
    align-items: center;
}

.breadcrumb__item:not(:last-child)::after {
    content: '>';
    margin: 0 var(--space-2);
    opacity: 0.5;
}

.breadcrumb__link {
    color: var(--color-text-white);
    opacity: 0.8;
}

.breadcrumb__link:hover {
    opacity: 1;
    text-decoration: underline;
    color: var(--color-text-white);
}

.breadcrumb__current {
    color: var(--color-text-white);
    font-weight: 700;
    opacity: 1;
}

.hero-dynamic__title {
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    color: var(--color-text-white);
    margin-bottom: var(--space-4);
}

.hero-dynamic__highlight {
    color: var(--color-secondary);
    display: block;
}

.hero-dynamic__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--color-text-white);
    opacity: 0.9;
    max-width: 800px;
}

/* ============================================
   DİNAMİK SAYFA: İÇERİK ALANI
   ============================================ */
.dynamic-layout {
    padding: var(--space-16) 0;
    width: 100%;
    overflow: hidden;
}

.dynamic-layout__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
}

@media (min-width: 1025px) {
    .dynamic-layout__container {
        grid-template-columns: 1fr 360px;
    }
}

.dynamic-content {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

@media (min-width: 1025px) {
    .dynamic-content {
        max-width: 800px;
    }
}

.dynamic-content__section {
    margin-bottom: var(--space-12);
}

.dynamic-content__title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    padding-bottom: var(--space-3);
    border-bottom: 3px solid var(--color-primary);
    margin-bottom: var(--space-6);
}

.dynamic-content__text {
    font-size: clamp(1rem, 2vw, 1.0625rem);
    line-height: 1.75;
}

.dynamic-content__text p,
.dynamic-content__text strong,
.dynamic-content__text br {
    font-size: inherit;
    line-height: inherit;
    margin-bottom: var(--space-4);
}

.dynamic-content__text strong {
    color: var(--color-text);
}

.dynamic-content__text p {
    color: var(--color-text-light);
}

.dynamic-content__section--highlight {
    background: var(--color-bg-alt);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    border-left: 5px solid var(--color-primary);
}

.dynamic-content__image {
    margin: var(--space-8) 0;
}

.dynamic-content__image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* SSS (Akordiyon) */
.accordion__item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-3);
    overflow: hidden;
    transition: all var(--transition);
}

.accordion__item:hover {
    border-color: var(--color-primary);
}

.accordion__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: var(--space-4) var(--space-5);
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-weight: 700;
    font-family: var(--font-sans);
    color: var(--color-text);
    text-align: left;
    background: none;
    cursor: pointer;
}

.accordion__icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    position: relative;
    transition: transform var(--transition);
}

.accordion__icon::before,
.accordion__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 3px;
    background: var(--color-primary);
    transform: translate(-50%, -50%);
    transition: transform var(--transition);
}

.accordion__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__header[aria-expanded="true"] .accordion__icon {
    transform: rotate(180deg);
}

.accordion__header[aria-expanded="true"] .accordion__icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
}

.accordion__content p {
    padding: 0 var(--space-5) var(--space-5) var(--space-5);
    font-size: 0.9375rem;
}

/* ============================================
   DİNAMİK SAYFA: STICKY SIDEBAR
   ============================================ */
.sidebar__sticky {
    position: sticky;
    top: 7rem;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

@media (max-width: 1024px) {
    .sidebar__sticky {
        position: static;
    }
}

.sidebar-card {
    background: var(--color-dark-bg-alt);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow-lg);
    color: var(--color-text-white);
}

.sidebar-card__title {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    text-align: center;
    color: var(--color-text-white);
}

.sidebar-card__desc {
    font-size: 0.9375rem;
    text-align: center;
    color: var(--color-text-white);
    opacity: 0.8;
}

.sidebar-card .btn {
    margin-top: var(--space-3);
}

.sidebar-card .btn--primary {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-text);
}

.sidebar-card .btn--primary:hover {
    background-color: var(--color-secondary-dark);
    border-color: var(--color-secondary-dark);
}

.sidebar-nav {
    background: var(--color-bg-alt);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
}

.sidebar-nav__title {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-4);
}

.sidebar-nav__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.sidebar-nav__link {
    display: block;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--color-text);
    word-wrap: break-word;
}

.sidebar-nav__link:hover {
    background: var(--color-primary);
    color: var(--color-text-white);
}

/* ============================================
   FOOTER (KOYU TASARIM)
   ============================================ */
.footer {
    background: var(--color-dark-bg);
    color: var(--color-text-white);
    padding-top: var(--space-16);
    width: 100%;
    overflow: hidden;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

@media (min-width: 769px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }
    
    .footer__col--about, 
    .footer__col--contact {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1025px) {
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: var(--space-12);
    }
    
    .footer__col--about, 
    .footer__col--contact {
        grid-column: auto;
    }
}

.footer__about-text {
    color: var(--color-text-white);
    opacity: 0.7;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-top: var(--space-4);
}

.footer__title {
    font-size: 1.125rem;
    font-weight: 700;
    font-family: var(--font-sans);
    color: var(--color-text-white);
    margin-bottom: var(--space-6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer__link {
    color: var(--color-text-white);
    opacity: 0.7;
    font-size: 0.9375rem;
    word-wrap: break-word;
}

.footer__link:hover {
    opacity: 1;
    color: var(--color-secondary);
}

.footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.footer__contact-item {
    font-size: 0.9375rem;
    color: var(--color-text-white);
    opacity: 0.9;
    word-wrap: break-word;
}

.footer__contact-item span {
    display: block;
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 0.8125rem;
    opacity: 1;
}

.footer__contact-item a {
    color: var(--color-text-white);
    opacity: 0.9;
}

.footer__contact-item a:hover {
    opacity: 1;
    color: var(--color-secondary);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
    padding: var(--space-6) 0;
    border-top: 1px solid var(--color-dark-border);
}

.footer__copyright {
    font-size: 0.875rem;
    color: var(--color-text-white);
    opacity: 0.6;
    margin: 0;
}

.footer__credit {
    font-size: 0.875rem;
    color: var(--color-text-white);
}

.footer__credit a {
    color: var(--color-text-white);
    opacity: 0.7;
    font-weight: 700;
}

.footer__credit a:hover {
    color: var(--color-secondary);
    opacity: 1;
}

/* ============================================
   YÜZEN ACİL BUTONLAR
   ============================================ */
.float-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 998;
    color: var(--color-text-white);
    transition: all var(--transition);
    text-decoration: none;
}

/* WhatsApp */
.float-btn--whatsapp {
    right: 1rem;
    bottom: 1rem;
    background: var(--color-whatsapp);
}

@media (min-width: 769px) {
    .float-btn--whatsapp {
        right: var(--space-5);
        bottom: var(--space-5);
    }
}

.float-btn--whatsapp:hover {
    transform: scale(1.1);
    background: var(--color-whatsapp-dark);
    color: var(--color-text-white);
}

.float-btn--whatsapp::before {
    content: '';
    display: block;
    width: 28px;
    height: 28px;
    background-color: currentColor;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.890-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'%3E%3C/path%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.890-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'%3E%3C/path%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
}

/* Telefon */
.float-btn--phone {
    left: 1rem;
    bottom: 1rem;
    background: var(--color-danger);
    width: 60px;
    padding: 0;
}

@media (min-width: 769px) {
    .float-btn--phone {
        left: var(--space-5);
        bottom: var(--space-5);
        width: auto;
        padding: 0 var(--space-6);
    }
}

.float-btn--phone:hover {
    background: #a1031f;
    color: var(--color-text-white);
}

.float-btn--phone::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    margin-right: 0;
    background-color: currentColor;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
}

@media (min-width: 769px) {
    .float-btn--phone::before {
        margin-right: var(--space-2);
    }
}

.float-btn__text {
    font-size: 1.125rem;
    font-weight: 700;
    display: none;
}

@media (min-width: 769px) {
    .float-btn__text {
        display: block;
    }
}

.float-btn__pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: var(--radius-full);
    background-color: var(--color-danger);
    z-index: -1;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { 
        transform: translate(-50%, -50%) scale(0.9); 
        opacity: 0.7; 
    }
    70% { 
        transform: translate(-50%, -50%) scale(1.3); 
        opacity: 0; 
    }
    100% { 
        transform: translate(-50%, -50%) scale(0.9); 
        opacity: 0; 
    }
}

/* ============================================
   GİRİŞ ANİMASYONLARI
   ============================================ */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--transition), transform 0.6s var(--transition);
}

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

/* ============================================
   RESPONSIVE TASARIM
   ============================================ */

/* Tablet (1024px) */
@media (max-width: 1024px) {
    .header__mobile-toggle { 
        display: flex; 
    }
    
    /* Mobil Menü Stili */
    .nav {
        position: fixed;
        top: 5.5rem;
        left: 0;
        width: 100%;
        height: calc(100vh - 5.5rem);
        background: var(--color-bg);
        flex-direction: column;
        padding: var(--space-8);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all var(--transition);
    }
    
    body.menu-open .nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav__list {
        flex-direction: column;
        gap: var(--space-2);
    }
    
    .nav__link {
        display: block;
        padding: var(--space-3) var(--space-4);
        font-size: 1.25rem;
        border-radius: var(--radius-md);
    }
    
    .nav__link:hover {
        background: var(--color-bg-alt);
    }
    
    .nav__link::after { 
        display: none; 
    }
}

/* Mobil (768px) */
@media (max-width: 768px) {
    .header__container { 
        height: 4.5rem; 
    }
    
    .nav { 
        top: 4.5rem; 
        height: calc(100vh - 4.5rem); 
    }
    
    .header__logo-img { 
        height: 2.5rem; 
    }
    
    .header__logo-tagline { 
        display: none; 
    }
    
    .header__actions .btn--header {
        font-size: 0;
        padding: var(--space-3);
        width: 44px;
        height: 44px;
    }
    
    .btn--header span { 
        display: none; 
    }
    
    /* İkonu göstermek için */
    .btn--header::before {
        content: '';
        display: block;
        width: 20px;
        height: 20px;
        background-color: currentColor;
        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
        mask-repeat: no-repeat;
        mask-size: contain;
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: contain;
    }
    
    .hero__container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero__content { 
        order: 2; 
    }
    
    .hero-slider-container {
        order: 1; 
        padding-bottom: 66.666%; /* 3:2 oranı (1536x1024) */
        height: 0;
        width: 100%;
        display: block;
    }
    
    .hero-slide-img {
        object-fit: cover;
        object-position: center center;
    }
    
    .slider-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .slider-indicators {
        bottom: 10px;
    }
    
    .hero__subtitle { 
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero__cta-list { 
        justify-content: center; 
    }
    
    .stats-bar__container { 
        grid-template-columns: 1fr 1fr; 
        gap: var(--space-6); 
    }
    
    .why-us__content { 
        text-align: center; 
    }
    
    .why-us__features { 
        text-align: left; 
    }
    
    .section-header__title--left { 
        text-align: center; 
    }
    
    .area-tabs__nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: var(--space-2);
        scrollbar-width: thin;
        scrollbar-color: var(--color-border) transparent;
    }
    
    .area-tabs__nav::-webkit-scrollbar {
        height: 4px;
    }
    
    .area-tabs__nav::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .area-tabs__nav::-webkit-scrollbar-thumb {
        background: var(--color-border);
        border-radius: 2px;
    }
    
    .area-tabs__button {
        flex-shrink: 0;
        padding: var(--space-3) var(--space-4);
    }
    
    .area-tabs__neighborhood-list {
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 160px), 1fr));
        gap: var(--space-2);
    }
    
    .area-tabs__neighborhood-link {
        padding: var(--space-3) var(--space-4);
        font-size: 0.875rem;
    }
    
    .cta__container { 
        flex-direction: column; 
        text-align: center; 
    }
    
    .footer__bottom { 
        flex-direction: column; 
        text-align: center;
    }
    
    .footer__credit { 
        margin-top: var(--space-2); 
    }
}

/* Mobilde WhatsApp butonunun konumu */
@media (max-width: 768px) {
    .float-btn--whatsapp {
        bottom: calc(5.5rem + 1rem);
    }
}