/* ============================================
   Chef Koltuk Yıkama - Ana Stil Dosyası
   Modern, güven veren mavi-beyaz tasarım
   ============================================ */

/* ---- CSS DEĞİŞKENLERİ ---- */
:root {
    --primary: #1a3a5c;
    --primary-light: #3b82f6;
    --primary-lighter: #60a5fa;
    --primary-gradient: linear-gradient(135deg, #1a3a5c 0%, #2563eb 50%, #3b82f6 100%);
    --primary-gradient-hover: linear-gradient(135deg, #15304d 0%, #1d4ed8 50%, #2563eb 100%);
    --accent: #06b6d4;
    --accent-light: #22d3ee;
    --success: #10b981;
    --success-dark: #059669;
    --warning: #f59e0b;
    --danger: #ef4444;
    --bg: #f0f7ff;
    --bg-alt: #e8f0fe;
    --bg-card: #ffffff;
    --white: #ffffff;
    --text-dark: #1e293b;
    --text: #334155;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 40px -8px rgba(0,0,0,0.12);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.2);
    --shadow-blue: 0 10px 30px -5px rgba(59,130,246,0.3);
    --radius: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --container: 1200px;
    --navbar-height: 80px;
}

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

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

body {
    font-family: var(--font);
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

/* ---- LAYOUT ---- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(6,182,212,0.08));
    border: 1px solid rgba(59,130,246,0.15);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.section-badge i {
    font-size: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

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

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

/* ---- NAVBAR ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    padding: 10px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.01em;
}

.navbar.scrolled .nav-logo {
    color: var(--primary);
}

.nav-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--primary-gradient);
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    color: var(--white);
}

.navbar.scrolled .nav-logo-icon {
    background: var(--primary-gradient);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.12);
}

.navbar.scrolled .nav-link {
    color: var(--text);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--primary-light);
    background: rgba(59,130,246,0.08);
}

.nav-cta {
    margin-left: 8px;
    padding: 10px 24px;
    background: var(--white);
    color: var(--primary) !important;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.navbar.scrolled .nav-cta {
    background: var(--primary-gradient);
    color: var(--white) !important;
    box-shadow: var(--shadow-blue);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--text-dark);
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* ---- NAVBAR DROPDOWN (Bölgeler) ---- */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-dropdown-arrow {
    font-size: 0.6rem;
    transition: var(--transition);
}

.nav-dropdown:hover .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 240px;
    max-height: 420px;
    overflow-y: auto;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 1001;
    padding: 8px;
}

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

.nav-dropdown-header {
    padding: 10px 14px 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-dropdown-header i {
    color: var(--primary-light);
    font-size: 0.8rem;
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text) !important;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    text-decoration: none;
}

.nav-dropdown-item:hover {
    background: rgba(59,130,246,0.06);
    color: var(--primary-light) !important;
    transform: translateX(2px);
}

.nav-dropdown-item i {
    color: var(--text-lighter);
    font-size: 0.7rem;
    transition: var(--transition-fast);
}

.nav-dropdown-item:hover i {
    color: var(--primary-light);
}

/* Scrollbar styling for dropdown */
.nav-dropdown-menu::-webkit-scrollbar {
    width: 4px;
}

.nav-dropdown-menu::-webkit-scrollbar-track {
    background: transparent;
}

.nav-dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

/* ---- HERO ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(15,23,42,0.85) 0%, rgba(30,58,138,0.8) 100%), url('../images/hero_bg.png') center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    padding-top: var(--navbar-height);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(59,130,246,0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6,182,212,0.2) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(37,99,235,0.2) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 10;
}

/* Floating shapes */
.hero-shapes {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
    background: var(--white);
}

.hero-shape:nth-child(1) {
    width: 400px; height: 400px;
    top: -100px; right: -100px;
    animation: float 20s ease-in-out infinite;
}

.hero-shape:nth-child(2) {
    width: 250px; height: 250px;
    bottom: 10%; left: -50px;
    animation: float 15s ease-in-out infinite reverse;
}

.hero-shape:nth-child(3) {
    width: 150px; height: 150px;
    top: 40%; right: 20%;
    animation: float 18s ease-in-out infinite 2s;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    color: rgba(255,255,255,0.95);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 28px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge i {
    color: var(--accent-light);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero h1 .highlight {
    position: relative;
    display: inline-block;
    color: var(--accent-light);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 550px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

.trust-item i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    font-size: 0.85rem;
    color: var(--accent-light);
}

/* ---- BUTONLAR ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.4;
    white-space: nowrap;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.35);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn-blue:hover {
    background: var(--primary-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px -5px rgba(59,130,246,0.4);
    color: var(--white);
}

.btn-whatsapp {
    background: var(--success);
    color: var(--white);
    box-shadow: 0 8px 25px -5px rgba(16,185,129,0.3);
}

.btn-whatsapp:hover {
    background: var(--success-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -5px rgba(16,185,129,0.4);
    color: var(--white);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 38px;
    font-size: 1.05rem;
}

.btn-loader {
    display: none;
    align-items: center;
    gap: 8px;
}

.btn-loader .spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* ---- HİZMETLERİMİZ ---- */
.services {
    background: var(--bg);
}

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

.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(6,182,212,0.08));
    border-radius: var(--radius-md);
    font-size: 1.75rem;
    color: var(--primary-light);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-gradient);
    color: var(--white);
    transform: scale(1.05);
}

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

.service-card p {
    font-size: 0.925rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ---- HAKKIMIZDA ---- */
.about {
    background: linear-gradient(rgba(15,23,42,0.88), rgba(15,23,42,0.88)), url('../images/about_bg.png') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(59,130,246,0.04) 0%, transparent 60%);
    border-radius: 50%;
}

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

.about-content {
    position: relative;
    z-index: 1;
}

.about-content h2 {
    color: var(--white);
}

.about h2.section-title {
    color: var(--white);
}

.about h2.section-title span.highlight {
    color: var(--accent-light);
}

.about .section-desc,
.about .about-content p {
    color: #ffffff !important;
}

.about .section-badge {
    background: rgba(255,255,255,0.1);
    color: var(--accent-light);
}

.about .about-feature {
    background: rgba(255,255,255,0.1);
    color: var(--white) !important;
    border: 1px solid rgba(255,255,255,0.05);
}

.about .about-feature i {
    color: var(--success) !important;
}

.about .stat-card {
    background: rgba(255,255,255,0.1) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1) !important;
    color: var(--white) !important;
}

