/* ========================================
   GK PEYZAJ — PREMIUM DARK TECH TASARIM
   Versiyon 2.0 | Peyzaj Mühendisliği Estetiği
======================================== */

/* ─── GOOGLE FONTS ──────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700;800;900&family=Syne:wght@700;800&display=swap');

/* ─── RENK DEĞİŞKENLERİ ────────────────── */
:root {
    /* Ana Renkler */
    --bg:          #060c09;
    --bg-2:        #0a1410;
    --bg-card:     rgba(16, 28, 20, 0.85);
    --bg-glass:    rgba(14, 26, 18, 0.72);

    /* Marka Renkleri */
    --emerald:     #1adb67;
    --emerald-dim: #0d9944;
    --emerald-glow:rgba(26, 219, 103, 0.18);
    --cyan:        #38d9c9;
    --cyan-glow:   rgba(56, 217, 201, 0.15);

    /* Metin */
    --text-primary:  #f0f4f2;
    --text-secondary:#8ca898;
    --text-muted:    #4d6358;

    /* Çizgi / border */
    --border:      rgba(26, 219, 103, 0.12);
    --border-hover:rgba(26, 219, 103, 0.35);

    /* Gölge */
    --shadow-card: 0 4px 32px rgba(0,0,0,0.45);
    --shadow-glow: 0 0 32px rgba(26, 219, 103, 0.20);

    /* Layout */
    --container:   1200px;
    --radius-sm:   12px;
    --radius:      20px;
    --radius-lg:   32px;

    /* Hız */
    --transition:  0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    background-color: var(--bg);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ─── KAPSAYICI ─────────────────────────── */
.container {
    width: min(var(--container), 94%);
    margin: 0 auto;
}

/* ─── SECTION BOŞLUK ───────────────────── */
.section {
    padding: 96px 0;
}
.section-sm {
    padding: 64px 0;
}

/* ─── TİPOGRAFİ ─────────────────────────── */
h1, h2, h3, h4 {
    font-family: 'Syne', sans-serif;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* ─── KICKER / EYEBROW BADGE ───────────── */
.kicker, .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--emerald);
    background: rgba(26, 219, 103, 0.10);
    border: 1px solid rgba(26, 219, 103, 0.25);
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.kicker::before, .eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--emerald);
    box-shadow: 0 0 8px var(--emerald);
}

/* ─── SECTION BAŞLIK ────────────────────── */
.section-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: end;
    margin-bottom: 56px;
}

.section-head h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    color: var(--text-primary);
}

.section-head p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.75;
    max-width: 480px;
    margin-left: auto;
}

.section-head.single {
    grid-template-columns: 1fr;
    max-width: 680px;
}

/* ─── BUTON ─────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 26px;
    border: none;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

/* Birincil buton */
.btn-primary {
    background: linear-gradient(135deg, var(--emerald-dim), var(--emerald));
    color: #000;
    box-shadow: 0 0 24px rgba(26, 219, 103, 0.30);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(26, 219, 103, 0.50);
    color: #000;
}

/* WhatsApp buton */
.btn-wa {
    background: linear-gradient(135deg, #128c38, #25d366);
    color: #fff;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.30);
}

.btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 36px rgba(37, 211, 102, 0.50);
}

/* Outline buton */
.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-hover);
}

.btn-outline:hover {
    background: var(--emerald-glow);
    border-color: var(--emerald);
    color: var(--emerald);
}

/* Eski .btn uyumu (diğer sayfalardaki stiller için) */
.btn {
    background: linear-gradient(135deg, var(--emerald-dim), var(--emerald));
    color: #000;
    box-shadow: 0 0 24px rgba(26, 219, 103, 0.30);
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(26, 219, 103, 0.50);
    color: #000;
}
.btn.outline {
    background: transparent;
    color: var(--text-primary);
    box-shadow: none;
    border: 1.5px solid var(--border-hover);
}
.btn.outline:hover {
    background: var(--emerald-glow);
    border-color: var(--emerald);
    color: var(--emerald);
}

