/* ============================================
   DURU TEMİZLİK — Profesyonel Temizlik Teması
   ============================================ */

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

:root {
    --blue:        #1A56A0;
    --blue-dark:   #134080;
    --blue-mid:    #2268B5;
    --blue-light:  #EBF3FF;
    --blue-xlight: #F4F8FF;
    --teal:        #17A589;
    --teal-dark:   #148A73;
    --teal-light:  #E8F8F5;
    --orange:      #E8772E;
    --text:        #1A2333;
    --text-mid:    #4B5563;
    --text-soft:   #8A96A6;
    --border:      #E5EBF5;
    --bg:          #F8FAFD;
    --white:       #FFFFFF;
    --shadow-xs:   0 1px 3px rgba(26,86,160,0.08);
    --shadow-sm:   0 2px 8px rgba(26,86,160,0.10);
    --shadow:      0 4px 20px rgba(26,86,160,0.12);
    --shadow-md:   0 8px 36px rgba(26,86,160,0.15);
    --shadow-lg:   0 16px 56px rgba(26,86,160,0.18);
    --r:           8px;
    --r-md:        12px;
    --r-lg:        18px;
    --r-xl:        24px;
    --ease:        all 0.28s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }

/* ── Özel Scrollbar ───────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--blue), var(--teal)); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue-dark); }

/* ── Scroll Progress Bar ──────────────── */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--blue) 0%, var(--teal) 100%);
    z-index: 10001;
    transition: width 0.08s linear;
    border-radius: 0 2px 2px 0;
}
body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--ease); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: 'Inter', sans-serif; cursor: pointer; }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}
.sec { padding: 90px 0; }
.sec-sm { padding: 60px 0; }

/* ── Section Label ─────────────────────── */
.sec-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.sec-label i { font-size: 11px; }
.sec-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 14px;
}
.sec-title span { color: var(--blue); }
.sec-title em { font-style: normal; color: var(--teal); }
.sec-desc {
    font-size: 16px;
    color: var(--text-mid);
    max-width: 560px;
    line-height: 1.8;
}
.sh { margin-bottom: 52px; }
.sh-c { text-align: center; }
.sh-c .sec-desc { margin: 0 auto; }

/* ── Buttons ──────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    font-size: 14.5px;
    font-weight: 600;
    border: none;
    border-radius: var(--r);
    transition: var(--ease);
    white-space: nowrap;
    cursor: pointer;
}
.btn i { font-size: 13px; transition: var(--ease); }
.btn:hover i { transform: translateX(2px); }

.btn-blue {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(26,86,160,0.35);
}
.btn-blue:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(26,86,160,0.45);
    color: var(--white);
}
.btn-teal {
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(23,165,137,0.35);
}
.btn-teal:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(23,165,137,0.45);
    color: var(--white);
}
.btn-white {
    background: var(--white);
    color: var(--blue);
}
.btn-white:hover {
    background: var(--blue-light);
    transform: translateY(-1px);
    color: var(--blue);
}
.btn-ghost {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(4px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.7);
    color: var(--white);
}
.btn-outline {
    background: transparent;
    color: var(--blue);
    border: 1.5px solid var(--blue);
}
.btn-outline:hover {
    background: var(--blue);
    color: var(--white);
}
.btn-lg { padding: 15px 30px; font-size: 15.5px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ── Topbar ───────────────────────────── */
.topbar {
    background: var(--blue-dark);
    padding: 10px 0;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.topbar-left a {
    font-size: 12.5px;
    color: rgba(255,255,255,0.78);
    display: flex;
    align-items: center;
    gap: 6px;
}
.topbar-left a i { color: var(--teal); font-size: 11px; }
.topbar-left a:hover { color: white; }
.topbar-sep { width: 1px; height: 13px; background: rgba(255,255,255,0.18); }
.topbar-right {
    display: flex;
    align-items: center;
    gap: 6px;
}
.topbar-right a {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12.5px;
    color: rgba(255,255,255,0.7);
    transition: var(--ease);
}
.topbar-right a:hover { background: var(--teal); color: white; }

/* ── Header ───────────────────────────── */
.header {
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    border-bottom: 1px solid var(--border);
    transition: var(--ease);
}
/* Topbar (~40px) zaten akışta yer kaplıyor, sadece kalan fark + 16px nefes boşluğu */
.header-spacer {
    height: 48px;
}
.header.scrolled {
    box-shadow: 0 4px 24px rgba(26,86,160,0.14);
    border-bottom-color: transparent;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}
.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.logo-icon i { font-size: 19px; color: white; }
.logo-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 19px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
}
.logo-sub {
    font-size: 10.5px;
    color: var(--teal);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
}
.nav-link {
    padding: 8px 13px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-mid);
    border-radius: var(--r);
    position: relative;
    transition: var(--ease);
}
.nav-link:hover { color: var(--blue); background: var(--blue-xlight); }
.nav-link.active { color: var(--blue); font-weight: 600; }
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 13px; right: 13px;
    height: 2px;
    background: var(--teal);
    border-radius: 2px;
}
.nav-cta {
    background: var(--blue);
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    margin-left: 8px;
    box-shadow: 0 3px 10px rgba(26,86,160,0.3);
}
.nav-cta:hover {
    background: var(--teal) !important;
    box-shadow: 0 4px 14px rgba(23,165,137,0.35) !important;
}
.nav-cta::after { display: none !important; }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: var(--blue-light);
    border: none;
    padding: 10px;
    border-radius: var(--r);
    cursor: pointer;
}
.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
    transition: var(--ease);
}
.hamburger.open { background: var(--blue-light); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── WhatsApp Float ───────────────────── */
.wa-float.wa-hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
}
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    transition: var(--ease);
    animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.wa-float i { font-size: 28px; color: white; }