.about .stat-card .counter-number {
    color: var(--white) !important;
}

.about .stat-card .counter-label {
    color: rgba(255,255,255,0.8) !important;
}

.stat-card .counter-number, .stat-card .stat-suffix {
    color: var(--white);
}

.stat-label {
    color: rgba(255,255,255,0.7);
}

.about-content h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.about-content h2 span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    font-size: 0.925rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

.about-feature:hover {
    background: rgba(59,130,246,0.06);
}

.about-feature i {
    color: var(--primary-light);
    font-size: 1rem;
    flex-shrink: 0;
}

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

.stat-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.stat-card:hover {
    border-color: rgba(59,130,246,0.15);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.stat-card .counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-card .stat-suffix {
    font-size: 2rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 6px;
    font-weight: 500;
}

/* ---- MÜŞTERİ YORUMLARI ---- */
.testimonials {
    background: var(--bg);
    position: relative;
}

.testimonials-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.testimonial-card {
    position: absolute;
    top: 0; left: 0; right: 0;
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    border: 1px solid var(--border-light);
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--warning);
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-text::before {
    content: '\201C';
    font-size: 3rem;
    color: var(--primary-lighter);
    line-height: 0;
    vertical-align: -0.5em;
    margin-right: 4px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

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

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

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.slider-prev,
.slider-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
    font-size: 1rem;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: var(--white);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dot.active {
    background: var(--primary-light);
    transform: scale(1.2);
}

/* ---- SSS (FAQ) ---- */
.faq {
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}

.faq-item:hover {
    border-color: rgba(59,130,246,0.1);
}

.faq-item.active {
    background: var(--white);
    box-shadow: var(--shadow);
    border-color: rgba(59,130,246,0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
}

.faq-question .faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(59,130,246,0.08);
    border-radius: 50%;
    color: var(--primary-light);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: var(--transition);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 28px 22px;
    font-size: 0.975rem;
    color: var(--text);
    line-height: 1.75;
}

/* ---- İLETİŞİM / TEKLİF FORMU ---- */
.contact {
    background: var(--bg);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    padding: 40px;
    background: var(--primary-gradient);
    border-radius: var(--radius);
    color: var(--white);
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 12px;
}

.contact-info > p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    font-size: 0.975rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
}

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

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.contact-form-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.contact-form-card > p {
    color: var(--text-light);
    margin-bottom: 28px;
    font-size: 0.95rem;
}

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

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

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

.form-group label .required {
    color: var(--danger);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary-light);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.form-control::placeholder {
    color: var(--text-lighter);
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8.825L.35 3.175l.7-.7L6 7.425l4.95-4.95.7.7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

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

.form-message {
    display: none;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.925rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.form-message.success {
    background: rgba(16,185,129,0.08);
    color: var(--success-dark);
    border: 1px solid rgba(16,185,129,0.2);
}

.form-message.error {
    background: rgba(239,68,68,0.08);
    color: var(--danger);
    border: 1px solid rgba(239,68,68,0.2);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 32px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand h3 i {
    color: var(--accent-light);
}

.footer-brand p {
    font-size: 0.925rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

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

.footer-social a:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

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

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

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

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

.footer-links a i {
    font-size: 0.7rem;
    color: var(--primary-lighter);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.925rem;
}

.footer-contact-item i {
    color: var(--primary-lighter);
    margin-top: 3px;
    flex-shrink: 0;
}

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

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

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* ---- WHATSAPP SABİT BUTON ---- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--success);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 6px 20px rgba(16,185,129,0.4);
    transition: var(--transition);
    text-decoration: none;
    animation: pulse-green 2s ease-in-out infinite;
}

.whatsapp-float-btn:hover {
    background: var(--success-dark);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(16,185,129,0.5);
    color: var(--white);
}

.whatsapp-tooltip {
    background: var(--white);
    color: var(--text-dark);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ---- PHONE FLOAT ---- */
.phone-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-direction: row-reverse;
}

.phone-float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 6px 20px rgba(37,99,235,0.4);
    transition: var(--transition);
    text-decoration: none;
    animation: pulse-blue 2s ease-in-out infinite;
}

.phone-float-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37,99,235,0.5);
    color: var(--white);
}

