/* ════════════════════════════════════════════════════════════════
   EN YAKIN KURTARICI — Frontend CSS v2
   Temiz, tutarlı, premium tasarım
   ════════════════════════════════════════════════════════════════ */

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

/* ─── Değişkenler ─────────────────────────────────── */
:root {
    --red:         #e63946;
    --red-dark:    #c1121f;
    --navy:        #1d3557;
    --navy-light:  #457b9d;
    --orange:      #f4a261;
    --dark:        #0f172a;
    --white:       #ffffff;
    --gray-50:     #f8fafc;
    --gray-100:    #f1f5f9;
    --gray-200:    #e2e8f0;
    --gray-400:    #94a3b8;
    --gray-600:    #475569;
    --gray-800:    #1e293b;
    --font:        'Inter', system-ui, sans-serif;
    --font-h:      'Poppins', system-ui, sans-serif;
    --r-sm:        8px;
    --r-md:        14px;
    --r-lg:        20px;
    --r-xl:        30px;
    --ease:        all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm:   0 1px 6px rgba(0,0,0,0.07);
    --shadow-md:   0 4px 20px rgba(0,0,0,0.10);
    --shadow-lg:   0 12px 40px rgba(0,0,0,0.14);
    --grad-hero:   linear-gradient(135deg,#0f172a 0%,#1d3557 60%,#0a1628 100%);
    --grad-red:    linear-gradient(135deg,#e63946 0%,#c1121f 100%);
}

/* ─── Reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: var(--ease); }
a:hover { color: var(--red-dark); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-h); font-weight: 700; line-height: 1.25; color: var(--navy); }
p:last-child { margin-bottom: 0; }

/* ─── Layout ──────────────────────────────────────── */
.ekc { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.ekc-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -14px;
}
.ekc-row > * { padding: 0 14px; }

.ekc-col-12 { width: 100%; }
.ekc-col-6  { width: 50%; }
.ekc-col-4  { width: 33.333%; }
.ekc-col-3  { width: 25%; }
.ekc-col-8  { width: 66.666%; }

@media (max-width: 900px) {
    .ekc-col-6, .ekc-col-4, .ekc-col-8 { width: 100%; }
}
@media (max-width: 600px) {
    .ekc-col-3 { width: 50%; }
}

/* ─── Top Bar ─────────────────────────────────────── */
.topbar {
    background: var(--navy);
    padding: 8px 0;
    font-size: 13px;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.topbar-contacts {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.topbar-contacts a,
.topbar-contacts span {
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}
.topbar-contacts a:hover { color: var(--orange); }
.topbar-contacts i { color: var(--orange); }

.topbar-socials {
    display: flex;
    align-items: center;
    gap: 8px;
}
.topbar-socials a {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.75);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    transition: var(--ease);
}
.topbar-socials a:hover { background: var(--red); color: white; }

/* ─── Navbar ──────────────────────────────────────── */
.sitenav {
    background: white;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}
.sitenav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}
.nav-brand-icon {
    width: 46px; height: 46px;
    background: var(--grad-red);
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(230,57,70,0.35);
    flex-shrink: 0;
}
.nav-brand-text { line-height: 1.2; }
.nav-brand-name {
    font-family: var(--font-h);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--navy);
    display: block;
}
.nav-brand-tag {
    font-size: 11px;
    color: var(--gray-400);
    display: block;
}

/* Menu */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2px;
    margin: 0; padding: 0;
}
.nav-menu > li > a {
    display: flex;
    align-items: center;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    border-radius: var(--r-sm);
    transition: var(--ease);
    white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a {
    color: var(--red);
    background: rgba(230,57,70,0.07);
}
.nav-cta {
    background: var(--grad-red) !important;
    color: white !important;
    border-radius: var(--r-xl) !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 14px rgba(230,57,70,0.35);
    padding: 9px 20px !important;
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230,57,70,0.5) !important;
    background: var(--grad-red) !important;
    color: white !important;
}
.nav-cta i { animation: bellring 3s ease-in-out infinite; }