@keyframes waPulse {
    0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ── Mobil Menü Overlay ───────────────── */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9998;
}
.mobile-menu.mm-open { display: block; }

.mm-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 40, 0.65);
    backdrop-filter: blur(3px);
    animation: mmFadeIn 0.3s ease forwards;
}
@keyframes mmFadeIn { from { opacity: 0; } to { opacity: 1; } }

.mm-panel {
    position: absolute;
    top: 0; right: 0;
    width: min(320px, 88vw);
    height: 100%;
    background: #0D1A2D;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transform: translateX(100%);
    animation: mmSlideIn 0.32s cubic-bezier(0.32, 0.72, 0, 1) forwards;
    z-index: 1;
    box-shadow: -8px 0 40px rgba(0,0,0,0.4);
}
@keyframes mmSlideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }

.mobile-menu.mm-closing .mm-panel { animation: mmSlideOut 0.28s cubic-bezier(0.32, 0.72, 0, 1) forwards; }
.mobile-menu.mm-closing .mm-backdrop { animation: mmFadeOut 0.28s ease forwards; }
@keyframes mmSlideOut { from { transform: translateX(0); } to { transform: translateX(100%); } }
@keyframes mmFadeOut { from { opacity: 1; } to { opacity: 0; } }

/* Panel header */
.mm-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}
.mm-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.mm-logo-icon {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.mm-logo-icon i { font-size: 16px; color: white; }
.mm-logo-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 800; color: white; line-height: 1.1; }
.mm-logo-sub { font-size: 10px; color: var(--teal); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

.mm-close {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    cursor: pointer;
    transition: var(--ease);
    flex-shrink: 0;
}
.mm-close:hover { background: rgba(255,255,255,0.15); color: white; }

/* Nav links */
.mm-nav {
    padding: 12px 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}
.mm-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    color: rgba(255,255,255,0.72);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--ease);
    position: relative;
}
.mm-link:hover { background: rgba(255,255,255,0.07); color: white; }
.mm-link.mm-active {
    background: linear-gradient(135deg, rgba(26,86,160,0.5), rgba(23,165,137,0.25));
    color: white;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.1);
}
.mm-link-ico {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    transition: var(--ease);
}
.mm-link:hover .mm-link-ico,
.mm-link.mm-active .mm-link-ico { background: var(--blue); color: white; }
.mm-link.mm-active .mm-link-ico { background: linear-gradient(135deg, var(--blue), var(--teal)); }
.mm-link > span:not(.mm-link-ico) { flex: 1; }
.mm-arr { font-size: 10px; color: rgba(255,255,255,0.25); transition: var(--ease); }
.mm-link:hover .mm-arr { color: rgba(255,255,255,0.5); transform: translateX(2px); }
.mm-link.mm-active .mm-arr { color: var(--teal); }

/* Panel footer */
.mm-foot {
    padding: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}
