/*
 * organic.css
 * Webioo — Organik SEO Sayfaları Design System
 * Bağımlılık: main.min.css (site ana CSS), Bootstrap 5, Bootstrap Icons
 * NOT: Bu dosya main.css'den SONRA yüklenir ve override eder.
 */

/* ═══════════════════════════════════════════════════════════
   0. ANA SİTE main.css İLE BİRLİKTE ÇALIŞIR
   Bu dosya main.css'den SONRA yüklenir.
   Sadece organik SEO sayfalarına özel stiller barındırır.
   Navbar, footer, mobil menü gibi bileşenler ana sitenin
   header.php / footer.php dosyalarından gelir.
═══════════════════════════════════════════════════════════ */

/* ── Inline Kaynakça (Yazı içi Info İkonu) ──────────────── */
.inline-source-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(0, 35, 90, 0.1);
    color: #00235a;
    font-size: 0.75rem;
    margin-left: 4px;
    vertical-align: super;
    /* Yazının hafif üstünde durması için (Wikipedia gibi) */
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.inline-source-icon:hover {
    background-color: #00235a;
    color: #fff;
    transform: scale(1.1);
}

/* ── FAQ Form Kartı Tasarımı ──────────────── */
.organic-faq-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 35, 90, 0.08);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.organic-faq-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00235a 0%, #2563eb 100%);
}

.organic-faq-form-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
}

.organic-faq-form-card p {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 24px;
}

/* ── Dekoratif CSS Şekilleri (Performanslı) ──────────────── */
.organic-shape {
    position: absolute;
    filter: blur(60px);
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    animation: drift 15s infinite alternate ease-in-out;
}

.organic-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: #e0e7ff;
    /* Açık mavi */
    top: -100px;
    left: -100px;
}

.organic-shape.shape-2 {
    width: 250px;
    height: 250px;
    background: #dbeafe;
    bottom: -50px;
    right: -100px;
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

/* İçeriklerin üstte kalması için main tagi z-index ayarı */
.organic-section {
    position: relative;
    z-index: 1;
}

.organic-section .container {
    position: relative;
    z-index: 2;
}

/* ── Inline Style Migration Utilities ──────────────── */
.organic-hidden-fallback {
    display: none;
}

.organic-layered-container {
    position: relative;
    z-index: 2;
}

.organic-radius-10 {
    border-radius: 10px;
}

.organic-radius-12 {
    border-radius: 12px;
}

.organic-honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
    height: 0;
    width: 0;
    padding: 0;
    border: 0;
}

.organic-floating-contact-bar {
    z-index: 11;
    position: fixed;
    bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 10px;
}

.organic-floating-phone {
    left: 25px;
    position: fixed;
    bottom: 30px;
}

.organic-phone-icon-rotated {
    transform: rotate(90deg);
}

.organic-footer-logo-invert {
    filter: invert(1);
}

.organic-message-textarea {
    height: 100px;
}

.organic-support-label {
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* SSS Alanı Layout Ayarlamaları */
.organic-faq-list .organic-faq-item {
    background: #fff;
    margin-bottom: 12px;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
}


/* ── Landing Page Pricing Uyumu ───────────────────────── */
/* Bu stiller landing.css'deki .lp-pricing-card stillerini
   kopyalar; böylece landing.css import etmeye gerek kalmaz. */
.lp-pricing-card {
    background: #ffffff;
    border: 1px solid rgba(0, 35, 90, 0.08);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 35, 90, 0.03);
}

.lp-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    border-radius: 24px 24px 0 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.lp-pricing-card:hover {
    box-shadow: 0 20px 40px rgba(0, 35, 90, 0.08);
    transform: translateY(-8px);
}

.lp-pricing-card:hover::before {
    opacity: 1;
}

/* ── Popular Card — Premium Dark ── */
.lp-pricing-card.is-popular {
    background: linear-gradient(165deg, #001233 0%, #00235a 50%, #003380 100%);
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 24px 60px rgba(0, 35, 90, 0.25);
}

.lp-pricing-card.is-popular::before {
    display: none !important;
}

.lp-pricing-card.is-popular:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 30px 70px rgba(0, 35, 90, 0.35);
}

.lp-pricing-card.is-popular .lp-pricing-title,
.lp-pricing-card.is-popular .lp-pricing-subtitle,
.lp-pricing-card.is-popular .lp-price-old,
.lp-pricing-card.is-popular .lp-price-current,
.lp-pricing-card.is-popular .lp-pricing-features li {
    color: #fff;
}

.lp-pricing-card.is-popular .lp-pricing-features .bi-check2-circle {
    color: #22c55e;
}

.badge-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #06b6d4 0%, #2563eb 100%);
    color: #fff;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.35);
    letter-spacing: 0.3px;
    z-index: 10;
}

.is-popular .badge-popular {
    background: linear-gradient(135deg, #06b6d4 0%, #2563eb 100%);
}

.lp-discount-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #dc2626;
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.lp-pricing-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: #1e293b;
}

.lp-pricing-subtitle {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 12px;
}

.lp-price-wrap {
    margin-bottom: 20px;
}

.lp-price-old {
    font-size: 1rem;
    color: #94a3b8;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.lp-price-current {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
    letter-spacing: -1.5px;
    margin-bottom: 8px;
}

.is-popular .lp-price-current {
    color: #ffffff;
}

.lp-campaign-label {
    display: block;
    margin-top: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #dc2626;
}

.is-popular .lp-campaign-label {
    color: #fca5a5;
}