@keyframes bellring {
    0%,50%,100% { transform: rotate(0); }
    10%  { transform: rotate(-18deg); }
    20%  { transform: rotate(18deg); }
    30%  { transform: rotate(-12deg); }
    40%  { transform: rotate(12deg); }
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}
.nav-hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--ease);
}

/* WhatsApp Float */
.wa-float {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 9999;
    width: 56px; height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    transition: var(--ease);
    animation: wapulse 2.5s infinite;
}
.wa-float:hover { color: white; transform: scale(1.1); }

@keyframes wapulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
    70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ─── Hero ────────────────────────────────────────── */
.hero {
    background:
        /* Üst katman: kırmızı spotlight sağ üstten */
        radial-gradient(ellipse 60% 80% at 75% 30%, rgba(220,38,38,0.22) 0%, transparent 60%),
        /* Orta: mavi-lacivert derinlik */
        radial-gradient(ellipse 90% 120% at 20% 80%, rgba(14,165,233,0.09) 0%, transparent 55%),
        /* Alt: siyah zemin */
        linear-gradient(160deg, #080c14 0%, #0d1420 35%, #111827 60%, #0c111b 100%);
    position: relative;
    overflow: hidden;
    padding: 90px 0 80px;
    min-height: 88vh;
    display: flex;
    align-items: center;
    isolation: isolate;
}

/* ── Perspektif grid zemin ── */
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 100% 80% at 50% 100%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 100%, black 30%, transparent 100%);
    pointer-events: none;
    transform: perspective(800px) rotateX(30deg) scale(1.4);
    transform-origin: bottom center;
    animation: gridScroll 12s linear infinite;
    opacity: 0.6;
}

@keyframes gridScroll {
    from { background-position: 0 0, 0 0; }
    to   { background-position: 0 -128px, 0 0; }
}

/* ── Yatay ışık çizgisi ── */
.hero::after {
    content: '';
    position: absolute;
    left: -10%; right: -10%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(230,57,70,0) 20%,
        rgba(230,57,70,0.65) 50%,
        rgba(230,57,70,0) 80%,
        transparent 100%
    );
    top: 40%;
    animation: lightSweep 6s ease-in-out infinite;
    pointer-events: none;
    filter: blur(0.5px);
}

@keyframes lightSweep {
    0%   { top: 20%; opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 0.8; }
    100% { top: 85%; opacity: 0; }
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

/* Kırmızı büyük glow — sağ üst */
.hero-blob-1 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(220,38,38,0.28) 0%, rgba(180,20,20,0.1) 50%, transparent 70%);
    top: -250px; right: -200px;
    filter: blur(60px);
    animation: blobDrift1 10s ease-in-out infinite alternate;
}

/* Mavi küçük glow — sol alt */
.hero-blob-2 {
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, rgba(30,80,180,0.08) 50%, transparent 70%);
    bottom: -160px; left: -80px;
    filter: blur(70px);
    animation: blobDrift2 13s ease-in-out infinite alternate;
}

@keyframes blobDrift1 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(-40px, 40px) scale(1.08); }
}
@keyframes blobDrift2 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(30px, -30px) scale(1.1); }
}