.mm-call {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    border-radius: 14px;
    padding: 14px 16px;
    text-decoration: none;
    transition: var(--ease);
    border: 1px solid rgba(255,255,255,0.1);
}
.mm-call:hover { filter: brightness(1.1); }
.mm-call i { font-size: 20px; color: var(--teal); flex-shrink: 0; }
.mm-call span { font-size: 11px; color: rgba(255,255,255,0.55); display: block; }
.mm-call strong { font-size: 16px; font-weight: 800; color: white; font-family: 'Plus Jakarta Sans', sans-serif; }
.mm-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    border-radius: 14px;
    padding: 13px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: var(--ease);
}
.mm-wa:hover { background: #1ebe5d; color: white; }
.mm-wa i { font-size: 18px; }
.mm-hours { text-align: center; font-size: 11.5px; color: rgba(255,255,255,0.35); display: flex; align-items: center; justify-content: center; gap: 5px; }
.mm-hours i { color: var(--teal); font-size: 10px; }

/* ── Page Hero ────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #1E88C8 100%);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(23,165,137,0.12);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: rgba(255,255,255,0.65);
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: white; }
.breadcrumb .sep { font-size: 10px; color: rgba(255,255,255,0.3); }
.breadcrumb .cur { color: var(--white); font-weight: 500; }

/* ── HERO ─────────────────────────────── */
.hero {
    background: linear-gradient(150deg, var(--blue-dark) 0%, var(--blue) 55%, #1A7FC4 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0; right: 0;
    line-height: 0;
}
.hero-wave svg { display: block; width: 100%; }
.hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.hero-glow {
    position: absolute;
    top: -150px; right: -100px;
    width: 650px; height: 650px;
    background: radial-gradient(circle, rgba(23,165,137,0.2) 0%, transparent 65%);
    pointer-events: none;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 90px 0 130px;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(23,165,137,0.2);
    border: 1px solid rgba(23,165,137,0.4);
    color: #5EECD4;
    font-size: 12.5px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 50px;
    margin-bottom: 22px;
    letter-spacing: 0.4px;
}
.hero-tag i { font-size: 11px; }
.hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 54px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 20px;
}
.hero h1 .line2 { color: #7ECEF4; }
.hero-p {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 34px;
    max-width: 500px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 50px; }
.hero-badges {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50px;
    padding: 8px 14px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    backdrop-filter: blur(6px);
}
.hero-badge i { color: var(--teal); font-size: 12px; }

/* Hero sağ: stat kartları */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.hero-stat-card {
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--r-lg);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    backdrop-filter: blur(10px);
    transition: var(--ease);
}
.hero-stat-card:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(23,165,137,0.4);
    transform: translateX(4px);
}
.hsc-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hsc-icon i { font-size: 20px; color: white; }
.hsc-val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 2px;
}
.hsc-lbl { font-size: 12.5px; color: rgba(255,255,255,0.6); }

/* ── Stats Bar ────────────────────────── */
.stats-bar {
    background: var(--blue);
    padding: 0;
}
.stats-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: none;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 32px;
    border-right: 1px solid rgba(255,255,255,0.15);
    transition: var(--ease);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.07); }
.si-icon {
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.si-icon i { font-size: 18px; color: white; }
.si-val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 2px;
}
.si-lbl { font-size: 12px; color: rgba(255,255,255,0.65); }

/* ── Services Grid ────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.svc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    transition: var(--ease);
    position: relative;
    overflow: hidden;
}
.svc-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--ease);
}
.svc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon {
    width: 58px;
    height: 58px;
    background: var(--blue-light);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--ease);
}
.svc-icon i { font-size: 22px; color: var(--blue); transition: var(--ease); }
.svc-card:hover .svc-icon { background: linear-gradient(135deg, var(--blue), var(--teal)); }
.svc-card:hover .svc-icon i { color: white; }
.svc-card h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.svc-card p { font-size: 14px; color: var(--text-mid); line-height: 1.75; margin-bottom: 18px; }
.svc-link {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.svc-link i { font-size: 11px; transition: var(--ease); }
.svc-link:hover { color: var(--teal); }
.svc-link:hover i { transform: translateX(3px); }

/* ── Process / Nasıl Çalışıyoruz ─────── */
.process-bg { background: var(--bg); }
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(12.5% + 28px);
    right: calc(12.5% + 28px);
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--border) 0, var(--border) 8px, transparent 8px, transparent 16px);
    z-index: 0;
}
.step-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 22px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: var(--ease);
}
.step-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue); transform: translateY(-3px); }
.step-num {
    width: 52px;
    height: 52px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: white;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--blue);
    transition: var(--ease);
}
.step-card:hover .step-num { background: var(--teal); box-shadow: 0 0 0 2px var(--teal); }
.step-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.step-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.step-card p { font-size: 13.5px; color: var(--text-mid); line-height: 1.65; }

/* ── Why Us ───────────────────────────── */
.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.why-img {
    background: var(--blue-light);
    border-radius: var(--r-xl);
    aspect-ratio: 5/4;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}