.lp-btn-call {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.lp-pricing-card:not(.is-popular) .lp-btn-call {
    background: #f1f5f9;
    color: #1e293b;
}

.lp-pricing-card:not(.is-popular) .lp-btn-call:hover {
    background: #e2e8f0;
}

.is-popular .lp-btn-call {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.is-popular .lp-btn-call:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lp-pricing-divider {
    border-color: rgba(0, 0, 0, 0.08);
    margin: 24px 0;
}

.is-popular .lp-pricing-divider {
    border-color: rgba(255, 255, 255, 0.15);
}

.lp-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.lp-pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #475569;
    font-weight: 500;
}

.lp-pricing-features .bi-check2-circle {
    color: #22c55e;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.lp-btn-primary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.lp-btn-primary:hover {
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
    color: #ffffff;
}

.is-popular .lp-btn-primary {
    background: linear-gradient(135deg, #06b6d4 0%, #2563eb 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.is-popular .lp-btn-primary:hover {
    background: linear-gradient(135deg, #0891b2 0%, #1d4ed8 100%);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.5);
}

@media (max-width: 767.98px) {
    .lp-pricing-card.is-popular {
        transform: none;
    }

    .lp-pricing-card.is-popular:hover {
        transform: translateY(-6px);
    }
}

/* ── Taksit Badge CSS ── */
.lp-taksit-badge {
    background: transparent;
    color: #198754;
    border: 1px solid #1c9b60;
    padding: 6px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.92rem;
    display: block;
    text-align: center;
}

.is-popular .lp-taksit-badge {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #4ade80;
}

.lp-taksit-note {
    font-size: 0.82rem;
    color: #6c757d;
    margin-top: 8px;
    line-height: 1.4;
    text-align: center;
}

.is-popular .lp-taksit-note {
    color: rgba(255, 255, 255, 0.6);
}



/* ═══════════════════════════════════════════════════════════
   0. FONT FACE (Satoshi — Mevcut site ile aynı kaynak)
═══════════════════════════════════════════════════════════ */

/* Satoshi dosyaları zaten /tema/site/assets/fonts/satoshi/ konumunda */

/* ═══════════════════════════════════════════════════════════
   1. DESIGN TOKENS
═══════════════════════════════════════════════════════════ */
:root {
    /* Birincil renkler */
    --primary: #00235a;
    --primary-dark: #001a45;
    --primary-light: #003380;

    /* İkincil */
    --secondary: #1f2b45;
    --secondary-light: #3e5285;

    /* Arka planlar */
    --bg-white: #ffffff;
    --bg-gray: #f8fafc;
    --bg-light: #f1f5f9;

    /* Metin */
    --text-dark: #1e293b;
    --text-body: #475569;
    --text-muted: #94a3b8;
    --text-white: #ffffff;

    /* Vurgu */
    --accent-green: #22c55e;
    --accent-whatsapp: #25d366;
    --accent-orange: #f97316;

    /* Sınır */
    --border-light: #e2e8f0;
    --border-divider: #f1f5f9;

    /* Gölgeler */
    --shadow-sm: 0 1px 3px rgba(0, 35, 90, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 35, 90, 0.10);
    --shadow-lg: 0 10px 30px rgba(0, 35, 90, 0.12);
    --shadow-card: 0 2px 8px rgba(0, 35, 90, 0.06);

    /* Gradyanlar */
    --gradient-primary: linear-gradient(135deg, #00235a 0%, #003380 100%);
    --gradient-hero: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    --gradient-cta: linear-gradient(135deg, #00235a 0%, #1f2b45 50%, #003380 100%);
    --gradient-badge: linear-gradient(90deg, #00235a, #3e5285);

    /* Font */
    --font-base: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Geçiş */
    --transition-base: all 0.3s ease;

    /* Organik hero viewport fit */
    --organic-header-offset: 135px;
    --organic-hero-scale: 1;
}

/* ═══════════════════════════════════════════════════════════
   2. BASE
═══════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-base);
    color: var(--text-body);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-base);
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.2;
}

h2 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
    color: var(--text-body);
}

@media (min-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.375rem;
    }
}

@media (min-width: 1200px) {
    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2rem;
    }
}

a {
    color: var(--primary-light);
    transition: var(--transition-base);
}

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

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

/* ═══════════════════════════════════════════════════════════
   3. LAYOUT — Section & Container
═══════════════════════════════════════════════════════════ */
.organic-section {
    padding: 60px 0;
}

@media (min-width: 768px) {
    .organic-section {
        padding: 80px 0;
    }
}

@media (min-width: 1200px) {
    .organic-section {
        padding: 100px 0;
    }
}

.organic-bg-white {
    background: var(--bg-white);
}

.organic-bg-gray {
    background: var(--bg-gray);
}

/* ═══════════════════════════════════════════════════════════
   4. HEADER
═══════════════════════════════════════════════════════════ */
.organic-header .navbar {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(8px);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

/* ═══════════════════════════════════════════════════════════
   5. HERO — Premium Blue Gradient (Full Viewport)
═══════════════════════════════════════════════════════════ */
.organic-hero {
    background: linear-gradient(-45deg, #000d1f, #001845, #002366, #001233, #000a1a);
    background-size: 400% 400%;
    animation: fluidMesh 20s ease infinite;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    padding: 0;
    min-height: 500px;
}

@keyframes fluidMesh {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Tablet ve Desktop: Kampanya + Navbar altındaki alana breadcrumb dahil hero tam sığsın */
@media (min-width: 768px) {
    .organic-hero {
        min-height: 0;
        height: calc(100svh - var(--organic-header-offset, 135px));
        max-height: calc(100svh - var(--organic-header-offset, 135px));
        display: flex;
        align-items: stretch;
        overflow: hidden;
    }

    .organic-hero .hero-container {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: calc(18px * var(--organic-hero-scale, 1));
        padding-bottom: calc(20px * var(--organic-hero-scale, 1));
    }

    .organic-hero .hero-breadcrumb {
        margin-bottom: calc(20px * var(--organic-hero-scale, 1));
        flex: 0 0 auto;
    }

    .organic-hero .hero-breadcrumb ol {
        font-size: clamp(0.72rem, calc(0.82rem * var(--organic-hero-scale, 1)), 0.92rem);
    }

    .organic-hero .hero-breadcrumb a,
    .organic-hero .hero-breadcrumb li.active {
        padding: calc(4px * var(--organic-hero-scale, 1)) calc(12px * var(--organic-hero-scale, 1));
    }

    .organic-hero .hero-row {
        flex: 1 1 auto;
        min-height: 0;
        align-items: center;
    }

    .organic-hero .hero-text-col {
        padding-top: calc(14px * var(--organic-hero-scale, 1));
        padding-bottom: calc(14px * var(--organic-hero-scale, 1));
    }

    .organic-hero .hero-image-col {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding-top: 0;
    }

    .organic-hero .hero-image-wrapper {
        max-width: calc(560px * var(--organic-hero-scale, 1));
    }

    .organic-hero .hero-image-frame {
        border-radius: calc(20px * var(--organic-hero-scale, 1));
    }

    .organic-hero .hero-main-img {
        max-height: calc(500px * var(--organic-hero-scale, 1));
        width: auto;
        max-width: 100%;
        height: auto;
        aspect-ratio: auto;
        object-fit: contain;
    }

    .organic-hero .hero-title {
        font-size: clamp(1.28rem, calc((2.90rem + 0.62vw) * var(--organic-hero-scale, 1)), 4.7rem) !important;
        margin-bottom: calc(12px * var(--organic-hero-scale, 1)) !important;
        line-height: 1.12;
    }

    .organic-hero .hero-subtitle {
        font-size: clamp(0.92rem, calc(1.08rem * var(--organic-hero-scale, 1)), 1.22rem);
        margin-bottom: calc(24px * var(--organic-hero-scale, 1));
        line-height: 1.5;
        max-width: calc(520px * var(--organic-hero-scale, 1));
    }

    .organic-hero .hero-badge {
        margin-bottom: calc(18px * var(--organic-hero-scale, 1));
        padding: calc(7px * var(--organic-hero-scale, 1)) calc(18px * var(--organic-hero-scale, 1));
        font-size: clamp(0.68rem, calc(0.78rem * var(--organic-hero-scale, 1)), 0.86rem);
        gap: calc(8px * var(--organic-hero-scale, 1));
    }

    .organic-hero .hero-badge-dot {
        width: calc(7px * var(--organic-hero-scale, 1));
        height: calc(7px * var(--organic-hero-scale, 1));
    }

    .organic-hero .hero-cta-group {
        margin-bottom: calc(26px * var(--organic-hero-scale, 1));
        gap: calc(10px * var(--organic-hero-scale, 1));
    }

    .organic-hero .hero-btn-primary,
    .organic-hero .hero-btn-whatsapp {
        padding-top: calc(13px * var(--organic-hero-scale, 1));
        padding-bottom: calc(13px * var(--organic-hero-scale, 1));
        font-size: clamp(0.88rem, calc(0.98rem * var(--organic-hero-scale, 1)), 1.08rem);
        border-radius: calc(12px * var(--organic-hero-scale, 1));
        gap: calc(8px * var(--organic-hero-scale, 1));
    }

    .organic-hero .hero-btn-primary {
        padding-left: calc(28px * var(--organic-hero-scale, 1));
        padding-right: calc(28px * var(--organic-hero-scale, 1));
    }

    .organic-hero .hero-btn-whatsapp {
        padding-left: calc(24px * var(--organic-hero-scale, 1));
        padding-right: calc(24px * var(--organic-hero-scale, 1));
    }

    .organic-hero .hero-stats-row {
        gap: calc(14px * var(--organic-hero-scale, 1));
        padding-top: calc(20px * var(--organic-hero-scale, 1));
    }

    .organic-hero .hero-stat-item {
        padding: calc(10px * var(--organic-hero-scale, 1)) calc(15px * var(--organic-hero-scale, 1));
        min-width: calc(85px * var(--organic-hero-scale, 1));
        border-radius: calc(12px * var(--organic-hero-scale, 1));
    }

    .organic-hero .hero-stat-value {
        font-size: clamp(1.12rem, calc(1.45rem * var(--organic-hero-scale, 1)), 1.72rem);
        margin-bottom: calc(4px * var(--organic-hero-scale, 1));
    }

    .organic-hero .hero-stat-label {
        font-size: clamp(0.66rem, calc(0.74rem * var(--organic-hero-scale, 1)), 0.8rem);
    }

    .organic-hero .hero-float-bar {
        gap: calc(10px * var(--organic-hero-scale, 1));
        margin-top: calc(14px * var(--organic-hero-scale, 1));
        flex-wrap: wrap;
    }

    .organic-hero .hero-float-card {
        gap: calc(6px * var(--organic-hero-scale, 1));
        padding: calc(7px * var(--organic-hero-scale, 1)) calc(12px * var(--organic-hero-scale, 1));
        font-size: clamp(0.7rem, calc(0.78rem * var(--organic-hero-scale, 1)), 0.84rem);
        border-radius: calc(10px * var(--organic-hero-scale, 1));
    }

    .organic-hero .hero-float-card i {
        font-size: calc(0.9rem * var(--organic-hero-scale, 1));
    }
}

/* ── Hero Background Layer ─── */
.hero-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Animated Orb Lights */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    will-change: transform;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #0055ff 0%, transparent 70%);
    top: -10%;
    left: -5%;
    animation: orbFloat1 18s ease-in-out infinite alternate;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #0077ff 0%, transparent 70%);
    bottom: -15%;
    right: -5%;
    animation: orbFloat2 22s ease-in-out infinite alternate;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #3399ff 0%, transparent 70%);
    top: 40%;
    right: 30%;
    animation: orbFloat3 15s ease-in-out infinite alternate;
    opacity: 0.25;
}

@keyframes orbFloat1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(60px, 40px) scale(1.15);
    }
}

@keyframes orbFloat2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-50px, -30px) scale(1.1);
    }
}

@keyframes orbFloat3 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, -40px) scale(0.9);
    }
}