.phone-tooltip {
    background: var(--white);
    color: var(--text-dark);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
    pointer-events: none;
}

.phone-float:hover .phone-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ---- BACK TO TOP ---- */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 34px;
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    color: var(--text);
    font-size: 1rem;
    box-shadow: var(--shadow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-light);
    color: var(--white);
    border-color: var(--primary-light);
}

/* ---- BLOG LİSTESİ ---- */
.blog-hero {
    background: var(--primary-gradient);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
}

.blog-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--bg);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.blog-hero h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 12px;
}

.blog-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 60px 0 80px;
}

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

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

.blog-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: var(--bg-alt);
}

.blog-card-content {
    padding: 24px;
}

.blog-card-date {
    font-size: 0.825rem;
    color: var(--text-lighter);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-content h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-content h3 a {
    color: var(--text-dark);
    transition: var(--transition);
}

.blog-card-content h3 a:hover {
    color: var(--primary-light);
}

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

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

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

/* Blog Tekil Sayfa */
.single-post {
    padding: 60px 0 80px;
}

.single-post-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 48px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.post-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px;
    border: 1px solid var(--border-light);
}

.post-content h1 {
    font-size: 2rem;
    margin-bottom: 16px;
    line-height: 1.3;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.post-body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text);
}

.post-body h2 { font-size: 1.5rem; margin: 32px 0 16px; }
.post-body h3 { font-size: 1.25rem; margin: 24px 0 12px; }
.post-body p { margin-bottom: 16px; }
.post-body ul, .post-body ol { margin: 16px 0; padding-left: 24px; }
.post-body li { margin-bottom: 8px; list-style: disc; }
.post-body img { border-radius: var(--radius-sm); margin: 24px 0; }

.post-featured-image {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 32px;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 24px;
    border: 1px solid var(--border-light);
}

.sidebar-widget h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
}