/* Yıldız partiküller */
.hero-stars {
    position: absolute; inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-stars::before,
.hero-stars::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(1px 1px at 15% 20%, rgba(255,255,255,0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 30% 50%, rgba(255,255,255,0.4) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 45% 15%, rgba(255,255,255,0.55) 0%, transparent 100%),
        radial-gradient(1px 1px at 60% 70%, rgba(255,255,255,0.35) 0%, transparent 100%),
        radial-gradient(1px 1px at 72% 35%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 85% 10%, rgba(255,255,255,0.45) 0%, transparent 100%),
        radial-gradient(1px 1px at 10% 75%, rgba(255,255,255,0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 55% 85%, rgba(255,255,255,0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 60%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 25% 90%, rgba(255,200,200,0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 78% 88%, rgba(255,255,255,0.35) 0%, transparent 100%),
        radial-gradient(1px 1px at 40% 40%, rgba(255,255,255,0.3) 0%, transparent 100%);
    animation: starTwinkle 4s ease-in-out infinite alternate;
}
.hero-stars::after {
    background-image:
        radial-gradient(1px 1px at 8% 45%, rgba(255,255,255,0.45) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 20% 28%, rgba(230,57,70,0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 38% 62%, rgba(255,255,255,0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 65% 25%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 80% 45%, rgba(255,255,255,0.35) 0%, transparent 100%),
        radial-gradient(1px 1px at 95% 78%, rgba(255,255,255,0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 50% 55%, rgba(230,57,70,0.45) 0%, transparent 100%),
        radial-gradient(1px 1px at 12% 92%, rgba(255,255,255,0.3) 0%, transparent 100%);
    animation: starTwinkle 6s ease-in-out infinite alternate-reverse;
}

@keyframes starTwinkle {
    from { opacity: 0.6; transform: scale(1); }
    to   { opacity: 1; transform: scale(1.02); }
}

/* Diagonal ışık şeridi */
.hero-stripe {
    position: absolute;
    top: -10%; left: -5%;
    width: 3px; height: 200%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(230,57,70,0) 20%,
        rgba(230,57,70,0.4) 50%,
        rgba(230,57,70,0) 80%,
        transparent 100%
    );
    transform: rotate(25deg);
    filter: blur(2px);
    animation: stripeSlide 8s linear infinite;
    pointer-events: none;
    left: 30%;
}
.hero-stripe-2 {
    left: 65%;
    width: 1px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255,255,255,0) 30%,
        rgba(255,255,255,0.12) 50%,
        rgba(255,255,255,0) 70%,
        transparent 100%
    );
    animation: stripeSlide 12s linear infinite reverse;
    animation-delay: -3s;
}

@keyframes stripeSlide {
    from { transform: rotate(25deg) translateY(-50%); }
    to   { transform: rotate(25deg) translateY(50%); }
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 48px;
}
.hero-left  { flex: 1 1 0; min-width: 0; }
.hero-right { width: 360px; flex-shrink: 0; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230,57,70,0.18);
    border: 1px solid rgba(230,57,70,0.35);
    color: #ff8a94;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
}
.hero-h1 {
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 900;
    color: white;
    line-height: 1.12;
    margin-bottom: 18px;
}
.hero-h1 em {
    font-style: normal;
    background: var(--grad-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.72);
    margin-bottom: 32px;
    max-width: 500px;
}
.hero-btns {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}
.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat .num {
    display: block;
    font-family: var(--font-h);
    font-size: 2rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}
.hero-stat .lbl {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
}

/* Emergency card */
.emg-card {
    background: var(--grad-red);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(230,57,70,0.45);
    position: relative;
    overflow: hidden;
}
.emg-card::after {
    content: '';
    position: absolute;
    width: 200%; height: 200%;
    top: -50%; left: -50%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 55%);
    animation: emgshine 4s linear infinite;
}
@keyframes emgshine {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
.emg-icon  { font-size: 3.5rem; margin-bottom: 12px; }
.emg-num   { font-size: 2rem; font-weight: 900; color: white; font-family: var(--font-h); letter-spacing: 0.5px; }
.emg-label { color: rgba(255,255,255,0.8); font-size: 13px; margin-top: 6px; }
.emg-items { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.emg-item {
    background: rgba(255,255,255,0.12);
    border-radius: var(--r-sm);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 13px;
    font-weight: 500;
    text-align: left;
}
.emg-item i { color: var(--orange); font-size: 1rem; }

/* ─── Bölümler ────────────────────────────────────── */
.sec        { padding: 88px 0; }
.sec-sm     { padding: 64px 0; }
.sec-gray   { background: var(--gray-50); }
.sec-dark   { background: var(--grad-hero); }

.sec-head { text-align: center; margin-bottom: 56px; }
.sec-head.left { text-align: left; }

.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(230,57,70,0.08);
    color: var(--red);
    border: 1px solid rgba(230,57,70,0.18);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.sec-title {
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
}
.sec-title .hl { color: var(--red); }
.sec-sub {
    font-size: 1rem;
    color: var(--gray-600);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ─── Butonlar ────────────────────────────────────── */
.btn-r, .btn-o, .btn-w {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: var(--r-xl);
    font-weight: 700;
    font-size: 14.5px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--ease);
    line-height: 1;
    white-space: nowrap;
}
.btn-r {
    background: var(--grad-red);
    color: white;
    box-shadow: 0 4px 18px rgba(230,57,70,0.32);
}
.btn-r:hover { color: white; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(230,57,70,0.48); }
.btn-o {
    background: transparent;
    border-color: rgba(255,255,255,0.38);
    color: white;
}
.btn-o:hover { background: rgba(255,255,255,0.1); color: white; border-color: rgba(255,255,255,0.6); }
.btn-w {
    background: white;
    color: var(--navy);
    box-shadow: var(--shadow-sm);
}
.btn-w:hover { color: var(--red); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ─── Hizmet Kartları ─────────────────────────────── */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }

.svc-card {
    background: white;
    border-radius: var(--r-lg);
    padding: 32px 26px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: var(--ease);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.svc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--ease);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.svc-icon {
    width: 64px; height: 64px;
    background: rgba(230,57,70,0.08);
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem;
    color: var(--red);
    margin-bottom: 20px;
    transition: var(--ease);
}
.svc-card:hover .svc-icon {
    background: var(--grad-red);
    color: white;
    transform: rotate(-6deg) scale(1.08);
}
.svc-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.svc-text  { font-size: 14px; color: var(--gray-600); line-height: 1.7; flex: 1; margin-bottom: 18px; }
.svc-link  {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--red);
    font-weight: 600;
    font-size: 13.5px;
    align-self: flex-start;
    transition: var(--ease);
}
.svc-link:hover { gap: 10px; color: var(--red-dark); }

/* ─── Neden Biz ───────────────────────────────────── */
.feat-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.feat-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    border-radius: var(--r-md);
    transition: var(--ease);
}
.feat-item:hover { background: rgba(230,57,70,0.04); }
.feat-ico {
    width: 48px; height: 48px;
    background: var(--grad-red);
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 1.15rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(230,57,70,0.28);
}
.feat-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.feat-text  { font-size: 14px; color: var(--gray-600); line-height: 1.65; }

/* Stat kutuları */
.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.stat-box {
    background: white;
    border-radius: var(--r-md);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
}
.stat-box i    { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.stat-box .sn  { font-family: var(--font-h); font-size: 1.7rem; font-weight: 900; color: var(--navy); line-height: 1; }
.stat-box .sl  { font-size: 12px; color: var(--gray-400); margin-top: 5px; }

/* ─── Bölge Grid ──────────────────────────────────── */
.rgn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 14px;
}
.rgn-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--r-md);
    padding: 22px 16px;
    text-align: center;
    transition: var(--ease);
    cursor: default;
    position: relative;
    overflow: hidden;
}
.rgn-card::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--grad-red);
    opacity: 0;
    transition: var(--ease);
}
.rgn-card:hover::before { opacity: 1; }
.rgn-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.rgn-card > * { position: relative; z-index: 1; }
.rgn-ico  { font-size: 1.4rem; color: var(--red); margin-bottom: 8px; transition: var(--ease); }
.rgn-name { font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 5px; transition: var(--ease); }
.rgn-pill {
    display: inline-block;
    background: rgba(230,57,70,0.08);
    color: var(--red);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    transition: var(--ease);
}
.rgn-card:hover .rgn-ico,
.rgn-card:hover .rgn-name { color: white; }
.rgn-card:hover .rgn-pill { background: rgba(255,255,255,0.18); color: white; }