/* Animated Mesh Gradient Overlay */
.hero-mesh-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(0, 85, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 119, 255, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(51, 153, 255, 0.08) 0%, transparent 60%);
    animation: meshShift 12s ease-in-out infinite alternate;
}

@keyframes meshShift {
    0% {
        opacity: 0.6;
        transform: scale(1) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.05) rotate(1deg);
    }

    100% {
        opacity: 0.7;
        transform: scale(0.98) rotate(-1deg);
    }
}

/* Subtle Grid Pattern Overlay */
.hero-grid-pattern {
    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: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
}

/* ── Hero Container ─── */
.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 24px;
    padding-bottom: 40px;
}

@media (min-width: 992px) {
    .hero-container {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

/* ── Hero Breadcrumb (Internal Links) ─── */
.hero-breadcrumb {
    margin-bottom: 24px;
}

.hero-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.82rem;
}

.hero-breadcrumb li {
    display: flex;
    align-items: center;
}

.hero-breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 6px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 1rem;
}

.hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.hero-breadcrumb a:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-breadcrumb li.active {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    padding: 4px 12px;
}

/* ── Hero Row Layout ─── */
.hero-row {
    min-height: 0;
}

@media (min-width: 992px) {
    .hero-row {
        gap: 0;
    }
}

/* ── Hero Text Column ─── */
.hero-text-col {
    padding-top: 20px;
    padding-bottom: 20px;
}

@media (min-width: 992px) {
    .hero-text-col {
        padding-right: 48px;
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #7db8ff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    animation: dotPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

/* Hero Title */
.hero-title {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.1rem;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 2.35rem;
    }
}

@media (min-width: 1400px) {
    .hero-title {
        font-size: 2.6rem;
    }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
    max-width: 520px;
}

@media (min-width: 992px) {
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* ── Hero CTA Buttons ─── */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35), 0 0 0 0 rgba(37, 99, 235, 0.4);
    animation: ctaPulse 3s ease-in-out infinite;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.5);
    color: #ffffff;
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35), 0 0 0 0 rgba(37, 99, 235, 0.3);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35), 0 0 0 10px rgba(37, 99, 235, 0);
    }
}

/* CTA Shine sweep effect */
.hero-btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: btnShineSweep 4s ease-in-out infinite;
}

@keyframes btnShineSweep {
    0% {
        left: -100%;
    }

    20%,
    100% {
        left: 100%;
    }
}

.hero-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: rgba(37, 211, 102, 0.15);
    color: #4ade80;
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn-whatsapp:hover {
    background: #25d366;
    color: #ffffff;
    border-color: #25d366;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* ── Hero Stats Row ─── */
.hero-stats-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    min-width: 85px;
    transition: all 0.3s ease;
}

.hero-stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.hero-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* ── Hero Image Column ─── */
.hero-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
}

@media (min-width: 992px) {
    .hero-image-col {
        padding-top: 0;
        padding-left: 24px;
    }
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 560px;
}

/* Glow behind image */
.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

.hero-image-frame {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    animation: heroImgFloat 6s ease-in-out infinite;
    will-change: transform;
}

.hero-main-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

@keyframes heroImgFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-14px) rotate(0.5deg);
    }
}

/* ── Floating Accent Bar (below image) ─── */
.hero-float-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    position: relative;
    z-index: 3;
}

.hero-float-card {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.hero-float-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-float-card i {
    font-size: 0.9rem;
    color: #60a5fa;
}

/* Hide float bar on very small screens */
@media (max-width: 575.98px) {
    .hero-float-bar {
        flex-wrap: wrap;
        gap: 8px;
    }

    .hero-float-card {
        font-size: 0.72rem;
        padding: 6px 10px;
    }
}

/* ── Hero Mobil Responsive ─── */
@media (max-width: 575.98px) {
    .organic-hero {
        min-height: auto;
        padding: 0;
    }

    .hero-container {
        padding-top: 16px;
        padding-bottom: 30px;
    }

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

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

    .hero-cta-group {
        flex-direction: column;
    }

    .hero-btn-primary,
    .hero-btn-whatsapp {
        justify-content: center;
        width: 100%;
    }

    .hero-stats-row {
        gap: 8px;
    }

    .hero-stat-item {
        min-width: 75px;
        padding: 10px 12px;
    }

    .hero-stat-value {
        font-size: 1.2rem;
    }

    .hero-breadcrumb {
        margin-bottom: 16px;
    }

    .hero-breadcrumb ol {
        font-size: 0.75rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   6. BADGE
═══════════════════════════════════════════════════════════ */
.organic-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(0, 35, 90, 0.08);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════════════════
   7. SECTION HEADER
═══════════════════════════════════════════════════════════ */
.organic-section-header {
    margin-bottom: 48px;
}

.organic-section-title {
    margin-bottom: 12px;
}

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

/* ═══════════════════════════════════════════════════════════
   8. FEATURE CARDS (Hizmetler)
═══════════════════════════════════════════════════════════ */
.organic-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 28px 24px;
    transition: var(--transition-base);
    height: 100%;
    text-decoration: none;
    display: block;
}

.organic-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(0, 35, 90, 0.15);
}

.organic-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(0, 35, 90, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 16px;
    transition: var(--transition-base);
}

.organic-card:hover .organic-card-icon {
    background: rgba(0, 35, 90, 0.12);
}

.organic-card h3,
.organic-card h4 {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.organic-card p {
    color: var(--text-body);
    font-size: 0.95rem;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   9. BUTTONS
═══════════════════════════════════════════════════════════ */
.organic-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    cursor: pointer;
}

.organic-btn-primary:hover {
    box-shadow: 0 8px 25px rgba(0, 35, 90, 0.3);
    transform: translateY(-2px);
    color: white;
}

/* Buton Shimmer Efekti */
.btn-glow {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 35, 90, 0.25);
    z-index: 1;
    /* For gradient background on hover */
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg) translate(-100%, -100%);
    animation: shimmerBtn 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

@keyframes shimmerBtn {
    0% {
        transform: rotate(30deg) translate(-100%, -100%);
    }

    20%,
    100% {
        transform: rotate(30deg) translate(100%, 100%);
    }
}

.organic-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #25d366;
    color: #fff;
    border: 2px solid #25d366;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
}