.why-img-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blue-light), #daeeff);
}
.why-img i {
    font-size: 100px;
    color: var(--blue-mid);
    opacity: 0.2;
    position: relative;
    z-index: 1;
}
.why-img-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--r-xl);
    z-index: 1;
}
.why-float-1 {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow);
    z-index: 2;
}
.why-float-1 i { font-size: 22px; color: var(--teal); }
.wf-val { font-size: 20px; font-weight: 800; color: var(--text); font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1; margin-bottom: 1px; }
.wf-lbl { font-size: 11.5px; color: var(--text-soft); }
.why-float-2 {
    position: absolute;
    bottom: 20px; left: 20px;
    background: var(--blue);
    border-radius: var(--r-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow);
    z-index: 2;
}
.why-float-2 i { font-size: 20px; color: rgba(255,255,255,0.7); }
.wf2-text { font-size: 13px; font-weight: 600; color: white; }
.why-list { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    transition: var(--ease);
}
.why-item:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.wi-i {
    width: 40px;
    height: 40px;
    background: var(--teal-light);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.wi-i i { font-size: 15px; color: var(--teal); }
.why-item h4 { font-size: 14.5px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.why-item p { font-size: 13.5px; color: var(--text-mid); line-height: 1.65; }

/* ── Hizmet Bölgeleri ─────────────────── */
.areas-bg { background: var(--blue-dark); }
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.area-chip {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50px;
    padding: 9px 18px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: var(--ease);
    cursor: default;
}
.area-chip i { font-size: 11px; color: var(--teal); }
.area-chip:hover { background: var(--teal); border-color: var(--teal); color: white; }
.area-chip:hover i { color: white; }

/* ── Testimonials ─────────────────────── */
.testi-bg { background: var(--bg); }
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    transition: var(--ease);
    position: relative;
}
.testi-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue); transform: translateY(-3px); }
.testi-quote {
    width: 36px;
    height: 36px;
    background: var(--blue-light);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.testi-quote i { font-size: 14px; color: var(--blue); }
.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}
.testi-stars i { font-size: 13px; color: #F59E0B; }
.testi-card p {
    font-size: 14.5px;
    color: var(--text-mid);
    line-height: 1.78;
    margin-bottom: 20px;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.ta-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}
.ta-name { font-size: 14px; font-weight: 600; color: var(--text); display: block; }
.ta-loc { font-size: 12px; color: var(--text-soft); }

/* ── CTA Section ──────────────────────── */
.cta-sec {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--teal-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}
.cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.cta-text h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    line-height: 1.2;
}
.cta-text p { font-size: 16px; color: rgba(255,255,255,0.78); max-width: 520px; line-height: 1.75; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.cta-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--r-md);
    padding: 14px 20px;
    color: white;
    font-size: 22px;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    backdrop-filter: blur(8px);
    transition: var(--ease);
    white-space: nowrap;
}
.cta-phone:hover { background: rgba(255,255,255,0.2); color: white; }
.cta-phone i { font-size: 20px; color: var(--teal); }
.cta-phone span { font-size: 11px; font-weight: 400; display: block; color: rgba(255,255,255,0.6); margin-bottom: 1px; }