/* ─── Blog Kartları ───────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
    background: white;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--ease);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.blog-thumb {
    height: 196px;
    background: var(--grad-hero);
    position: relative;
    overflow: hidden;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.06); }
.blog-thumb-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.8rem; color: rgba(255,255,255,0.25); }
.blog-cat {
    position: absolute; top: 12px; left: 12px;
    background: var(--red); color: white;
    padding: 3px 11px; border-radius: 20px;
    font-size: 11px; font-weight: 700;
}
.blog-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: 12px; color: var(--gray-400); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.blog-meta i { color: var(--red); }
.blog-title {
    font-size: 1rem; font-weight: 700; color: var(--navy);
    line-height: 1.4; margin-bottom: 10px;
    transition: var(--ease);
}
.blog-card:hover .blog-title { color: var(--red); }
.blog-excerpt { font-size: 13.5px; color: var(--gray-600); flex: 1; margin-bottom: 16px; line-height: 1.65; }
.blog-more {
    align-self: flex-start;
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--red); font-weight: 600; font-size: 13px;
    padding: 7px 16px;
    border: 1.5px solid var(--red);
    border-radius: var(--r-xl);
    transition: var(--ease);
}
.blog-more:hover { background: var(--red); color: white; gap: 10px; }

/* ─── CTA Banner ──────────────────────────────────── */
.cta-sec {
    background:
        radial-gradient(ellipse 70% 100% at 50% 50%, rgba(220,38,38,0.28) 0%, transparent 60%),
        radial-gradient(ellipse 100% 80% at 15% 100%, rgba(59,130,246,0.08) 0%, transparent 50%),
        linear-gradient(160deg, #080c14 0%, #0d1420 40%, #111827 70%, #0c111b 100%);
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-sec::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
}
.cta-sec > .ekc { position: relative; z-index: 1; }
.cta-title { font-size: clamp(1.7rem,3.5vw,2.6rem); color: white; font-weight: 900; margin-bottom: 14px; }
.cta-title em { font-style: normal; color: var(--orange); }
.cta-sub   { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 36px; }
.cta-group { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-phone {
    display: inline-flex; align-items: center; gap: 12px;
    background: white;
    color: var(--navy) !important;
    padding: 14px 32px;
    border-radius: var(--r-xl);
    font-size: 1.35rem; font-weight: 900; font-family: var(--font-h);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    transition: var(--ease);
}
.cta-phone:hover { transform: translateY(-3px) scale(1.02); color: var(--red) !important; }
.cta-phone i { color: var(--red); }

/* ─── Page Hero ───────────────────────────────────── */
.pg-hero {
    background:
        radial-gradient(ellipse 50% 100% at 80% 50%, rgba(220,38,38,0.18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 10% 80%, rgba(59,130,246,0.07) 0%, transparent 55%),
        linear-gradient(160deg, #080c14 0%, #0d1420 40%, #111827 70%, #0c111b 100%);
    padding: 72px 0 52px;
    position: relative;
    overflow: hidden;
}

/* İnce grid desen */
.pg-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.7;
}

/* Kırmızı accent çizgi — sol kenar */
.pg-hero::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent 0%, var(--red) 40%, var(--red) 60%, transparent 100%);
    opacity: 0.6;
}
.pg-hero > .ekc { position: relative; z-index: 1; }
.pg-h1    { font-size: clamp(1.7rem, 4vw, 2.8rem); color: white; font-weight: 900; margin-bottom: 10px; }
.pg-sub   { color: rgba(255,255,255,0.68); font-size: 15px; }
.breadcrumb {
    display: flex; align-items: center; gap: 6px;
    margin-top: 18px; list-style: none; padding: 0;
    font-size: 13px; flex-wrap: wrap;
}
.breadcrumb li { color: rgba(255,255,255,0.55); }
.breadcrumb li a { color: rgba(255,255,255,0.75); }
.breadcrumb li a:hover { color: white; }
.breadcrumb .active { color: var(--orange); font-weight: 600; }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* ─── İletişim ────────────────────────────────────── */
.contact-card {
    background: white;
    border-radius: var(--r-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    height: 100%;
}
.contact-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
}
.contact-item:last-child { border-bottom: none; }
.contact-ico {
    width: 42px; height: 42px;
    background: rgba(230,57,70,0.09);
    border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--red); font-size: 1rem;
    flex-shrink: 0;
}
.contact-lbl { font-size: 11px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.contact-val { font-weight: 700; color: var(--navy); font-size: 14.5px; margin-top: 2px; }
.contact-val a { color: var(--navy); }
.contact-val a:hover { color: var(--red); }

.form-card {
    background: white;
    border-radius: var(--r-lg);
    padding: 34px;
    box-shadow: var(--shadow-md);
}
.form-title { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.form-sub   { font-size: 13.5px; color: var(--gray-400); margin-bottom: 24px; }

.form-row      { display: flex; gap: 16px; flex-wrap: wrap; }
.form-row .fg  { flex: 1; min-width: 200px; }
.fg            { margin-bottom: 18px; }
.fg label      { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.fg .req       { color: var(--red); }
.fg input,
.fg textarea,
.fg select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--r-md);
    font-family: var(--font);
    font-size: 14.5px;
    color: var(--gray-800);
    background: var(--gray-50);
    transition: var(--ease);
    outline: none;
    resize: vertical;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
    border-color: var(--red);
    background: white;
    box-shadow: 0 0 0 4px rgba(230,57,70,0.09);
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--gray-400); }