/* ─── HEADER ────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
    transition: all var(--transition);
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(6, 12, 9, 0.75);
    backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
}

.header.scrolled::before {
    background: rgba(6, 12, 9, 0.95);
    border-color: rgba(26, 219, 103, 0.20);
}

.nav {
    position: relative;
    z-index: 1;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo */
.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand img {
    height: 36px;
    width: auto;
    
}

/* Menü */
.menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu a {
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all var(--transition);
    position: relative;
}

.menu a:hover,
.menu a.active {
    color: var(--text-primary);
    background: rgba(26, 219, 103, 0.08);
}

.menu a.active {
    color: var(--emerald);
}

/* Mobil toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 1px solid var(--border-hover);
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* ─── HERO ──────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 72px;
}

/* Arka plan katmanları */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(26, 219, 103, 0.08) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(56, 217, 201, 0.05) 0%, transparent 60%),
        linear-gradient(160deg, #060c09 0%, #0a1810 45%, #060c09 100%);
}

/* Izgara desen */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(26, 219, 103, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 219, 103, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* Parlama noktası */
.hero-orb {
    position: absolute;
    top: 30%;
    right: 10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 219, 103, 0.10) 0%, transparent 70%);
    animation: heroOrb 8s ease-in-out infinite alternate;
}

@keyframes heroOrb {
    from { transform: scale(1) translate(0, 0); opacity: 0.6; }
    to   { transform: scale(1.15) translate(20px, -20px); opacity: 1; }
}

/* Hero içerik */
.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
    padding: 64px 0;
    width: 100%;
}

/* Sol kısım - metin */
.hero-copy {
    max-width: 600px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--emerald);
    background: rgba(26, 219, 103, 0.08);
    border: 1px solid rgba(26, 219, 103, 0.22);
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both;
}

.hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--emerald);
    box-shadow: 0 0 8px var(--emerald);
    animation: pulseDot 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(36px, 5vw, 60px);
    color: var(--text-primary);
    margin-bottom: 24px;
    animation: fadeUp 0.7s 0.1s ease both;
}

.hero-title .highlight {
    color: var(--emerald);
    position: relative;
}

.hero-desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 36px;
    animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeUp 0.7s 0.3s ease both;
}

/* Proof kartlar */
.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    animation: fadeUp 0.7s 0.4s ease both;
}

.proof-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.proof-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--emerald), transparent);
    transform: scaleX(0);
    transition: transform var(--transition);
}

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

.proof-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.proof-card strong {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 26px;
    color: var(--emerald);
    line-height: 1;
    margin-bottom: 6px;
}

.proof-card span {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
}

/* Sağ kısım - görsel */
.hero-visual {
    position: relative;
    height: 520px;
    animation: fadeUp 0.9s 0.2s ease both;
}

.hero-visual-main {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background:
        radial-gradient(circle at 60% 40%, rgba(26, 219, 103, 0.12) 0%, transparent 60%),
        var(--bg-2);
    border: 1px solid var(--border);
}

.hero-visual-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    mix-blend-mode: luminosity;
    filter: hue-rotate(20deg) saturate(1.2);
}

/* Yüzen kartlar */
.hero-float {
    position: absolute;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    box-shadow: var(--shadow-card);
    animation: floatY 5s ease-in-out infinite alternate;
}

.hero-float b {
    display: block;
    font-size: 13px;
    color: var(--emerald);
    font-weight: 700;
    margin-bottom: 3px;
}

.hero-float small {
    font-size: 11px;
    color: var(--text-secondary);
}

.hero-float.f1 {
    top: 15%;
    left: -8%;
    animation-duration: 4.5s;
}

.hero-float.f2 {
    bottom: 25%;
    left: -6%;
    animation-duration: 5.5s;
    animation-delay: 1s;
}

.hero-float.f3 {
    top: 10%;
    right: -5%;
    animation-duration: 6s;
    animation-delay: 0.5s;
}

@keyframes floatY {
    from { transform: translateY(0); }
    to   { transform: translateY(-12px); }
}

/* Su damlacıkları */
.drop {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 217, 201, 0.6), transparent);
    animation: dropFloat linear infinite;
}