/* ── Footer ───────────────────────────── */
.footer { background: #0D1A2D; padding: 72px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.1fr 1.1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.52); line-height: 1.8; margin: 16px 0 22px; max-width: 270px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--r);
    display: flex; align-items: center; justify-content: center;
    font-size: 13.5px; color: rgba(255,255,255,0.6);
    transition: var(--ease);
}
.footer-social a:hover { background: var(--teal); border-color: var(--teal); color: white; }
.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
    font-size: 14px; color: rgba(255,255,255,0.6);
    display: flex; align-items: center; gap: 8px;
    transition: var(--ease);
}
.footer-col ul li a i { font-size: 10px; color: var(--teal); }
.footer-col ul li a:hover { color: white; padding-left: 3px; }
.ftr-contact { display: flex; flex-direction: column; gap: 14px; }
.ftr-contact-row { display: flex; align-items: flex-start; gap: 11px; }
.ftr-ci {
    width: 32px; height: 32px;
    background: rgba(23,165,137,0.15);
    border-radius: var(--r);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; color: var(--teal); flex-shrink: 0; margin-top: 1px;
}
.ftr-ct span { font-size: 11px; color: rgba(255,255,255,0.38); display: block; margin-bottom: 1px; text-transform: uppercase; letter-spacing: 0.6px; }
.ftr-ct strong { font-size: 13.5px; color: rgba(255,255,255,0.78); font-weight: 400; }
.ftr-ct a { color: rgba(255,255,255,0.78); }
.ftr-ct a:hover { color: white; }
.ftr-logo { display: flex; align-items: center; gap: 10px; }
.ftr-logo-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
}
.ftr-logo-icon i { font-size: 16px; color: white; }
.ftr-logo h3 { font-size: 18px; font-weight: 800; color: white; font-family: 'Plus Jakarta Sans', sans-serif; }
.ftr-logo span { font-size: 10.5px; color: rgba(255,255,255,0.4); display: block; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-bottom p a { color: var(--teal); }
.ftr-links { display: flex; gap: 20px; }
.ftr-links a { font-size: 13px; color: rgba(255,255,255,0.35); transition: var(--ease); }
.ftr-links a:hover { color: white; }

/* ── About Page ───────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
    background: var(--blue-light);
    border-radius: var(--r-xl);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}
.about-img-main::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, var(--blue-light) 0%, #c8dfff 100%);
}
.about-img-main i { font-size: 90px; color: var(--blue-mid); opacity: 0.25; position: relative; z-index: 1; }
.about-img-main img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.about-stats-row {
    position: absolute;
    bottom: -18px; left: 16px; right: 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    z-index: 10;
}
.asr-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 14px 18px;
    box-shadow: var(--shadow);
    text-align: center;
}
.asr-card .val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--blue);
    display: block;
    line-height: 1;
    margin-bottom: 3px;
}
.asr-card .lbl { font-size: 12px; color: var(--text-soft); }
.about-text p { font-size: 15.5px; color: var(--text-mid); line-height: 1.85; margin-bottom: 14px; }
.check-list { display: flex; flex-direction: column; gap: 9px; margin-top: 20px; }
.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    color: var(--text);
    font-weight: 500;
}
.check-item i { font-size: 13px; color: var(--teal); width: 18px; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.val-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    text-align: center;
    transition: var(--ease);
}
.val-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue); transform: translateY(-3px); }
.val-icon {
    width: 56px; height: 56px;
    background: var(--blue-light);
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    transition: var(--ease);
}
.val-icon i { font-size: 22px; color: var(--blue); transition: var(--ease); }
.val-card:hover .val-icon { background: linear-gradient(135deg, var(--blue), var(--teal)); }
.val-card:hover .val-icon i { color: white; }
.val-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.val-card p { font-size: 13.5px; color: var(--text-mid); line-height: 1.7; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.team-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 18px;
    text-align: center;
    transition: var(--ease);
}
.team-card:hover { box-shadow: var(--shadow); border-color: var(--teal); transform: translateY(-2px); }
.team-av {
    width: 72px; height: 72px;
    background: var(--blue-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    border: 2px solid var(--border);
    transition: var(--ease);
}
.team-card:hover .team-av { border-color: var(--teal); background: var(--teal-light); }
.team-av i { font-size: 26px; color: var(--blue); transition: var(--ease); }
.team-card:hover .team-av i { color: var(--teal); }
.team-card h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.team-card span { font-size: 12.5px; color: var(--text-soft); }

/* ── Services Detail ──────────────────── */
.svc-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.sdc {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: var(--ease);
}
.sdc:hover { box-shadow: var(--shadow-md); border-color: transparent; }
.sdc-head {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 26px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}
.sdc-ico {
    width: 54px; height: 54px;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sdc-ico i { font-size: 22px; color: white; }
.sdc-head h3 { font-size: 19px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.sdc-head p { font-size: 13px; color: var(--text-soft); }
.sdc-body { padding: 22px 26px 26px; }
.sdc-body ul { display: flex; flex-direction: column; gap: 9px; }
.sdc-body li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    color: var(--text);
}
.sdc-body li i { font-size: 11px; color: var(--teal); width: 14px; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 860px; margin: 0 auto; }
.price-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px 26px;
    text-align: center;
    transition: var(--ease);
    position: relative;
}
.price-card.popular {
    border-color: var(--blue);
    box-shadow: var(--shadow-lg);
    transform: scale(1.03);
}
.popular-badge {
    position: absolute;
    top: -13px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--blue), var(--teal));
    color: white;
    font-size: 11.5px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 50px;
    white-space: nowrap;
    letter-spacing: 0.3px;
}
.price-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.price-val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 4px;
}
.price-val sup { font-size: 22px; vertical-align: top; margin-top: 8px; }
.price-val sub { font-size: 14px; color: var(--text-soft); font-weight: 400; }
.price-sub { font-size: 12.5px; color: var(--text-soft); margin-bottom: 22px; }
.price-features {
    text-align: left;
    display: flex; flex-direction: column; gap: 9px;
    margin-bottom: 24px;
}
.price-features li {
    display: flex; align-items: center; gap: 8px;
    font-size: 13.5px; color: var(--text);
    padding-bottom: 9px;
    border-bottom: 1px solid var(--border);
}
.price-features li:last-child { border-bottom: none; padding-bottom: 0; }
.price-features li i { font-size: 11px; color: var(--teal); }