.organic-btn-outline:hover {
    background: #1db954;
    border-color: #1db954;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.organic-btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════
   10. PRICING CARDS
═══════════════════════════════════════════════════════════ */
.organic-pricing-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-base);
}

.organic-pricing-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.organic-pricing-featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

@media (max-width: 767.98px) {
    .organic-pricing-featured {
        transform: none;
    }
}

.organic-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.organic-pricing-header {
    margin-bottom: 24px;
}

.organic-pricing-header h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.organic-pricing-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.organic-pricing-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.organic-pricing-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.organic-pricing-period {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
}

.organic-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
}

.organic-pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-divider);
    font-size: 0.95rem;
    color: var(--text-body);
}

.organic-pricing-features li:last-child {
    border-bottom: none;
}

.organic-pricing-features .bi-check-circle-fill {
    color: var(--accent-green);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   11. FAQ ACCORDION
═══════════════════════════════════════════════════════════ */
.organic-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.organic-faq-item {
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition-base);
}

.organic-faq-item.open {
    border-color: rgba(0, 35, 90, 0.2);
    box-shadow: var(--shadow-sm);
}

.organic-faq-question {
    padding: 18px 24px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-base);
    font-size: 1rem;
    line-height: 1.5;
    transition: var(--transition-base);
}

.organic-faq-question > span:nth-child(2) {
    flex: 1 1 auto;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.organic-faq-question .faq-num,
.organic-faq-question .organic-faq-icon {
    align-self: flex-start;
    margin-top: 2px;
}

.organic-faq-question:hover {
    color: var(--primary);
}

.organic-faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0, 35, 90, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-base);
    font-size: 0.75rem;
    color: var(--primary);
}

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

.organic-faq-answer {
    display: none;
    padding: 0 24px 18px;
    color: var(--text-body);
    line-height: 1.75;
}

.organic-faq-item.open .organic-faq-answer {
    display: block;
}

@media (max-width: 767px) {
    .organic-faq-question {
        padding: 16px 14px;
        gap: 10px;
        font-size: 0.95rem;
    }

    .organic-faq-answer {
        padding: 0 14px 16px;
    }

    .organic-faq-icon {
        width: 22px;
        height: 22px;
        flex: 0 0 22px;
    }

    .faq-num {
        min-width: 30px;
        height: 30px;
    }
}

/* ═══════════════════════════════════════════════════════════
   12. BREADCRUMB
═══════════════════════════════════════════════════════════ */
.organic-breadcrumb {
    padding: 2px 0;
    background: transparent;
}

.organic-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
}

.organic-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
}

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

.organic-breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 6px;
    color: var(--text-muted);
}

.organic-breadcrumb [aria-current] {
    color: var(--primary);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   13. INTERNAL LINKS
═══════════════════════════════════════════════════════════ */
.organic-related-links {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--border-light);
    margin-bottom: 24px;
}

.organic-related-links h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.organic-related-links h3 i {
    color: var(--primary);
}

.organic-link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

@media (min-width: 768px) {
    .organic-link-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

.organic-link-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-gray);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-base);
}

.organic-link-item:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.organic-link-item i {
    color: var(--primary);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.organic-link-parent {
    background: rgba(0, 35, 90, 0.05);
    border-color: rgba(0, 35, 90, 0.15);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   14. CTA BÖLÜMÜ
═══════════════════════════════════════════════════════════ */
.organic-cta {
    background: var(--gradient-cta);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    color: white;
}

@media (max-width: 767.98px) {
    .organic-cta {
        padding: 40px 24px;
    }
}

.organic-cta h2 {
    color: white;
}

.organic-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 32px;
}

.organic-cta-form {
    background: white;
    border-radius: 16px;
    padding: 32px;
    max-width: 680px;
    margin: 0 auto;
    text-align: left;
}

.organic-cta-form .form-control,
.organic-cta-form .form-select {
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.95rem;
    font-family: var(--font-base);
    transition: var(--transition-base);
}

.organic-cta-form .form-control:focus,
.organic-cta-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 35, 90, 0.08);
    outline: none;
}

/* ═══════════════════════════════════════════════════════════
   15. REFERANSLAR (Logo Grid)
═══════════════════════════════════════════════════════════ */
.organic-references-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.organic-reference-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: var(--transition-base);
    min-width: 120px;
    height: 72px;
}

.organic-reference-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: rgba(0, 35, 90, 0.15);
}

.organic-reference-item img {
    max-width: 120px;
    max-height: 40px;
    object-fit: contain;
    filter: grayscale(0.4);
    transition: var(--transition-base);
}

.organic-reference-item:hover img {
    filter: grayscale(0);
}

/* ═══════════════════════════════════════════════════════════
   16. SEO İÇERİK BLOĞU (main_content)
═══════════════════════════════════════════════════════════ */
.organic-content {
    max-width: 860px;
    margin: 0 auto;
}

.organic-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.organic-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.organic-content p {
    margin-bottom: 1.25rem;
}

.organic-content ul,
.organic-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.organic-content li {
    margin-bottom: 0.5rem;
}

.organic-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Kaynakça */
.organic-sources {
    background: var(--bg-gray);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 40px;
    border-left: 3px solid var(--primary);
}

.organic-sources h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.organic-sources ol {
    padding-left: 1.25rem;
    margin: 0;
}

.organic-sources li {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.organic-sources a {
    color: var(--primary-light);
}

/* ═══════════════════════════════════════════════════════════
   17. STATS BAR (Neden Webioo?)
═══════════════════════════════════════════════════════════ */
.organic-stats-bar {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 40px 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 32px;
    text-align: center;
}

.organic-stats-bar .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 6px;
}

.organic-stats-bar .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   18. FLOATING BUTTONS (WhatsApp / Tel)
═══════════════════════════════════════════════════════════ */
.form-call-wrapper {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 25px;
    z-index: 1000;
    cursor: pointer;
    text-align: center;
    line-height: 50px;
}

@media (min-width: 768px) {
    .form-call-wrapper {
        width: 60px;
        height: 60px;
    }
}