.alert-ok {
    display: flex; align-items: center; gap: 12px;
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: var(--r-sm);
    padding: 14px 18px;
    margin-bottom: 20px;
    color: #166534;
    font-weight: 500;
    font-size: 14px;
}
.alert-err {
    display: flex; align-items: flex-start; gap: 12px;
    background: #fff1f2;
    border: 1px solid #fca5a5;
    border-radius: var(--r-sm);
    padding: 14px 18px;
    margin-bottom: 20px;
    color: #991b1b;
    font-size: 14px;
}

/* ─── Footer ──────────────────────────────────────── */
.footer {
    background:
        linear-gradient(180deg, rgba(220,38,38,0.06) 0%, transparent 5%),
        #060912;
    padding-top: 66px;
    border-top: 1px solid rgba(220,38,38,0.25);
    position: relative;
}
.footer::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
    opacity: 0.5;
}
.footer > .ekc { position: relative; z-index: 1; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.7fr;
    gap: 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-ico-wrap {
    width: 48px; height: 48px;
    background: var(--grad-red);
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.3rem;
    margin-bottom: 12px;
}
.footer-name { font-family: var(--font-h); font-weight: 800; color: white; font-size: 1rem; }
.footer-tag  { font-size: 11px; color: rgba(255,255,255,0.38); margin-bottom: 14px; }
.footer-desc { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 16px; }

.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.07);
    border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    transition: var(--ease);
}
.footer-socials a:hover { background: var(--red); color: white; transform: translateY(-2px); }