/* ── Gallery ──────────────────────────── */
.filter-bar { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.flt {
    padding: 8px 18px;
    font-size: 13.5px; font-weight: 500;
    color: var(--text-mid);
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--ease);
    font-family: 'Inter', sans-serif;
}
.flt:hover, .flt.active { background: var(--blue); border-color: var(--blue); color: white; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.g-item {
    border-radius: var(--r-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--border);
    background: var(--bg);
}
.g-ph {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 10px; background: var(--bg);
    transition: var(--ease);
}
.g-ph i { font-size: 40px; color: var(--blue-mid); opacity: 0.35; transition: var(--ease); }
.g-ph span { font-size: 13px; font-weight: 500; color: var(--text-soft); transition: var(--ease); }
.g-ov {
    position: absolute; inset: 0;
    background: rgba(26,86,160,0.82);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--ease);
}
.g-ov i { font-size: 28px; color: white; }
.g-item:hover .g-ov { opacity: 1; }

/* ── Contact CTA Cards ────────────────── */
.contact-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 860px;
    margin: 0 auto 40px;
}
.contact-cta-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 30px;
    border-radius: var(--r-xl);
    text-decoration: none;
    transition: var(--ease);
    position: relative;
    overflow: hidden;
}
.contact-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.06);
    opacity: 0;
    transition: var(--ease);
}
.contact-cta-card:hover::before { opacity: 1; }
.contact-cta-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.18); }
.contact-cta-phone {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
}
.contact-cta-wa {
    background: linear-gradient(135deg, #075e54 0%, #25d366 100%);
}
.cca-icon {
    width: 60px; height: 60px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: white; flex-shrink: 0;
}
.cca-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}
.cca-label { font-size: 12px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; }
.cca-val { font-size: 22px; font-weight: 800; color: white; font-family: 'Plus Jakarta Sans', sans-serif; }
.cca-note { font-size: 12px; color: rgba(255,255,255,0.6); }
.cca-arrow { font-size: 16px; color: rgba(255,255,255,0.5); margin-left: auto; flex-shrink: 0; }

.ci-info-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 100%;
    margin: 0 auto;
}
.ci-info-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 22px 20px;
}
.ci-info-card .ci-ico {
    width: 40px; height: 40px;
    background: var(--bg);
    border-radius: var(--r);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; color: var(--blue); flex-shrink: 0;
}
.ci-info-card .ci-txt span { font-size: 11.5px; color: var(--text-soft); display: block; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.7px; }
.ci-info-card .ci-txt strong { font-size: 15px; color: var(--text); font-weight: 600; }
.ci-info-card .ci-txt a { color: var(--blue); }

/* ── Legal Pages ──────────────────────── */
.legal-wrap {
    max-width: 800px;
    margin: 0 auto;
}
.legal-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 40px;
}
.legal-meta i { font-size: 13px; }
.legal-body h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--text);
    margin: 36px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 14px;
}
.legal-body ul {
    margin: 0 0 14px 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.legal-body ul li {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
    padding-left: 22px;
    position: relative;
}
.legal-body ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 10px;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--teal);
}
.legal-body a { color: var(--blue); font-weight: 500; }
.legal-body a:hover { color: var(--teal); }
.legal-body strong { color: var(--text); font-weight: 600; }
.legal-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 20px 24px;
    margin-top: 8px;
    font-size: 14.5px;
    color: var(--text-mid);
}
.legal-contact div { display: flex; align-items: center; gap: 10px; }
.legal-contact i { color: var(--blue); font-size: 14px; width: 16px; text-align: center; }
.legal-contact a { color: var(--blue); }