.form-call-btn {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 10;
}

/* WhatsApp */
.form-call-wrapper.whatsApp {
    left: 25px;
    right: auto;
}

.form-call-wrapper.whatsApp::after {
    background: var(--accent-whatsapp) !important;
}

.form-call-wrapper.whatsApp .form-call-btn {
    background-color: var(--accent-whatsapp) !important;
}

.form-call-wrapper.whatsApp i {
    color: #fff !important;
    font-size: 26px;
}

/* Telefon */
.form-call-wrapper.phone {
    right: 25px;
}

.form-call-wrapper.phone .form-call-btn {
    background-color: var(--primary) !important;
    color: white;
}

.form-call-wrapper.phone i {
    color: #fff !important;
    font-size: 22px;
    transform: rotate(90deg);
}

/* Pulse animation */
.form-call-wrapper::after,
.form-call-wrapper::before {
    content: '';
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    transition: all 0.5s;
}

.form-call-wrapper.whatsApp::before {
    border: 1px solid var(--accent-whatsapp);
    animation: pulse-ring 3s -0.5s linear infinite;
}

.form-call-wrapper.whatsApp::after {
    animation: pulse-bg 3s linear infinite;
}

@keyframes pulse-bg {
    0% {
        transform: scale(0.7);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.5;
    }

    100% {
        transform: scale(0.7);
        opacity: 0;
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* ═══════════════════════════════════════════════════════════
   19. RESPONSIVE — Yatay Kaydırma Koruma
═══════════════════════════════════════════════════════════ */
@media (max-width: 575.98px) {
    .organic-section {
        padding: 48px 0;
    }

    .organic-prices-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .organic-pricing-featured {
        transform: none;
    }

    .organic-cta {
        padding: 32px 16px;
    }

    .organic-cta-form {
        padding: 24px 16px;
    }

    .organic-related-links {
        padding: 20px 16px;
    }
}

/* ═══════════════════════════════════════════════════════════
   15. BREADCRUMB (Inline Hero)
═══════════════════════════════════════════════════════════ */
.organic-breadcrumb {
    margin-bottom: 20px;
}

.organic-breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.organic-breadcrumb li {
    display: flex;
    align-items: center;
}

.organic-breadcrumb li:not(:last-child)::after {
    content: "›";
    /* chevron */
    margin-left: 8px;
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1;
}

.organic-breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    opacity: 0.8;
    transition: all 0.2s;
    background: rgba(255, 255, 255, 0.5);
    padding: 2px 10px;
    border-radius: 12px;
}

.organic-breadcrumb a:hover {
    color: var(--primary);
    opacity: 1;
    background: rgba(255, 255, 255, 0.9);
}

.organic-breadcrumb li[aria-current="page"] {
    color: var(--text-dark);
    font-weight: 600;
    padding: 2px 10px;
}

/* ═══════════════════════════════════════════════════════════
   16. GLASSMORPHISM UTILITY
═══════════════════════════════════════════════════════════ */
.glass {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
    background: rgba(0, 35, 90, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 35, 90, 0.1);
}

/* ═══════════════════════════════════════════════════════════
   17. HERO UYUMLULUK (eski sınıflar için fallback)
═══════════════════════════════════════════════════════════ */
/* Eski .organic-stat-card stil fallback'i sadece hero dışı alanlar için */
.organic-bg-gray .organic-stat-card,
.organic-bg-white .organic-stat-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 16px rgba(0, 35, 90, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.organic-bg-gray .organic-stat-card:hover,
.organic-bg-white .organic-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 35, 90, 0.12);
}

/* ═══════════════════════════════════════════════════════════
   18. TEKNOLOJİ STACK MARQUEE
═══════════════════════════════════════════════════════════ */
.tech-marquee-wrap {
    overflow: hidden;
    padding: 40px 0;
    position: relative;
}

.tech-marquee-wrap::before,
.tech-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 3;
    pointer-events: none;
}

.tech-marquee-wrap::before {
    left: 0;
    background: linear-gradient(90deg, #fff 0%, transparent 100%);
}

.tech-marquee-wrap::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, #fff 100%);
}

.tech-marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee 25s linear infinite;
    animation-play-state: paused;
    width: max-content;
}

.tech-marquee-wrap.is-visible .tech-marquee-track {
    animation-play-state: running;
}

.tech-marquee-wrap.is-visible:hover .tech-marquee-track {
    animation-play-state: paused;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 140px;
    padding: 24px 20px;
    border-radius: 16px;
    background: var(--bg-gray);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
    cursor: default;
}

.tech-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.tech-item .tech-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 1.4rem;
}

.tech-item .tech-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.tech-item .tech-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.4;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ═══════════════════════════════════════════════════════════
   19. HİZMET KARTLARI (Gelişmiş Glassmorphism)
═══════════════════════════════════════════════════════════ */
.organic-card {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(226, 232, 240, 0.6) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    position: relative;
    overflow: hidden;
}

.organic-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.organic-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 35, 90, 0.12) !important;
    border-color: rgba(0, 51, 128, 0.15) !important;
}

.organic-card:hover::after {
    transform: scaleX(1);
}

.organic-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.organic-card:hover .organic-card-icon {
    transform: scale(1.1);
    animation: icon-pulse 0.6s ease;
}

@keyframes icon-pulse {

    0%,
    100% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(1.2);
    }
}

.organic-card .card-detail {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-top: 0;
    font-size: 0.88rem;
    color: var(--primary-light);
    font-weight: 600;
}

.organic-card:hover .card-detail {
    opacity: 1;
    max-height: 40px;
    margin-top: 12px;
}

/* ═══════════════════════════════════════════════════════════
   20. NASIL ÇALIŞIYORUZ — TİMELINE
═══════════════════════════════════════════════════════════ */
.process-timeline {
    position: relative;
    padding: 20px 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--border-light);
    border-radius: 2px;
    z-index: 0;
}

.process-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: line-fill 2s ease forwards;
    animation-play-state: paused;
}

.process-line-fill.animate {
    animation-play-state: running;
}

@keyframes line-fill {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
    cursor: pointer;
}

.process-step-dot {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--text-muted);
    transition: all 0.4s ease;
    position: relative;
}

.process-step:hover .process-step-dot,
.process-step.active .process-step-dot {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(0, 35, 90, 0.25);
}

.process-step-num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-green);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.process-step:hover h4 {
    color: var(--primary);
}

.process-step p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.process-step:hover p,
.process-step.active p {
    max-height: 80px;
    opacity: 1;
}

/* Timeline mobil */
@media (max-width: 767.98px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .process-line {
        top: 0;
        bottom: 0;
        left: 40px;
        right: auto;
        width: 4px;
        height: auto;
    }

    .process-step {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
        padding: 16px 0;
    }

    .process-step-dot {
        width: 60px;
        height: 60px;
        min-width: 60px;
        margin: 0;
        font-size: 1.3rem;
    }

    .process-step p {
        max-height: 80px;
        opacity: 1;
    }
}

/* ═══════════════════════════════════════════════════════════
   21. TRUST COUNTER BAR
═══════════════════════════════════════════════════════════ */
.trust-counter-bar {
    background: var(--gradient-cta);
    border-radius: 20px;
    padding: 40px 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.trust-counter-bar::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.trust-counter-item {
    text-align: center;
    position: relative;
}

.trust-counter-item::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--accent-green);
    border-radius: 2px;
}

.trust-counter-num {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
    display: block;
}