.footer-col-title {
    font-size: 14px; font-weight: 700; color: white;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--red);
    display: inline-block;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links li a {
    color: rgba(255,255,255,0.55);
    font-size: 13.5px;
    display: flex; align-items: center; gap: 8px;
    transition: var(--ease);
}
.footer-links li a i { font-size: 10px; color: var(--red); }
.footer-links li a:hover { color: var(--red); padding-left: 4px; }

.footer-contacts { list-style: none; padding: 0; }
.footer-contacts li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 13.5px;
    color: rgba(255,255,255,0.6);
}
.footer-contacts li:last-child { border-bottom: none; }
.footer-contacts i { color: var(--red); font-size: 13px; margin-top: 3px; flex-shrink: 0; }
.footer-contacts a { color: rgba(255,255,255,0.6); }
.footer-contacts a:hover { color: var(--red); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    margin-top: 52px;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--red); }

.footer-credit {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.3);
    font-size: 12px;
}

/* ── İkon: kırmızı nabız ── */
.footer-credit-icon {
    color: var(--red);
    animation: iconPulse 2.4s ease-in-out infinite;
    display: inline-block;
    font-size: 13px;
}
@keyframes iconPulse {
    0%,100% { text-shadow: 0 0 0 rgba(230,57,70,0); transform: scale(1); }
    50%      { text-shadow: 0 0 10px rgba(230,57,70,0.8), 0 0 20px rgba(230,57,70,0.4); transform: scale(1.18); }
}