.sidebar-post {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.sidebar-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-post-img {
    width: 72px;
    height: 56px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    background: var(--bg-alt);
}

.sidebar-post h4 {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
}

.sidebar-post h4 a {
    color: var(--text-dark);
}

.sidebar-post h4 a:hover {
    color: var(--primary-light);
}

.sidebar-post .date {
    font-size: 0.8rem;
    color: var(--text-lighter);
}

/* Sayfalama */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px 0 60px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.pagination a {
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--border);
}

.pagination a:hover {
    background: var(--primary-light);
    color: var(--white);
    border-color: var(--primary-light);
}

.pagination span.current {
    background: var(--primary-gradient);
    color: var(--white);
    border: 1px solid transparent;
}

/* ---- ANİMASYONLAR ---- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(2deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
    70% { box-shadow: 0 0 0 20px rgba(16,185,129,0); }
    100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

@keyframes pulse-blue {
    0% { box-shadow: 0 0 0 0 rgba(37,99,235,0.4); }
    70% { box-shadow: 0 0 0 20px rgba(37,99,235,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,99,235,0); }
}

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

/* Scroll animasyonu sınıfları */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ---- RESPONSİVE ---- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }

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

    .single-post-container {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    :root {
        --navbar-height: 70px;
    }

    .section {
        padding: 50px 0;
    }

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

    .container {
        padding: 0 16px;
    }

    /* Navbar Mobile */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 32px;
        gap: 4px;
        box-shadow: var(--shadow-xl);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        color: var(--text) !important;
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-light) !important;
        background: rgba(59,130,246,0.06) !important;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 12px;
        width: 100%;
        text-align: center;
        background: var(--primary-gradient) !important;
        color: var(--white) !important;
    }

    /* Dropdown Mobile */
    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        width: 100%;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        box-shadow: none;
        border: none;
        background: rgba(59,130,246,0.03);
        border-radius: var(--radius-sm);
        padding: 0;
        margin-top: 4px;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    }

    .nav-dropdown.active .nav-dropdown-menu {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        padding: 8px;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: none;
    }

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

    /* Hero Mobile */
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-trust {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* About Mobile */
    .about-features {
        grid-template-columns: 1fr;
    }

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

    .stat-card {
        padding: 20px 16px;
    }

    .stat-card .counter-number {
        font-size: 2rem;
    }

    /* Contact Mobile */
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 28px 20px;
    }

    .contact-info {
        padding: 28px 20px;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    /* Blog Mobile */
    .blog-grid {
        grid-template-columns: 1fr;
    }

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

    .post-content {
        padding: 28px 20px;
    }

    .post-content h1 {
        font-size: 1.6rem;
    }

    /* WhatsApp */
    .whatsapp-tooltip {
        display: none;
    }

    .whatsapp-float-btn, .phone-float-btn {
        width: 54px;
        height: 54px;
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.85rem;
    }

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

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

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

/* ---- HERO SLIDER ---- */
.hero-slider {
    position: relative;
    min-height: 200px;
}

.hero-slide {
    opacity: 0;
    transform: translateY(20px);
    position: absolute;
    top: 0; left: 0; right: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    pointer-events: auto;
}

.hero-slider-dots {
    display: flex;
    gap: 10px;
    margin-bottom: 32px;
}

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

.hero-dot.active {
    background: var(--white);
    transform: scale(1.2);
    border-color: var(--accent-light);
}

.hero-dot:hover {
    background: rgba(255,255,255,0.6);
}

/* ---- LEGAL PAGES ---- */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.85;
}

.legal-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 36px 0 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--bg-alt);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    color: var(--text);
    margin-bottom: 14px;
}

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

.legal-content ul li {
    position: relative;
    padding: 8px 0 8px 28px;
    color: var(--text);
    border-bottom: 1px solid var(--border-light);
}

.legal-content ul li:last-child {
    border-bottom: none;
}

.legal-content ul li::before {
    content: '›';
    position: absolute;
    left: 8px;
    color: var(--primary-light);
    font-weight: 700;
    font-size: 1.2rem;
}

.legal-update {
    display: inline-block;
    padding: 6px 16px;
    background: var(--bg);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 28px;
    font-weight: 500;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.legal-table th,
.legal-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 0.925rem;
}

.legal-table th {
    background: var(--bg);
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.legal-table td strong {
    color: var(--text-dark);
}

/* ---- FOOTER LEGAL BAR ---- */
.footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 0;
}