.drop-1 { width: 8px; height: 8px; bottom: 20%; right: 20%; animation-duration: 4s; animation-delay: 0s; }
.drop-2 { width: 5px; height: 5px; bottom: 40%; right: 35%; animation-duration: 5s; animation-delay: 1.5s; }
.drop-3 { width: 10px; height: 10px; bottom: 10%; right: 45%; animation-duration: 6s; animation-delay: 0.7s; }

@keyframes dropFloat {
    0%   { transform: translateY(0) scale(1); opacity: 0.7; }
    100% { transform: translateY(-80px) scale(0); opacity: 0; }
}

/* Hero scroll göstergesi */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeUp 1s 0.8s ease both;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--emerald), transparent);
    animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
    50%       { opacity: 1; transform: scaleY(1); }
}

/* ─── HİZMETLER ─────────────────────────── */
.services-section {
    background: var(--bg-2);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

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

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

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 219, 103, 0.04), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

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

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

.service-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-card-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--bg-card), transparent);
}

.service-card-img svg,
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.92;
}

.service-card:hover .service-card-img svg,
.service-card:hover .service-card-img img {
    transform: scale(1.05);
}

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

.service-card-body h3 {
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-card-body p {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.check-list {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.check-list li::before {
    content: '';
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(26, 219, 103, 0.15);
    border: 1px solid rgba(26, 219, 103, 0.4);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%231adb67' d='M3 8l3 3 7-7' stroke='%231adb67' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center;
}

.service-card-body .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* ─── NEDEN GK PEYZAJ ───────────────────── */
.why-section {
    position: relative;
}

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

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

.why-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--emerald), transparent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.why-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.why-card:hover::after {
    transform: scaleY(1);
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(26, 219, 103, 0.12);
    border: 1px solid rgba(26, 219, 103, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--emerald);
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ─── BÖLGE ALANI ───────────────────────── */
.area-section {
    background: var(--bg-2);
}

.area-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.area-info h2 {
    font-size: clamp(26px, 3vw, 38px);
    margin-bottom: 16px;
    margin-top: 12px;
}

.area-info p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 28px;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.area-tags span {
    background: rgba(26, 219, 103, 0.08);
    border: 1px solid rgba(26, 219, 103, 0.22);
    color: var(--emerald);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
}

.map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    height: 380px;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(92%) hue-rotate(180deg) saturate(0.8);
}

/* ─── YORUMLAR ──────────────────────────── */
.reviews-section {
    overflow: hidden;
}

.reviews-track-wrap {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.reviews-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee 35s linear infinite;
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.review {
    flex-shrink: 0;
    width: 300px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: border-color var(--transition);
}

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

.review .stars {
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.review p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.review b {
    font-size: 13px;
    color: var(--emerald);
    font-weight: 700;
}

/* ─── BLOG KARTLARI ─────────────────────── */
.blog-section {}

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

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
}

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

.blog-thumb {
    height: 180px;
    overflow: hidden;
    position: relative;
    background: var(--bg-2);
}

.blog-thumb img,
.blog-thumb .thumb-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: hue-rotate(15deg) saturate(1.1);
    opacity: 0.75;
}

.blog-thumb-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    filter: hue-rotate(15deg) saturate(1.1);
    opacity: 0.75;
}

.blog-card:hover .blog-thumb-bg,
.blog-card:hover .blog-thumb img {
    transform: scale(1.08);
}

.blog-thumb::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--bg-card), transparent);
}

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

.blog-cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 10px;
}

.blog-body h3 {
    font-size: 17px;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-body p {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 18px;
    flex: 1;
}

.read-more {
    font-size: 13px;
    font-weight: 700;
    color: var(--emerald);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}

.read-more::after {
    content: '→';
}

.blog-card:hover .read-more {
    gap: 12px;
}

/* ─── CTA ALANI ─────────────────────────── */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-box {
    background: var(--bg-card);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-lg);
    padding: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 219, 103, 0.08), transparent 70%);
}

.cta-box h2 {
    font-size: clamp(24px, 3vw, 36px);
    max-width: 500px;
    margin-bottom: 12px;
}