.footer-credit-label { color: rgba(255,255,255,0.28); }

/* ── Link: shimmer gradient ── */
.footer-credit-link {
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 0.4px;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.5) 0%,
        rgba(220,38,38,0.9)  40%,
        rgba(255,255,255,0.5) 80%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 3.5s linear infinite;
    transition: var(--ease);
    text-decoration: none !important;
    border-bottom: 1px solid rgba(220,38,38,0.3);
    padding-bottom: 1px;
}
.footer-credit-link:hover {
    animation-play-state: paused;
    -webkit-text-fill-color: transparent;
    border-bottom-color: var(--red);
    filter: brightness(1.3);
}
@keyframes shimmerText {
    from { background-position: 200% center; }
    to   { background-position: -200% center; }
}

/* ── Cursor yanıp sönme ── */
.footer-cursor {
    display: inline-block;
    color: var(--red);
    font-weight: 400;
    margin-left: 1px;
    animation: cursorBlink 0.85s step-end infinite;
    -webkit-text-fill-color: var(--red);
}
@keyframes cursorBlink {
    0%,100% { opacity: 1; }
    50%      { opacity: 0; }
}


/* ─── Hakkımızda imaj ─────────────────────────────── */
.about-img { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
    position: absolute; bottom: -18px; right: -18px;
    background: var(--grad-red);
    border-radius: var(--r-md);
    padding: 18px 22px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 28px rgba(230,57,70,0.4);
}
.about-badge .bn { font-size: 2.2rem; font-weight: 900; display: block; line-height: 1; }
.about-badge .bt { font-size: 11px; opacity: 0.88; }

/* Değer listesi */
.value-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    margin: 20px 0;
}
.value-item {
    display: flex; align-items: center; gap: 10px;
    font-weight: 600; font-size: 13.5px; color: var(--navy);
}
.value-item .vi {
    width: 26px; height: 26px;
    background: rgba(230,57,70,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--red); font-size: 11px;
    flex-shrink: 0;
}