/* ── Contact ──────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    gap: 40px;
    align-items: start;
}
.contact-side {
    background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue) 100%);
    border-radius: var(--r-xl);
    padding: 36px 30px;
    position: sticky;
    top: 88px;
    overflow: hidden;
}
.contact-side::before {
    content: '';
    position: absolute;
    bottom: -80px; right: -80px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.contact-side h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    position: relative;
}
.contact-side > p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 28px;
    line-height: 1.75;
    position: relative;
}
.ci-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; position: relative; }
.ci-row { display: flex; align-items: flex-start; gap: 12px; }
.ci-ico {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.12);
    border-radius: var(--r);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; color: rgba(255,255,255,0.9); flex-shrink: 0;
}
.ci-txt span { font-size: 11px; color: rgba(255,255,255,0.5); display: block; margin-bottom: 1px; text-transform: uppercase; letter-spacing: 0.7px; }
.ci-txt strong { font-size: 14px; color: white; font-weight: 500; }
.ci-txt a { color: white; }
.cs-social { display: flex; gap: 8px; position: relative; }
.cs-social a {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--r);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: rgba(255,255,255,0.7); transition: var(--ease);
}
.cs-social a:hover { background: var(--teal); border-color: var(--teal); color: white; }
.contact-form-box {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 38px 36px;
}
.contact-form-box h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
}
.contact-form-box > p { font-size: 14.5px; color: var(--text-mid); margin-bottom: 28px; line-height: 1.7; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg.full { grid-column: 1/-1; }
.fg label { font-size: 13px; font-weight: 600; color: var(--text); }
.fg label span { color: #E53E3E; }
.fg input, .fg select, .fg textarea {
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: white;
    outline: none;
    transition: var(--ease);
    -webkit-appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26,86,160,0.08);
}
.fg textarea { resize: vertical; min-height: 120px; }
.fg select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath fill='%234B5563' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.form-foot { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 4px; }
.form-note { font-size: 12.5px; color: var(--text-soft); display: flex; align-items: center; gap: 5px; }
.form-note i { color: var(--teal); }
.alert { display: flex; align-items: flex-start; gap: 12px; padding: 14px 18px; border-radius: var(--r-md); margin-bottom: 22px; font-size: 14px; }
.alert i { font-size: 16px; margin-top: 1px; flex-shrink: 0; }
.alert-ok { background: #F0FDF4; border: 1px solid #86EFAC; color: #166534; }
.alert-err { background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; }
.map-wrap { height: 400px; position: relative; overflow: hidden; }
.map-wrap::before { content:''; position:absolute; inset:0; background: linear-gradient(135deg, var(--blue-light) 0%, #cce3f8 100%); }
.map-ph { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 8px; }
.map-ph i { font-size: 56px; color: var(--blue-mid); opacity: 0.3; }
.map-ph h3 { font-size: 20px; font-weight: 700; color: var(--text); }
.map-ph p { font-size: 14px; color: var(--text-mid); }
/* FAQ */
.faq-sec { background: var(--bg); }
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s;
}
.faq-item:hover { border-color: #c2d4f0; box-shadow: 0 4px 16px rgba(26,86,160,.07); }
.faq-item.open { border-color: var(--blue); box-shadow: 0 6px 24px rgba(26,86,160,.10); }
.faq-btn {
    width: 100%; text-align: left; border: none; background: none; cursor: pointer;
    padding: 18px 22px;
    display: flex; align-items: center; gap: 14px;
    transition: background .2s;
}
.faq-btn:hover { background: var(--bg); }
.faq-ico {
    width: 38px; height: 38px; border-radius: var(--r-md);
    background: var(--bg-blue);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: background .25s;
}
.faq-ico i { font-size: 15px; color: var(--blue); transition: color .25s; }
.faq-item.open .faq-ico { background: var(--blue); }
.faq-item.open .faq-ico i { color: white; }
.faq-q {
    flex: 1;
    font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.4;
    text-align: left;
}
.faq-chevron {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--bg); border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: background .25s, border-color .25s, transform .3s;
}
.faq-chevron i { font-size: 11px; color: var(--text-mid); transition: color .25s; }
.faq-item.open .faq-chevron { background: var(--blue); border-color: var(--blue); transform: rotate(180deg); }
.faq-item.open .faq-chevron i { color: white; }
.faq-ans {
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease, padding .25s ease;
    padding: 0 22px 0 74px;
}
.faq-item.open .faq-ans { max-height: 300px; padding: 0 22px 18px 74px; }
.faq-ans p { font-size: 14.5px; color: var(--text-mid); line-height: 1.8; margin: 0; }