.trust-counter-label {
    font-size: 0.88rem;
    opacity: 0.8;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .trust-counter-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 28px 20px;
        gap: 28px;
    }

    .trust-counter-num {
        font-size: 2rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   22. NEDEN BİZ — KARŞILAŞTIRMA GRİD
═══════════════════════════════════════════════════════════ */
.comparison-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    position: relative;
    align-items: center;
}

.comparison-card {
    border-radius: 24px;
    padding: 36px 32px;
    position: relative;
    height: 100%;
    transition: var(--transition-base);
}

.card-others {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    color: rgba(255, 255, 255, 0.8);
}

.card-others:hover {
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.card-webioo {
    background: linear-gradient(135deg, #00235a 0%, #003380 100%);
    color: #ffffff;
    box-shadow: 0 16px 40px rgba(0, 35, 90, 0.2);
    transform: scale(1.02);
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-webioo:hover {
    transform: scale(1.04);
}

.card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.card-header h3 {
    margin: 0 0 28px 0;
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.card-others .card-header h3 {
    color: rgba(255, 255, 255, 0.9);
}

.card-webioo .card-header h3 {
    color: #ffffff;
}

.card-others .card-header h3 i {
    color: #dc2626;
}

.card-webioo .card-header h3 i {
    color: #fbbf24;
}

.comparison-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.comparison-row i {
    font-size: 1.25rem;
    line-height: 1;
    margin-top: 2px;
    flex-shrink: 0;
}

.card-others .comparison-row i {
    color: #ef4444;
}

.card-webioo .comparison-row i {
    color: #22c55e;
}

.vs-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 991px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .card-webioo {
        transform: scale(1);
    }

    .card-webioo:hover {
        transform: scale(1);
    }

    .vs-badge {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════
   23. MÜŞTERİ YORUMLARI CAROUSEL
═══════════════════════════════════════════════════════════ */
.testimonials-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 8px 4px 16px;
    scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 280px;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 20px;
    padding: 28px 28px 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.testimonial-stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-body);
    font-style: italic;
    flex: 1;
    /* pushes author to bottom */
    position: relative;
    padding-left: 20px;
    margin-bottom: 20px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -4px;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.testimonial-author-info strong {
    display: block;
    font-size: 0.92rem;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-author-info span {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.testimonials-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border-light);
    background: #fff;
    color: var(--text-dark);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-nav button:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

@media (max-width: 991.98px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 575.98px) {
    .testimonial-card {
        flex: 0 0 85%;
    }
}

/* ═══════════════════════════════════════════════════════════
   24. CTA — ANIMATED GRADIENT + FLOATING SHAPES
═══════════════════════════════════════════════════════════ */
.organic-cta {
    background: linear-gradient(-45deg, #00235a, #003380, #1f2b45, #002a6b) !important;
    background-size: 400% 400% !important;
    animation: gradient-shift 8s ease infinite;
    position: relative;
    overflow: hidden;
    border-radius: 24px !important;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.cta-floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.cta-shape-1 {
    width: 200px;
    height: 200px;
    top: -60px;
    right: -40px;
    animation: float 6s ease-in-out infinite;
}

.cta-shape-2 {
    width: 120px;
    height: 120px;
    bottom: -30px;
    left: 10%;
    animation: float 8s ease-in-out infinite reverse;
}

.cta-shape-3 {
    width: 80px;
    height: 80px;
    top: 30%;
    left: -20px;
    border-radius: 30%;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.organic-cta-form {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 16px !important;
}

/* Shimmer efektli buton */
.btn-shimmer {
    position: relative;
    overflow: hidden;
}

.btn-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* ═══════════════════════════════════════════════════════════
   25. REDUCED MOTION KORUMA
═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

    .tech-marquee-track,
    .process-line-fill,
    .btn-glow,
    .btn-shimmer::after,
    .cta-floating-shape,
    .hero-orb,
    .hero-image-frame,
    .hero-float-card,
    .hero-btn-primary,
    .hero-btn-shine,
    .hero-badge-dot,
    .hero-mesh-gradient,
    .organic-hero,
    .organic-cta-section {
        animation: none !important;
    }

    .organic-card:hover,
    .process-step:hover .process-step-dot,
    .tech-item:hover,
    .testimonial-card:hover,
    .hero-stat-item:hover,
    .hero-btn-primary:hover,
    .hero-btn-whatsapp:hover {
        transform: none !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   KAMPANYA BANNER (header-organic.php ile kullanılır)
═══════════════════════════════════════════════════════════ */
.campaign-banner {
    background: linear-gradient(-45deg, #1f2b45, #1c3a87, #1f2b45, #2a3d66);
    background-size: 400% 400%;
    animation: bannerGradient 15s ease infinite;
    color: white;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

@keyframes bannerGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.campaign-banner .countdown-box {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    padding: 4px 8px;
    text-align: center;
    min-width: 45px;
    transition: transform 0.3s ease;
}

.campaign-banner .countdown-box:hover {
    transform: translateY(-2px);
}

.campaign-banner .countdown-box span {
    display: block;
    font-size: 10px;
    text-transform: capitalize;
    margin-top: 2px;
    color: white;
    font-weight: 400;
}

.campaign-banner .countdown-box strong {
    font-size: 16px;
    font-weight: 700;
    display: block;
    line-height: 1.1;
    color: white;
}

.campaign-banner a {
    color: white;
    text-decoration: none;
}

.btn-campaign-outline {
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 6px 14px;
    color: white !important;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-campaign-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.campaign-text {
    font-size: 14px;
}

@media (max-width: 991px) {
    .campaign-banner {
        padding: 12px 0;
    }

    .campaign-text {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .campaign-banner .countdown-box {
        padding: 2px 5px;
        min-width: 36px;
        border-radius: 5px;
    }

    .campaign-banner .countdown-box span {
        font-size: 8px;
        margin-top: 1px;
    }

    .campaign-banner .countdown-box strong {
        font-size: 12px;
    }

    .btn-campaign-outline {
        padding: 6px 14px;
        font-size: 12px;
    }

    .banner-content-row {
        width: 100% !important;
        justify-content: space-between !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   TEKLİF MODAL (footer-organic.php ile kullanılır)
═══════════════════════════════════════════════════════════ */
#teklifModal .modal-content {
    background-color: #ffffff;
    color: #343a40;
    border-radius: 26px 10px 26px 10px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#teklifModal .modal-header {
    border-bottom: none;
    padding-bottom: 0;
    position: relative;
}

#teklifModal .modal-title {
    font-weight: 700;
    color: #343a40;
    width: 100%;
}

#teklifModal .btn-close {
    color: #6c757d;
    opacity: 0.7;
    font-size: 1.2rem;
    transition: opacity 0.3s ease;
}

#teklifModal .btn-close:hover {
    opacity: 1;
}

#teklifModal .modal-body p {
    color: #fff;
    font-size: 1.05rem;
}

.modal-modern-wrapper .modal-content {
    border-radius: 1.5rem;
}

.modal-close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1060;
    background-color: white;
    padding: 0.8rem;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transition: transform 0.3s ease;
}

.modal-close-btn:hover {
    transform: rotate(90deg);
}

.side-panel {
    background: linear-gradient(135deg, #0a2647 0%, #041329 100%);
    overflow: hidden;
}

.contact-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 0.3s;
}

.contact-box:hover {
    background: rgba(255, 255, 255, 0.2);
}

.circle-decoration {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    z-index: 0;
    pointer-events: none;
}

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

.form-floating.with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 1.8rem;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 4;
    pointer-events: none;
    transition: color 0.2s;
}

.input-icon.textarea-icon {
    top: 1.5rem;
    transform: none;
}

.form-floating.with-icon>.form-control {
    padding-left: 48px !important;
    height: calc(3.5rem + 2px);
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
}

.form-floating.with-icon>textarea.form-control {
    padding-top: 1.625rem !important;
    height: 120px !important;
}

.form-floating.with-icon>label {
    padding-left: 48px !important;
    width: 100%;
    pointer-events: none;
    color: #6c757d;
}

.form-floating.with-icon>.form-control:focus {
    background-color: #fff;
    border-color: #0a2647;
    box-shadow: 0 0 0 4px rgba(10, 38, 71, 0.1);
}

.form-floating.with-icon>.form-control:focus~label,
.form-floating.with-icon>.form-control:not(:placeholder-shown)~label {
    transform: scale(.85) translateY(-0.5rem) translateX(0.15rem) !important;
    padding-left: 48px !important;
}

.form-floating.with-icon>.form-control:focus~.input-icon {
    color: #0a2647;
}

.custom-submit-btn {
    background-color: #0a2647 !important;
    border-color: #0a2647;
    border: none;
}

.custom-submit-btn:hover {
    background-color: #041329 !important;
    border-color: #041329;
}

.hover-up {
    transition: transform 0.2s;
}

.hover-up:hover {
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .main-row {
        flex-direction: column-reverse;
    }

    .side-panel {
        padding: 3.5rem 1.5rem 2rem 1.5rem !important;
        text-align: center;
        border-bottom-left-radius: 1.5rem;
        border-bottom-right-radius: 1.5rem;
    }

    .side-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-box {
        width: 100%;
        max-width: 300px;
    }

    .form-panel {
        padding: 2rem 1.5rem !important;
    }

    .modal-close-btn {
        top: 10px;
        right: 10px;
        padding: 0.5rem;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(255, 255, 255, 0.9);
    }
}

/* Footer arkaplan görsellerini organic sayfalarda gizle */
.section-footer>.position-absolute {
    display: none !important;
}

/* ═══════════════════════════════════════════════════════════
   KEY TAKEAWAYS — Önemli Çıkarımlar
═══════════════════════════════════════════════════════════ */
.organic-takeaways-section {
    padding: 32px 0 0;
}

.organic-last-updated {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.organic-last-updated i {
    font-size: 0.9rem;
}

.organic-takeaways {
    background: linear-gradient(135deg, rgba(0, 35, 90, 0.03) 0%, rgba(37, 99, 235, 0.05) 100%);
    border: 1px solid rgba(0, 35, 90, 0.08);
    border-left: 4px solid var(--primary);
    border-radius: 12px;
    padding: 24px 28px;
    position: relative;
    overflow: hidden;
}

.organic-takeaways::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 35, 90, 0.04) 0%, transparent 70%);
    border-radius: 0 12px 0 0;
    pointer-events: none;
}

.takeaways-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.takeaways-header i {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.takeaways-header h2 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
}

.takeaways-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

@media (min-width: 768px) {
    .takeaways-list {
        grid-template-columns: 1fr 1fr;
        gap: 10px 24px;
    }
}

.takeaways-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.5;
}

.takeaways-list li i {
    color: var(--accent-green);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 3px;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIAL ENHANCEMENTS
═══════════════════════════════════════════════════════════ */
.testimonial-avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--border-light);
}

.testimonial-date {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.testimonial-date i {
    font-size: 0.72rem;
}

/* ═══════════════════════════════════════════════════════════
   26. TAKEAWAYS BAR (Hero'ya Yapışık)
═══════════════════════════════════════════════════════════ */
.takeaways-bar {
    background: #f1f5f9;
    padding: 16px 0;
    border-bottom: 1px solid #e2e8f0;
}

.takeaways-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.takeaways-bar-content {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}

.takeaway-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    color: var(--text-dark);
    font-size: 0.78rem;
    font-weight: 500;
    white-space: nowrap;
}

.takeaway-pill i {
    color: #22c55e;
    font-size: 0.8rem;
}

.takeaways-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.75rem;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 767.98px) {
    .takeaways-bar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .takeaway-pill {
        font-size: 0.72rem;
        padding: 5px 10px;
    }
}

/* ═══════════════════════════════════════════════════════════
   27. HİZMET KARTLARI — Hero Uyumlu Premium Dark
═══════════════════════════════════════════════════════════ */
.organic-card {
    background: linear-gradient(160deg, #00235a 0%, #002d72 50%, #003380 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 18px !important;
    padding: 28px 24px !important;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    color: #ffffff;
}

.organic-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.organic-card::after {
    display: none !important;
}

.organic-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 60px rgba(0, 35, 90, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.organic-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    font-size: 1.3rem;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.organic-card:hover .organic-card-icon {
    background: rgba(255, 255, 255, 0.15);
    color: #93c5fd;
    transform: scale(1.05);
}

.organic-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.organic-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    margin-bottom: 0;
}

.organic-card .card-detail {
    color: #60a5fa;
    margin-top: 16px;
    font-weight: 600;
    font-size: 0.85rem;
}

/* ═══════════════════════════════════════════════════════════
   28. TESTİMONIALS — Renkli ve Belirgin
═══════════════════════════════════════════════════════════ */
.organic-testimonials-section {
    background: linear-gradient(180deg, #f0f4ff 0%, #f8f9ff 50%, #ffffff 100%);
}

.organic-testimonials-section .testimonial-card {
    background: #ffffff !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    box-shadow: 0 4px 16px rgba(0, 35, 90, 0.06);
    position: relative;
    overflow: hidden;
}

.testimonial-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px 0 0 4px;
}

.organic-testimonials-section .testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(0, 35, 90, 0.1) !important;
    border-color: rgba(0, 51, 128, 0.12) !important;
}

.organic-testimonials-section .testimonial-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 3px;
}

.organic-testimonials-section .testimonial-text {
    color: var(--text-dark);
    font-weight: 400;
}

.organic-testimonials-section .testimonials-nav button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: #fff;
    color: var(--primary);
    font-size: 1.2rem;
}

.organic-testimonials-section .testimonials-nav button:hover {
    background: var(--primary);
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════
   29. FAQ — Numbered & Accent
═══════════════════════════════════════════════════════════ */
.faq-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 51, 128, 0.06);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.organic-faq-item.open .faq-num {
    background: var(--gradient-primary);
    color: #fff;
}

.organic-faq-item.open {
    border-left: 3px solid var(--primary);
    padding-left: 16px;
}

.organic-faq-form-card {
    background: linear-gradient(145deg, #001233 0%, #00235a 100%);
    color: #ffffff;
    border-radius: 20px;
    padding: 40px;
    position: sticky;
    top: 100px;
    box-shadow: 0 20px 40px rgba(0, 35, 90, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.organic-faq-form-card h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 8px;
}

.organic-faq-form-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    margin-bottom: 24px;
}

.organic-faq-form-card .form-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.88rem;
}

.organic-faq-form-card .form-control,
.organic-faq-form-card .form-select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 10px;
}