/* Misyon/Vizyon Card */
.mv-card {
    background: white;
    border-radius: var(--r-lg);
    padding: 32px 26px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-bottom: 4px solid;
    height: 100%;
}
.mv-ico {
    width: 64px; height: 64px;
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
    margin: 0 auto 18px;
}
.mv-title { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.mv-text  { font-size: 14px; color: var(--gray-600); line-height: 1.75; }

/* ─── Galeri / Video ──────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
    gap: 18px;
}
.gal-item {
    border-radius: var(--r-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    background: var(--gray-200);
    cursor: zoom-in;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.gal-item:hover img { transform: scale(1.07); }
.gal-overlay {
    position: absolute; inset: 0;
    background: rgba(15,23,42,0.68);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    opacity: 0; transition: var(--ease);
    color: white; gap: 8px;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay i { font-size: 2rem; }
.gal-overlay span { font-size: 13px; font-weight: 600; }

.video-wrap {
    border-radius: var(--r-md);
    overflow: hidden;
    aspect-ratio: 16/9;
}
.video-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ─── Yardım kutusu (sidebar) ─────────────────────── */
.help-box {
    background: var(--grad-red);
    border-radius: var(--r-lg);
    padding: 28px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 32px rgba(230,57,70,0.35);
    margin-bottom: 20px;
}
.help-box i { font-size: 2.4rem; margin-bottom: 12px; display: block; }
.help-box-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.help-box-num   { font-size: 1.35rem; font-weight: 900; color: white; display: block; margin-bottom: 14px; }
.help-box-wa {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: rgba(255,255,255,0.18);
    border-radius: 30px;
    padding: 9px 18px;
    color: white;
    font-weight: 700;
    font-size: 13.5px;
    transition: var(--ease);
}
.help-box-wa:hover { background: rgba(255,255,255,0.28); color: white; }

/* ─── Animasyonlar ────────────────────────────────── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeRight{ from { opacity:0; transform:translateX(28px); } to { opacity:1; transform:translateX(0); } }
.fade-up    { animation: fadeUp    0.7s ease both; }
.fade-right { animation: fadeRight 0.75s ease both; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s;  }
.delay-3 { animation-delay: 0.45s; }

/* ─── Yardımcılar ─────────────────────────────────── */
.text-center { text-align: center; }
.mt-8   { margin-top: 8px; }
.mt-16  { margin-top: 16px; }
.mt-24  { margin-top: 24px; }
.mt-32  { margin-top: 32px; }
.mt-48  { margin-top: 48px; }
.mb-8   { margin-bottom: 8px; }
.mb-16  { margin-bottom: 16px; }
.mb-24  { margin-bottom: 24px; }
.mb-32  { margin-bottom: 32px; }
.gap-12 { gap: 12px; }
.dflex  { display: flex; }
.acenter{ align-items: center; }
.jcenter{ justify-content: center; }
.fwrap  { flex-wrap: wrap; }
.col-red { color: var(--red); }
.fw-9   { font-weight: 900; }

/* ─── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-right { width: 300px; }
    .hero-h1 { font-size: 2.4rem; }
}

@media (max-width: 820px) {
    .hero-inner { flex-direction: column; gap: 40px; }
    .hero-right { width: 100%; max-width: 400px; margin: 0 auto; }
    .hero { min-height: auto; padding: 70px 0 60px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-menu   { display:none; }
    .nav-hamburger { display: flex; }
    .nav-menu.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px; left: 0; right: 0;
        background: white;
        padding: 12px 0 20px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        z-index: 999;
    }
    .nav-menu.open > li > a { padding: 12px 24px; }
    .sitenav { position: relative; }
    .topbar-contacts .hide-sm { display: none; }

    .sec { padding: 60px 0; }
    .hero { padding: 56px 0 48px; }
    .hero-badge { margin-bottom: 14px; }
    .hero-h1 { font-size: 1.85rem; }
    .hero-btns { flex-direction: column; align-items: flex-start; }
    .hero-stats { gap: 20px; }
    .stat-grid { grid-template-columns: 1fr 1fr; }
    .cta-phone { font-size: 1.1rem; padding: 12px 24px; }
    .about-badge { position: static; display: inline-block; margin-top: 14px; }
    .contact-card { height: auto; }
}

@media (max-width: 560px) {
    .ekc { padding: 0 16px; }
    .sec { padding: 48px 0; }
    .svc-grid, .blog-grid { grid-template-columns: 1fr; }
    .rgn-grid { grid-template-columns: repeat(2,1fr); }
    .value-list { grid-template-columns: 1fr; }
    .stat-grid { grid-template-columns: 1fr 1fr; }
    .form-row .fg { min-width: 100%; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { text-align: center; justify-content: center; }
    .hero-stats .hero-stat:last-child { display: none; }
    .wa-float { bottom: 20px; right: 16px; }
}