.footer-legal a {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--accent-light);
}

.footer-legal-sep {
    color: rgba(255,255,255,0.25);
    font-size: 0.7rem;
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: 180px;
    }

    .legal-content {
        padding: 0 8px;
    }

    .legal-table {
        font-size: 0.85rem;
    }

    .legal-table th,
    .legal-table td {
        padding: 10px 12px;
    }

    .footer-legal {
        gap: 6px;
    }

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

/* ---- BÖLGE HİZMET DETAY ---- */
.bolge-hizmet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.bolge-hizmet-grid.reverse {
    direction: rtl;
}

.bolge-hizmet-grid.reverse > * {
    direction: ltr;
}

.bolge-hizmet-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.bolge-hizmet-content p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.025rem;
}

.bolge-hizmet-ozellikler {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.bolge-hizmet-ozellik {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    font-size: 0.925rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

.bolge-hizmet-ozellik:hover {
    background: rgba(59,130,246,0.06);
}

.bolge-hizmet-ozellik i {
    color: var(--success);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.bolge-hizmet-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.bolge-hizmet-icon-big {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: 50%;
    font-size: 4rem;
    color: var(--white);
    box-shadow: var(--shadow-blue);
    position: relative;
}

.bolge-hizmet-icon-big::after {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 2px dashed rgba(59,130,246,0.2);
    animation: spin 30s linear infinite;
}

.bolge-hizmet-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.bolge-mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
}

.bolge-mini-badge i {
    color: var(--primary-light);
    font-size: 0.7rem;
}

@media (max-width: 768px) {
    .bolge-hizmet-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .bolge-hizmet-grid.reverse {
        direction: ltr;
    }

    .bolge-hizmet-content h2 {
        font-size: 1.6rem;
    }

    .bolge-hizmet-icon-big {
        width: 120px;
        height: 120px;
        font-size: 2.5rem;
    }

    .bolge-hizmet-visual {
        order: -1;
    }
}

/* ================================================
   BÖLGE HERO (YENİ - Yan Yana Hero + Form)
   ================================================ */
.bolge-hero {
    min-height: auto !important;
    padding: 140px 0 80px !important;
    background: linear-gradient(135deg, rgba(15,23,42,0.85) 0%, rgba(30,58,138,0.8) 100%), url('../images/hero_bg.png') center/cover no-repeat;
    background-attachment: fixed;
}

.bolge-hero-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: start;
    position: relative;
    z-index: 10;
}

.form-badge-top {
    display: inline-flex;
    align-items: center;
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    gap: 6px;
}

.pulse-icon {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.form-trust-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
    margin-bottom: 5px;
}

.trust-pill {
    background: rgba(34, 197, 94, 0.1);
    color: #166534;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.bolge-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.025em;
}

.bolge-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    margin-bottom: 28px;
}

.bolge-hero-form .contact-form-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}

.bolge-form-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.bolge-form-header i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--primary-gradient);
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    margin-bottom: 10px;
}

.bolge-form-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

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

/* ================================================
   İSTATİSTİK BANTI
   ================================================ */
.bolge-stats-bar {
    background: var(--primary);
    padding: 20px 0;
}

.bolge-stats-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 16px;
}

.bolge-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--white);
}

.bolge-stat-item strong {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-light);
}

.bolge-stat-item span {
    font-size: 0.8rem;
    opacity: 0.85;
    font-weight: 500;
}

/* ================================================
   HİZMET NAVİGASYONU
   ================================================ */
.bolge-hizmet-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.bolge-hizmet-nav-inner {
    display: flex;
    overflow-x: auto;
    gap: 4px;
    padding: 8px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.bolge-hizmet-nav-inner::-webkit-scrollbar {
    display: none;
}

.bolge-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    text-decoration: none;
    transition: var(--transition-fast);
    border: 1px solid transparent;
    flex-shrink: 0;
}

.bolge-nav-btn:hover {
    background: rgba(59,130,246,0.08);
    color: var(--primary-light);
    border-color: rgba(59,130,246,0.15);
}

.bolge-nav-btn i {
    font-size: 0.8rem;
}

/* ================================================
   HİZMET DETAY BÖLÜM (YENİ STİL)
   ================================================ */