/* ── Responsive ───────────────────────── */

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; padding: 70px 0 110px; }
    .hero-right { display: none; }
    .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.15); }
    .stat-item:nth-child(4) { border-right: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }
    .why-layout { grid-template-columns: 1fr; }
    .why-img { order: -1; max-height: 280px; }
    .testi-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-inner { grid-template-columns: 1fr; gap: 28px; }
    .cta-actions { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .about-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .svc-detail-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .price-card.popular { transform: none; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-cta-grid { grid-template-columns: 1fr; max-width: 520px; }
    .ci-info-row { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-side { position: static; }
}

/* Mobil (≤ 768px) */
@media (max-width: 768px) {
    /* Genel */
    .topbar { display: none; }
    .container { padding: 0 16px; }
    .sec { padding: 48px 0; }
    .sec-sm { padding: 40px 0; }
    .sh { margin-bottom: 32px; }
    .sec-title { font-size: 24px; line-height: 1.25; }
    .sec-desc { font-size: 14.5px; }

    /* Header / Nav */
    .navbar { height: 62px; }
    /* Mobilde topbar gizli, spacer tam header yüksekliği + 16px nefes boşluğu */
    .header-spacer { height: 78px; }
    .logo-name { font-size: 16px; }
    .logo-sub { display: none; }
    .hamburger { display: flex; }
    /* Desktop nav gizle, mobil menü overlay kullanılıyor */
    .nav-menu { display: none !important; }

    /* Hero */
    .hero { min-height: auto; }
    .hero-inner { padding: 48px 0 90px; gap: 24px; }
    .hero-tag { font-size: 11px; padding: 6px 12px; margin-bottom: 16px; }
    .hero h1 { font-size: 30px; margin-bottom: 14px; }
    .hero-p { font-size: 15px; margin-bottom: 24px; }
    .hero-btns {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 28px;
    }
    .hero-btns .btn { width: 100%; justify-content: center; }
    .hero-badges { gap: 8px; }
    .hero-badge { font-size: 11.5px; padding: 7px 12px; }

    /* Stats Bar */
    .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
    .stat-item { padding: 18px 14px; gap: 10px; }
    .si-icon { width: 38px; height: 38px; }
    .si-icon i { font-size: 15px; }
    .si-val { font-size: 17px; }
    .si-lbl { font-size: 11px; }

    /* Services */
    .services-grid { grid-template-columns: 1fr; gap: 14px; }
    .svc-card { padding: 24px 20px; }

    /* Process */
    .process-steps { grid-template-columns: 1fr; gap: 14px; }
    .step-card { padding: 22px 18px; }

    /* Why Us */
    .why-img { display: block; max-height: 240px; }
    .why-float-1, .why-float-2 { display: none; }
    .why-item { padding: 14px 16px; }

    /* Hizmet Bölgeleri */
    .area-chip { font-size: 12.5px; padding: 7px 13px; }

    /* Testimonials */
    .testi-grid { grid-template-columns: 1fr; gap: 14px; }
    .testi-card { padding: 20px; }

    /* CTA */
    .cta-sec { padding: 52px 0; }
    .cta-inner { grid-template-columns: 1fr; gap: 24px; }
    .cta-text h2 { font-size: 24px; }
    .cta-text p { font-size: 14.5px; }
    .cta-actions { flex-direction: column; align-items: stretch; width: 100%; }
    .cta-phone { font-size: 18px; padding: 14px 18px; justify-content: center; }
    .cta-actions .btn { width: 100%; justify-content: center; }

    /* Footer */
    .footer { padding: 48px 0 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
    .footer-brand p { max-width: 100%; font-size: 13.5px; }
    .ftr-logo h3 { font-size: 17px; }

    /* Page hero */
    .page-hero { padding: 36px 0; }
    .page-hero h1 { font-size: 26px; }

    /* WhatsApp float */
    .wa-float {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
        animation: none; /* pulse'u kapat, performans */
        box-shadow: 0 4px 16px rgba(37,211,102,0.5);
    }
    .wa-float i { font-size: 24px; }

    /* About */
    .about-img-main { aspect-ratio: 16/9; }
    .about-stats-row { position: static; margin-top: 14px; }
    .asr-card .val { font-size: 22px; }
    .values-grid { grid-template-columns: 1fr; gap: 12px; }
    .team-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

    /* Hizmetler */
    .svc-detail-grid { grid-template-columns: 1fr; gap: 14px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }

    /* Gallery */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .flt-wrap { gap: 8px; }
    .flt { font-size: 12.5px; padding: 7px 14px; }

    /* Contact CTA */
    .contact-cta-grid { grid-template-columns: 1fr; max-width: 100%; gap: 14px; }
    .contact-cta-card { padding: 20px; gap: 16px; }
    .cca-icon { width: 50px; height: 50px; font-size: 22px; }
    .cca-val { font-size: 18px; }
    .ci-info-row { grid-template-columns: 1fr; max-width: 100%; gap: 10px; }
    .ci-info-card { padding: 14px; }
}

/* Küçük telefon (≤ 400px) */
@media (max-width: 400px) {
    .hero h1 { font-size: 26px; }
    .hero-badges { flex-direction: column; }
    .hero-badge { justify-content: center; }
    .stats-bar-inner { grid-template-columns: 1fr; }
    .stat-item { border-right: none !important; border-top: 1px solid rgba(255,255,255,0.12); }
    .stat-item:first-child { border-top: none; }
    .gallery-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .cca-val { font-size: 16px; }
}