.organic-faq-form-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.organic-faq-form-card .form-control:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.organic-faq-form-card .btn {
    background: #ffffff;
    color: var(--primary);
    font-weight: 700;
    border: none;
    border-radius: 10px;
    padding: 12px;
}

.organic-faq-form-card .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════
   30. SEO İÇERİK — Tam Görüntüleme & Arkaplan Deseni
═══════════════════════════════════════════════════════════ */
.seo-content-section {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.seo-content-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 51, 128, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
}

.seo-content-wrapper {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    padding-left: 24px;
}

.seo-content-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
}

.organic-content h2 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 700;
}

.organic-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.organic-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: var(--text-body);
}

/* ═══════════════════════════════════════════════════════════
   31. CTA SECTION — Full-Width Gradient
═══════════════════════════════════════════════════════════ */
.organic-cta-section {
    background: linear-gradient(-45deg, #00235a, #003380, #1f2b45, #002a6b);
    background-size: 400% 400%;
    animation: gradient-shift 8s ease infinite;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.cta-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.25;
}

.cta-section-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
    line-height: 1.6;
}

.cta-form-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px;
}

.cta-form-card .form-control,
.cta-form-card .form-select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.95rem;
}

.cta-form-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.cta-form-card .form-control:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

/* CTA Trust Panel */
.cta-trust-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.cta-trust-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
}