.bolge-hizmet-card-visual {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    color: white;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    position: relative;
    margin: 0 auto;
}

.bolge-hizmet-card-visual::after {
    content: '';
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    border: 2px dashed rgba(255,255,255,0.3);
    animation: spin 40s linear infinite;
}

.bolge-fiyat-kutu {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 18px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary-light);
    font-size: 0.875rem;
    color: var(--text);
    line-height: 1.5;
    margin-top: 8px;
    max-width: 320px;
}

.bolge-fiyat-kutu i {
    color: var(--primary-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.bolge-hizmet-liste {
    list-style: none;
    margin: 16px 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.bolge-hizmet-liste li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.bolge-hizmet-liste li:hover {
    background: rgba(59,130,246,0.06);
}

.bolge-hizmet-liste li i {
    color: var(--success);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.bolge-hizmet-aksiyonlar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

/* ================================================
   MÜŞTERİ YORUMLARI (BÖLGE)
   ================================================ */
.bolge-yorumlar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bolge-yorum-kart {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.bolge-yorum-kart:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.bolge-yorum-kart .testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.bolge-yorum-kart .testimonial-stars i {
    color: var(--warning);
    font-size: 0.9rem;
}

.bolge-yorum-kart p {
    font-size: 0.925rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

/* ================================================
   DİĞER BÖLGELER GRİD
   ================================================ */
.bolge-diger-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.bolge-diger-kart {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.bolge-diger-kart:hover {
    background: rgba(59,130,246,0.06);
    border-color: rgba(59,130,246,0.2);
    color: var(--primary-light);
    transform: translateX(3px);
}

.bolge-diger-kart i:first-child {
    color: var(--primary-light);
    font-size: 0.8rem;
}

.bolge-arrow {
    margin-left: auto;
    font-size: 0.65rem;
    opacity: 0.4;
}

/* ================================================
   MOBİL UYUMLULUK – TAM KAPSAMLI
   ================================================ */
@media (max-width: 900px) {
    .bolge-hero-inner {
        grid-template-columns: 1fr;
    }

    .bolge-hero-form {
        order: 2;
    }

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

    .bolge-yorumlar-grid {
        grid-template-columns: 1fr;
    }

    .bolge-hizmet-liste {
        grid-template-columns: 1fr;
    }

    .bolge-hizmet-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .bolge-hizmet-grid.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    /* Genel */
    .section {
        padding: 40px 0 !important;
    }

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

    .section-header {
        margin-bottom: 36px;
    }

    /* Bölge hero */
    .bolge-hero {
        padding: 90px 0 50px !important;
    }

    .bolge-hero-content h1 {
        font-size: 1.75rem;
    }

    .bolge-hero-btns {
        flex-direction: column;
    }

    .bolge-hero-btns .btn {
        width: 100%;
        justify-content: center;
    }

    /* Stats bar */
    .bolge-stats-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        text-align: center;
    }

    .bolge-stat-item strong {
        font-size: 1.25rem;
    }

    /* Hizmet nav */
    .bolge-hizmet-nav {
        top: 56px;
    }

    /* Hizmet detay */
    .bolge-hizmet-card-visual {
        width: 140px;
        height: 140px;
        font-size: 3rem;
    }

    .bolge-hizmet-aksiyonlar {
        flex-direction: column;
    }

    .bolge-hizmet-aksiyonlar .btn {
        width: 100%;
        justify-content: center;
    }

    /* İletişim bölümü */
    .contact-grid {
        grid-template-columns: 1fr !important;
    }

    /* Diğer bölgeler */
    .bolge-diger-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Hero istatistikler */
    .hero-trust {
        flex-wrap: wrap;
        gap: 10px;
    }

    /* About grid mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    /* Form row */
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    /* Hizmetler grid */
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* Küçük ekranlar */
    .container {
        padding: 0 16px;
    }

    .bolge-hero-content h1 {
        font-size: 1.55rem;
    }

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

    .bolge-diger-grid {
        grid-template-columns: 1fr;
    }

    .bolge-form-header h3 {
        font-size: 1rem;
    }

    .bolge-hero-form .contact-form-card {
        padding: 20px 16px;
    }

    .nav-logo {
        font-size: 1.1rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

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

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

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