.cta-box p {
    color: var(--text-secondary);
    font-size: 15px;
    max-width: 480px;
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* Eski .cta uyumu */
.cta {
    background: var(--bg-card);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-lg);
    padding: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 219, 103, 0.08), transparent 70%);
}

.cta h2 {
    font-size: clamp(22px, 2.5vw, 32px);
    max-width: 500px;
    margin-bottom: 12px;
}

.cta p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* ─── PAGE HERO (İç Sayfalar) ───────────── */
.page-hero {
    position: relative;
    padding: 120px 0 72px;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 50% 100%, rgba(26, 219, 103, 0.07), transparent),
        linear-gradient(160deg, var(--bg) 0%, var(--bg-2) 100%);
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

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

.page-hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 18px;
    max-width: 720px;
}

.page-hero p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 620px;
    line-height: 1.75;
}

/* ─── MAKALELEr (Blog Detay) ────────────── */
.article-section {
    background: var(--bg-2);
}

.article {
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 48px;
}

.article-img {
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 40px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.article-img img {
    width: 100%;
    height: auto;
    filter: hue-rotate(10deg) saturate(1.1);
    opacity: 0.85;
    transition: opacity var(--transition);
}

.article-img:hover img { opacity: 1; }

.article h2 {
    font-size: 26px;
    color: var(--text-primary);
    margin: 36px 0 14px;
}

.article h3 {
    font-size: 20px;
    color: var(--text-primary);
    margin: 28px 0 12px;
}

.article p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 18px;
}

.article ul {
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.article ul li {
    font-size: 15px;
    color: var(--text-secondary);
    padding-left: 24px;
    position: relative;
}

.article ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--emerald);
}

.note {
    background: rgba(26, 219, 103, 0.07);
    border-left: 3px solid var(--emerald);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 18px 24px;
    font-size: 15px;
    color: var(--text-primary);
    font-style: italic;
    margin: 24px 0;
}

/* Blog sidebar CTA */
.article-cta {
    background: var(--bg-card);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    margin-top: 48px;
}

.article-cta h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.article-cta p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
}

/* ─── İLETİŞİM SAYFASI ──────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 64px;
}

.contact-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-box::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--emerald), transparent);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.contact-box:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
}

.contact-box:hover::before { transform: scaleX(1); }

.contact-box.featured {
    background: linear-gradient(135deg, rgba(13, 153, 68, 0.3), rgba(26, 219, 103, 0.15));
    border-color: rgba(26, 219, 103, 0.40);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(26, 219, 103, 0.12);
    border: 1px solid rgba(26, 219, 103, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--emerald);
}

.contact-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-box p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin: 6px 0;
}

.contact-box strong {
    color: var(--text-primary);
    font-size: 17px;
}

/* Bölge rozetleri */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.area-badge {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.area-badge i {
    color: var(--emerald);
    margin-right: 6px;
}

.area-badge:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Harita */
.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    filter: invert(90%) hue-rotate(180deg) saturate(0.7);
}

/* ─── HAKKIMIZDA SAYFASI ─────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-content h2 {
    font-size: clamp(24px, 2.5vw, 34px);
    margin-bottom: 16px;
}

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

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

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

.stat-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.stat-card strong {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 40px;
    color: var(--emerald);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card span {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ─── FOOTER ────────────────────────────── */
.footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
}

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

.footer-grid img {
    height: 32px;
    width: auto;
    
    margin-bottom: 16px;
}

.footer-grid > div:first-child p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-grid h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-grid a,
.footer-grid p {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    transition: color var(--transition);
}

.footer-grid a:hover {
    color: var(--emerald);
}

.footer-grid p i {
    color: var(--emerald);
    margin-right: 8px;
    width: 14px;
}

.copy {
    border-top: 1px solid var(--border);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.copy p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ─── WHATSAPP YÜZEN BUTON ──────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #128c38, #25d366);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.50);
    transition: all var(--transition);
    animation: waPulse 3s ease-in-out infinite;
}

/* Eski .whatsapp class uyumu */
.whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #128c38, #25d366);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white !important;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.50);
    transition: all var(--transition);
    animation: waPulse 3s ease-in-out infinite;
}