.cta-trust-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    font-size: 1.2rem;
}

.cta-trust-icon-green {
    background: rgba(37, 211, 102, 0.2);
    color: #4ade80;
}

.cta-trust-item strong {
    display: block;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2px;
}

.cta-trust-link {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.cta-trust-link:hover {
    color: #ffffff;
}

.cta-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.cta-trust-badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

.cta-trust-badges span i {
    color: #22c55e;
    font-size: 0.8rem;
}

@media (max-width: 991.98px) {
    .organic-cta-section {
        padding: 60px 0;
    }

    .cta-section-title {
        font-size: 1.6rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   32. DECORATIVE SECTION ELEMENTS
═══════════════════════════════════════════════════════════ */
.section-decorated {
    position: relative;
    overflow: hidden;
}

.section-deco-dots {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, rgba(0, 51, 128, 0.08) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    z-index: 0;
    pointer-events: none;
}

.section-deco-circle {
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid rgba(0, 51, 128, 0.04);
    z-index: 0;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   33. TEKNOLOJİ — Geliştirilmiş Tasarım
═══════════════════════════════════════════════════════════ */
.tech-item {
    background: #ffffff !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    box-shadow: 0 2px 8px rgba(0, 35, 90, 0.04);
}

.tech-item:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 8px 24px rgba(0, 35, 90, 0.08) !important;
}

.tech-item .tech-icon {
    background: linear-gradient(135deg, rgba(0, 51, 128, 0.06), rgba(37, 99, 235, 0.06));
    color: var(--primary);
    border: 1px solid rgba(0, 51, 128, 0.08);
}

.tech-item:hover .tech-icon {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
}

/* ═══════════════════════════════════════════════════════════
   34. NEDEN BİZ — Dark Gradient Background
═══════════════════════════════════════════════════════════ */
.section-why-us {
    background: linear-gradient(160deg, #0a1628 0%, #0f1d36 40%, #132244 100%);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.section-why-us .organic-section-title,
.section-why-us .organic-section-subtitle {
    color: #ffffff;
}

.section-why-us .organic-section-subtitle {
    color: rgba(255, 255, 255, 0.65);
}

.section-why-us .organic-badge {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    color: #93c5fd;
}

.section-why-us .section-deco-dots {
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1.5px, transparent 1.5px);
}

.why-us-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.why-us-orb-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
}

.why-us-orb-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    right: -80px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

/* ═══════════════════════════════════════════════════════════
   35. CITY INFO — Compact Stat Cards
═══════════════════════════════════════════════════════════ */
.city-info-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

#sehir-bilgisi .organic-content,
#sehir-bilgisi .organic-content p {
    width: 100%;
    max-width: none;
}

.city-stat-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(0, 35, 90, 0.08);
    /* Stronger default border */
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 35, 90, 0.04);
    /* Natural prominent shadow */
}

.city-stat-card:hover {
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 12px 32px rgba(0, 35, 90, 0.08);
    transform: translateY(-4px);
}

.city-stat-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0, 51, 128, 0.06), rgba(37, 99, 235, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
}

.city-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.city-stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 4px;
}

@media (max-width: 991.98px) {
    .city-info-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .city-info-cards {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════
   36. TESTIMONIAL — Quote Background Mark
═══════════════════════════════════════════════════════════ */
.testimonial-card {
    position: relative;
}

.testimonial-text {
    position: relative;
}

.testimonial-text::before {
    content: '\201C';
    position: absolute;
    top: -24px;
    left: -4px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(0, 51, 128, 0.05);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

/* ═══════════════════════════════════════════════════════════
   37. PRICING SECTION — Decorated Background
═══════════════════════════════════════════════════════════ */
.section-pricing {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.pricing-deco-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.pricing-deco-1 {
    width: 300px;
    height: 300px;
    top: -80px;
    left: -80px;
    background: radial-gradient(circle, rgba(0, 51, 128, 0.04) 0%, transparent 70%);
}

.pricing-deco-2 {
    width: 250px;
    height: 250px;
    bottom: -60px;
    right: -60px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
}

.pricing-deco-dots {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, rgba(0, 51, 128, 0.06) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    pointer-events: none;
    z-index: 0;
}

/* ═══════════════════════════════════════════════════════════
   38. FAQ — Row Height Stretch removed
═══════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════
   39. NEDEN BİZ — Animated Grid Pattern
═══════════════════════════════════════════════════════════ */
.section-why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.section-why-us::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* ═══════════════════════════════════════════════════════════
   40. SEO CONTENT SECTION — Premium Dark Background (Like Why Us)
═══════════════════════════════════════════════════════════ */
.seo-content-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #0a1628 0%, #0f1d36 40%, #132244 100%);
    color: #ffffff;
}

.seo-content-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.seo-content-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.seo-content-bg-pattern {
    display: none;
}

.seo-content-section .organic-section-title {
    color: #ffffff;
}

.seo-content-section .organic-section-subtitle {
    color: rgba(255, 255, 255, 0.65);
}

.seo-content-section .organic-badge {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    color: #93c5fd;
}

/* Make sure text elements inside dark section are readable */
.seo-content-section .organic-content,
.seo-content-section .organic-content p,
.seo-content-section .organic-content li,
.seo-content-section .organic-content h2,
.seo-content-section .organic-content h3,
.seo-content-section .organic-content h4 {
    color: rgba(255, 255, 255, 0.9) !important;
}

.seo-content-section .organic-content strong,
.seo-content-section .organic-content b {
    color: #ffffff !important;
}

.seo-content-section .organic-content a {
    color: #60a5fa !important;
}

/* ═══════════════════════════════════════════════════════════
   41. INLINE SOURCE / CITATION ICON
═══════════════════════════════════════════════════════════ */
.inline-source-icon {
    display: inline-flex;
    align-items: center;
    color: var(--primary) !important;
    text-decoration: none !important;
    vertical-align: baseline;
    font-size: 0.9em;
}

.inline-source-icon i {
    color: var(--primary) !important;
}

.inline-source-icon:hover,
.inline-source-icon:hover i {
    color: var(--primary) !important;
}

/* In dark backgrounds (like SEO section), make the icon lighter */
.seo-content-section .inline-source-icon,
.seo-content-section .inline-source-icon i {
    color: #60a5fa !important;
}

.seo-content-section .inline-source-icon:hover,
.seo-content-section .inline-source-icon:hover i {
    color: #60a5fa !important;
}