.whatsapp:hover,
.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 36px rgba(37, 211, 102, 0.70);
    animation: none;
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.50); }
    50%       { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.80); }
}

/* ─── ANİMASYON YARDIMCILARI ────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Scroll animasyon sınıfları (JS tarafından eklenir) */
[data-anim] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-anim].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── MENİ AKTIF SAYFA ──────────────────── */
.menu a.active {
    color: var(--emerald) !important;
}

/* ─── HİZMETLER SAYFASI - GENİŞLETİLMİŞ KARTLAR ── */
.services-full-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-full-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    display: grid;
    grid-template-columns: 280px 1fr;
}

.service-full-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.service-full-img {
    position: relative;
    overflow: hidden;
}

.service-full-img img,
.service-full-img .sfi-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: hue-rotate(10deg) saturate(1.1);
    opacity: 0.75;
    transition: transform 0.5s ease;
}

.sfi-bg {
    background-size: cover;
    background-position: center;
}

.service-full-card:hover .service-full-img img,
.service-full-card:hover .sfi-bg {
    transform: scale(1.06);
}

.service-full-body {
    padding: 32px;
}

.service-tag {
    display: inline-flex;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 12px;
}

.service-full-body h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.service-full-body p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 18px;
    line-height: 1.7;
}

.service-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 24px;
}

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

.service-mini-item::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--emerald);
    flex-shrink: 0;
}

/* ─── BLOG SAYFASI ──────────────────────── */
.blog-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ─── RESPONSİVE / MOBİL ────────────────── */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        height: 360px;
    }

    .hero-float.f1, .hero-float.f2, .hero-float.f3 {
        display: none;
    }

    .services-grid,
    .services-full-grid {
        grid-template-columns: 1fr;
    }

    .service-full-card {
        grid-template-columns: 1fr;
    }

    .service-full-img {
        height: 200px;
    }

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

    .area-box {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

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

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

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

    .section-head {
        grid-template-columns: 1fr;
    }

    .section-head p {
        margin-left: 0;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .section { padding: 72px 0; }

    /* Header mobil */
    .menu {
        position: fixed;
        top: 72px; left: 0; right: 0;
        flex-direction: column;
        align-items: flex-start;
        background: rgba(6, 12, 9, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid var(--border);
        padding: 16px;
        gap: 4px;
        transform: translateY(-120%);
        transition: transform var(--transition);
        z-index: 999;
    }

    .menu.active {
        transform: translateY(0);
    }

    .menu a {
        width: 100%;
        padding: 12px 16px;
    }

    .mobile-toggle {
        display: flex;
    }

    /* Hero butonları */
    .nav > .btn,
    .nav > a.btn {
        display: none;
    }

    .hero-proof {
        grid-template-columns: repeat(3, 1fr);
    }

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

    /* Why */
    .why-grid {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .cta-box, .cta {
        flex-direction: column;
        padding: 40px 28px;
        text-align: center;
    }

    .cta h2 { text-align: center; }

    .cta-actions {
        justify-content: center;
    }

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

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

    /* Hero */
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn,
    .hero-actions a {
        width: 100%;
        justify-content: center;
    }

    .hero-proof {
        gap: 8px;
    }

    .hero-proof .proof-card {
        padding: 12px 8px;
    }

    .hero-proof .proof-card strong {
        font-size: 20px;
    }

    .page-hero {
        padding: 100px 0 56px;
    }

    .copy {
        flex-direction: column;
        text-align: center;
    }

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

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

@media (max-width: 480px) {
    :root { --container: 100%; }

    .hero-proof {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-proof .proof-card strong {
        font-size: 18px;
    }

    .hero-proof .proof-card span {
        font-size: 10px;
    }

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

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

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

/* ─── SCROLL BARINI ÖZELLEŞTIR ──────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(26, 219, 103, 0.30); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(26, 219, 103, 0.60); }

/* ─── SEÇİM RENGİ ───────────────────────── */
::selection {
    background: rgba(26, 219, 103, 0.25);
    color: var(--text-primary);
}
