﻿/* ============================================
   ØMNI DİJİTAL
   Design System: Void Minimalist (Dark Theme)
   ============================================ */

/* --- Design Tokens --- */
:root {
    /* Primary Colors (Minimalist White/Grey) */
    --primary: #ffffff;
    --primary-container: #222222;
    --primary-dim: #cccccc;
    --primary-fixed: #ffffff;
    --on-primary: #000000;
    --on-primary-container: #ffffff;

    /* Secondary Colors */
    --secondary: #a1a1aa;
    --secondary-container: #27272a;
    --on-secondary: #000000;

    /* Tertiary Colors */
    --tertiary: #52525b;
    --tertiary-container: #18181b;
    --on-tertiary: #ffffff;

    /* Surface Colors - THE VOID */
    --surface: #0a0a0a;
    --surface-bright: #181818;
    --surface-container: #121212;
    --surface-container-high: #1c1c1c;
    --surface-container-highest: #262626;
    --surface-container-low: #0a0a0a;
    --surface-container-lowest: #000000;
    --surface-dim: #050505;
    --surface-variant: #262626;
    --surface-tint: #ffffff;

    /* Text Colors */
    --on-surface: #e4e4e7;
    --on-surface-variant: #a1a1aa;
    --on-background: #ffffff;

    /* Outline */
    --outline: #3f3f46;
    --outline-variant: #27272a;

    /* Error */
    --error: #f87171;
    --error-container: #450a0a;

    /* Inverse */
    --inverse-surface: #f4f4f5;
    --inverse-primary: #000000;
    --inverse-on-surface: #18181b;

    /* Pastel Service Card Colors (Dark Mode Adapted) */
    --pastel-purple: #1e1b4b;
    --pastel-teal: #0f3d38;
    --pastel-coral: #4c1d1a;
    --pastel-blue: #1e2548;
    --pastel-green: #11361c;
    --pastel-amber: #4d2f00;

    /* Pastel Icon Colors */
    --icon-purple: #6c63ff;
    --icon-teal: #2abfac;
    --icon-coral: #f07068;
    --icon-blue: #5b8bf5;
    --icon-green: #47b95e;
    --icon-amber: #f5a623;

    /* Typography */
    --font-headline: 'Manrope', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --font-label: 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Radii */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows - Ambient style per design system */
    --shadow-sm: 0 2px 16px rgba(50, 49, 58, 0.04);
    --shadow-md: 0 4px 24px rgba(50, 49, 58, 0.06);
    --shadow-lg: 0 8px 40px rgba(50, 49, 58, 0.08);

    /* Transitions */
    --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--on-surface);
    background-color: var(--surface);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

/* ============================================
   Ãƒâ€“ZEL Ã„Â°MLEÃƒâ€¡ (Custom Cursor)
   ============================================ */
.custom-cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, background 0.2s ease, width 0.2s ease, height 0.2s ease;
    mix-blend-mode: multiply;
}

.custom-cursor-follower {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 2px solid rgba(108, 99, 255, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), width 0.3s ease, height 0.3s ease, border-color 0.2s ease;
}

.custom-cursor.cursor-hover {
    width: 18px;
    height: 18px;
    background: #a78bfa;
}

.custom-cursor-follower.cursor-hover {
    width: 56px;
    height: 56px;
    border-color: rgba(167, 139, 250, 0.6);
}

/* ============================================
   HERO CANVAS ARKA PLAN
   ============================================ */
#heroCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 10;
}

/* SVG KALDIRILDI */

/* ============================================
   ZIPLAYAN SCROLL DOWN
   ============================================ */
.scroll-down-btn {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #1a1040;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color var(--transition-fast);
    cursor: none;
}

.scroll-down-btn:hover { color: #ffffff; }

.scroll-down-text {
    opacity: 1;
    text-decoration: none;
    color: #ffffff;
}

.scroll-down-icon {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--space-sm);
    transition: var(--transition-fast);
    color: #ffffff;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-down-btn:hover .scroll-down-icon {
    border-color: #ffffff;
    background: rgba(255,255,255,0.1);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(8px); }
}

/* ============================================
   PULSE EFEKTÃ„Â° (.pulse-btn)
   ============================================ */
.pulse-btn {
    position: relative;
}

.pulse-btn::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: inherit;
    background: var(--primary);
    opacity: 0;
    animation: pulseBeat 2.5s ease-out infinite;
    z-index: -1;
}

@keyframes pulseBeat {
    0%   { transform: scale(1);   opacity: 0.4; }
    70%  { transform: scale(1.3); opacity: 0; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* ============================================
   GELÃ„Â°Ã…ÂMÃ„Â°Ã…Â HOVER EFEKTLERÃ„Â°
   ============================================ */
.service-card {
    transition: transform var(--transition-base), box-shadow var(--transition-base),
                background-color var(--transition-base);
    will-change: transform;
}

.service-card:hover {
    box-shadow: 0 20px 60px rgba(108,99,255,0.15), 0 4px 16px rgba(0,0,0,0.06);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%),
                rgba(108,99,255,0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-fast);
    pointer-events: none;
}

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

/* ============================================
   MANYETIK BUTON
   ============================================ */
.btn-primary, .btn-secondary, .nav-cta {
    position: relative;
    transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow var(--transition-base);
}

ul {
    list-style: none;
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* --- Section Headers  --- */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-3xl);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-label);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(108, 99, 255, 0.05));
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-headline);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--on-surface);
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.text-accent {
    background: linear-gradient(135deg, var(--primary), var(--primary-container));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--on-surface-variant);
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-container));
    color: var(--on-primary);
    box-shadow: 0 4px 20px rgba(108, 99, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(108, 99, 255, 0.4);
}

.btn-secondary {
    background: var(--surface-container);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--surface-container-high);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* Navbar'ı yukarıdan boşluklu, premium göstermek için paddings: */
    padding: 1.75rem 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-hero {
    background: transparent;
    border-bottom: 1px solid transparent;
}

.navbar.navbar-hero .nav-links a,
.navbar.navbar-hero .nav-logo .logo-text {
    color: rgba(255,255,255,0.9);
}

.navbar.navbar-hero .nav-links a:hover {
    color: #ffffff;
}

.navbar.navbar-hero.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0; /* Küçülen scroll efekti */
}

/* WhatsApp butonu hero ÃƒÂ¼zerinde */
    z-index: 5;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* ============================================
   BÃƒâ€“LÃƒÅ“M RENKLERÃ„Â° ââ‚¬â€ body gradient ÃƒÂ¼zerinden
   Section'lar transparent, sadece metin/kart renkleri ayarlanÃ„Â±r
   ============================================ */

.atm-dawn,
.atm-day,
.atm-dusk,
.atm-night2,
.atm-dawn2 {
    background: transparent;
}

/* Hizmetler (dawn) - aÃƒÂ§Ã„Â±k arka plan */
.atm-dawn .service-card {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(108,99,255,0.1);
}
.atm-dawn .service-card:hover {
    background: rgba(255,255,255,0.88);
    box-shadow: 0 16px 48px rgba(108,99,255,0.18);
}

/* Neden Biz (day) - aÃƒÂ§Ã„Â±k arka plan */
.atm-day .why-card {
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(245,166,35,0.12);
    backdrop-filter: blur(4px);
}
.atm-day .why-card:hover {
    background: rgba(255,255,255,0.9);
}

/* --- KOYU BÃƒâ€“LÃƒÅ“MLER: beyaz metin --- */
.atm-dusk,
.atm-night2,
.atm-dawn2 {
    color: rgba(255,255,255,0.92);
}
.atm-dusk .section-title, .atm-dusk .section-tag, .atm-dusk .section-desc,
.atm-dusk h3, .atm-dusk p,
.atm-night2 .section-title, .atm-night2 .section-tag, .atm-night2 .section-desc,
.atm-night2 h3, .atm-night2 p,
.atm-dawn2 .section-title, .atm-dawn2 .section-tag, .atm-dawn2 .section-desc,
.atm-dawn2 h3, .atm-dawn2 p {
    color: rgba(255,255,255,0.92);
}
.atm-dusk .section-tag, .atm-dawn2 .section-tag {
    color: #f0abfc; background: rgba(240,171,252,0.15); border-color: rgba(240,171,252,0.3);
}
.atm-night2 .section-tag {
    color: #c4b5fd; background: rgba(196,181,253,0.12); border-color: rgba(196,181,253,0.25);
}
.atm-dusk .text-accent, .atm-dawn2 .text-accent {
    background: linear-gradient(135deg,#f0abfc,#c084fc);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.atm-night2 .text-accent {
    background: linear-gradient(135deg,#c4b5fd,#a78bfa);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* SÃƒÂ¼reÃƒÂ§ (dusk) kartlarÃ„Â± */
.atm-dusk .process-step {
    background: rgba(255,255,255,0.07);
    border-radius: var(--radius-xl); padding: var(--space-xl);
    backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.12);
}
.atm-dusk .step-icon {
    background: rgba(255,255,255,0.15); color: #f0abfc;
    border-color: rgba(240,171,252,0.3); box-shadow: 0 0 20px rgba(240,171,252,0.2);
}
.atm-dusk .step-number { color: rgba(240,171,252,0.4); }
.atm-dusk .process-timeline::before { background: rgba(255,255,255,0.15); }

/* Platformlar (night2) kartlarÃ„Â± */
.atm-night2 .platform-card {
    background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.8);
    border: 1px solid rgba(196,181,253,0.15); backdrop-filter: blur(8px);
}
.atm-night2 .platform-card span { color: rgba(255,255,255,0.8); }
.atm-night2 .platform-card:hover {
    background: rgba(196,181,253,0.15); color: #c4b5fd;
}

/* Ã„Â°letiÃ…Å¸im (dawn2) kartlarÃ„Â± */
.atm-dawn2 .contact-big-card {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(12px); color: #fff;
}
.atm-dawn2 .contact-big-card:hover {
    background: rgba(255,255,255,0.18);
}
.atm-dawn2 .contact-big-card h4, .atm-dawn2 .contact-big-card p {
    color: rgba(255,255,255,0.9);
}
.atm-dawn2 .info-icon { background: rgba(255,255,255,0.15) !important; color: #fff !important; }
.atm-dawn2 .social-link { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.2); }
.atm-dawn2 .social-link:hover { color: #fff; background: rgba(255,255,255,0.15); }





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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary), var(--primary-container));
    color: var(--on-primary);
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 0.9rem;
}

.logo-text {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--on-surface);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--on-surface-variant);
    transition: color 0.3s ease;
    text-decoration: none !important;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.3rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-container));
    color: var(--on-primary);
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.nav-cta:hover {
    box-shadow: 0 4px 20px rgba(108, 99, 255, 0.35);
    transform: translateY(-1px);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--on-surface);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 6rem;
    overflow: hidden;
    background: linear-gradient(
        160deg,
        #0d0b1e 0%,
        #1a1040 15%,
        #2d1b69 30%,
        #4c2d8f 45%,
        #7b5ea7 55%,
        #b08cc7 68%,
        #d4b8e0 80%,
        #ede0f5 90%,
        #f8f4ff 100%
    );
}
/* SHAPES KALDIRILDI: Void teması için temizlendi */

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -30px) scale(1.05); }
    66% { transform: translate(-15px, 20px) scale(0.95); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-label);
    font-size: 0.82rem;
    font-weight: 600;
    color: #c4b5fd;
    background: rgba(196, 181, 253, 0.15);
    padding: 0.45rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s ease-out;
    border: 1px solid rgba(196,181,253,0.3);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c4b5fd;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-family: var(--font-headline);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s ease-out 0.1s both;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-title-accent {
    background: linear-gradient(135deg, #c4b5fd, #a78bfa, #f0abfc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    max-width: 520px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-headline);
    font-size: 2rem;
    font-weight: 800;
    color: #c4b5fd;
}

.stat-suffix {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 700;
    color: #a78bfa;
}

.stat-label {
    display: block;
    font-family: var(--font-label);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.2rem;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.25);
    opacity: 0.6;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-xl);
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

.hero-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--surface-container-lowest);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid rgba(179, 176, 188, 0.1);
}

.hero-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.hero-card-1 { animation: slideInCard 0.6s ease-out 0.5s both; }
.hero-card-2 { animation: slideInCard 0.6s ease-out 0.7s both; }
.hero-card-3 { animation: slideInCard 0.6s ease-out 0.9s both; }

@keyframes slideInCard {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(108, 99, 255, 0.05));
    color: var(--primary);
}

.card-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--on-surface);
    min-width: 140px;
}

.card-bar {
    flex: 1;
    height: 6px;
    background: var(--surface-container);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.card-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-container));
    border-radius: var(--radius-full);
    animation: barFill 1.5s ease-out 1.2s both;
}

@keyframes barFill {
    from { width: 0 !important; }
}

.hero-floating-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    background: var(--surface-container-lowest);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    animation: floatBadge 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services {
    position: relative;
    z-index: 20;
    padding: var(--space-4xl) 0;
    background: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-card {
    display: block;
    background: var(--surface-container-lowest);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    transition: height var(--transition-base);
}

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

.service-card:hover::before {
    height: 6px;
}

/* Service Card Colors */
.service-card[data-color="purple"] .service-icon-wrap { background: var(--pastel-purple); color: var(--icon-purple); }
.service-card[data-color="purple"]::before { background: linear-gradient(90deg, var(--icon-purple), rgba(108, 99, 255, 0.5)); }

.service-card[data-color="teal"] .service-icon-wrap { background: var(--pastel-teal); color: var(--icon-teal); }
.service-card[data-color="teal"]::before { background: linear-gradient(90deg, var(--icon-teal), rgba(42, 191, 172, 0.5)); }

.service-card[data-color="coral"] .service-icon-wrap { background: var(--pastel-coral); color: var(--icon-coral); }
.service-card[data-color="coral"]::before { background: linear-gradient(90deg, var(--icon-coral), rgba(240, 112, 104, 0.5)); }

.service-card[data-color="blue"] .service-icon-wrap { background: var(--pastel-blue); color: var(--icon-blue); }
.service-card[data-color="blue"]::before { background: linear-gradient(90deg, var(--icon-blue), rgba(91, 139, 245, 0.5)); }

.service-card[data-color="green"] .service-icon-wrap { background: var(--pastel-green); color: var(--icon-green); }
.service-card[data-color="green"]::before { background: linear-gradient(90deg, var(--icon-green), rgba(71, 185, 94, 0.5)); }

.service-card[data-color="amber"] .service-icon-wrap { background: var(--pastel-amber); color: var(--icon-amber); }
.service-card[data-color="amber"]::before { background: linear-gradient(90deg, var(--icon-amber), rgba(245, 166, 35, 0.5)); }

.service-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    transition: transform var(--transition-base);
}

.service-card:hover .service-icon-wrap {
    transform: scale(1.1) rotate(-3deg);
}

.service-title {
    font-family: var(--font-headline);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--on-surface);
    margin-bottom: var(--space-sm);
}

.service-desc {
    font-size: 0.92rem;
    color: var(--on-surface-variant);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.service-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.service-tags span {
    font-family: var(--font-label);
    font-size: 0.72rem;
    font-weight: 500;
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-full);
    background: var(--surface-container);
    color: var(--on-surface-variant);
    transition: all var(--transition-fast);
}

.service-card:hover .service-tags span {
    background: var(--secondary-container);
}

.service-link {
    display: inline-block;
    margin-top: var(--space-md);
    font-family: var(--font-label);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition-base);
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   WHY US SECTION
   ============================================= */
.why-us {
    position: relative;
    z-index: 20;
    padding: var(--space-4xl) 0;
    background: transparent;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.why-card {
    background: var(--surface-container-low);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
    position: relative;
}

.why-card:hover {
    transform: translateY(-4px);
    background: var(--surface-container-lowest);
    box-shadow: var(--shadow-md);
}

.why-number {
    font-family: var(--font-headline);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.15), rgba(108, 99, 255, 0.05));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-md);
}

.why-card h3 {
    font-family: var(--font-headline);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--on-surface);
    margin-bottom: var(--space-sm);
}

.why-card p {
    font-size: 0.92rem;
    color: var(--on-surface-variant);
    line-height: 1.7;
}

/* =============================================
   PROCESS SECTION
   ============================================= */
.process {
    position: relative;
    z-index: 20;
    padding: var(--space-4xl) 0;
    background: transparent;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-container), var(--surface-container));
    border-radius: var(--radius-full);
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xl);
    position: relative;
    padding-left: 80px;
}

.step-icon {
    position: absolute;
    left: 6px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-container-lowest);
    border-radius: 50%;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    border: 2px solid rgba(108, 99, 255, 0.15);
    z-index: 1;
}

.step-content h3 {
    font-family: var(--font-headline);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--on-surface);
    margin-bottom: 0.3rem;
}

.step-content p {
    font-size: 0.92rem;
    color: var(--on-surface-variant);
    line-height: 1.7;
}

.step-number {
    position: absolute;
    right: 0;
    top: 0;
    font-family: var(--font-headline);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.08), rgba(108, 99, 255, 0.02));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =============================================
   PLATFORMS SECTION
   ============================================= */
.platforms {
    position: relative;
    z-index: 20;
    padding: var(--space-4xl) 0;
    background: transparent;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-lg);
}

.platforms-4 {
    grid-template-columns: repeat(4, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xl) var(--space-md);
    background: var(--surface-container-low);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    color: var(--on-surface-variant);
}

.platform-card:hover {
    transform: translateY(-6px);
    background: var(--surface-container-lowest);
    box-shadow: var(--shadow-md);
    color: var(--primary);
}

.platform-card span {
    font-family: var(--font-label);
    font-size: 0.82rem;
    font-weight: 600;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact {
    position: relative;
    z-index: 20;
    padding: var(--space-4xl) 0;
    background: transparent;
}

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

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-big-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-sm);
    padding: var(--space-2xl) var(--space-lg);
    background: var(--surface-container-lowest);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

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

.contact-big-card h4 {
    font-family: var(--font-headline);
    font-size: 1rem;
    font-weight: 700;
    color: var(--on-surface);
}

.contact-big-card p {
    font-size: 0.92rem;
    color: var(--on-surface-variant);
}

.contact-big-card .info-icon {
    width: 56px;
    height: 56px;
    margin-bottom: var(--space-xs);
}

.whatsapp-card {
    background: rgba(37, 211, 102, 0.05);
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.whatsapp-card:hover {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.15);
}

.whatsapp-icon {
    background: rgba(37, 211, 102, 0.1) !important;
    color: #25d366 !important;
}

.contact-social-center {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--surface-container-lowest);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.contact-info-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(108, 99, 255, 0.05));
    color: var(--primary);
}

.contact-info-card h4 {
    font-family: var(--font-headline);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--on-surface);
    margin-bottom: 0.15rem;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--on-surface-variant);
}

.contact-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--surface-container-lowest);
    color: var(--on-surface-variant);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--primary);
    color: var(--on-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(108, 99, 255, 0.3);
}

/* Contact Form */
.contact-form {
    background: var(--surface-container-lowest);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-family: var(--font-label);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--on-surface);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: none;
    border-bottom: 2px solid var(--surface-container-high);
    background: var(--surface-container-low);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--on-surface);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--outline);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--primary);
    background: var(--surface-container-lowest);
    box-shadow: 0 2px 8px rgba(108, 99, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237b7984' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    padding: var(--space-3xl) 0 var(--space-xl);
    background: var(--inverse-surface);
    color: var(--inverse-on-surface);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: var(--space-md);
    max-width: 320px;
    opacity: 0.7;
}

.footer-brand .logo-icon {
    background: linear-gradient(135deg, var(--inverse-primary), var(--primary-container));
}

.footer-brand .logo-text {
    color: var(--on-primary);
}

.footer-links h4 {
    font-family: var(--font-headline);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--on-primary);
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-size: 0.88rem;
    opacity: 0.7;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: #ffffff;
    transform: translateX(4px);
    display: inline-block;
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-label);
    font-size: 0.8rem;
    opacity: 0.5;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .hero-visual {
        padding: 0;
    }

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

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

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    /* Mobile Menu */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(252, 248, 254, 0.98);
        backdrop-filter: blur(20px);
        padding: var(--space-xl);
        gap: var(--space-lg);
        box-shadow: var(--shadow-md);
    }

    .hero {
        min-height: auto;
        padding: 7rem 0 3rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .hero-stats {
        flex-direction: row;
        gap: var(--space-sm);
        justify-content: center;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

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

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

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .step-number {
        display: none;
    }
}

@media (max-width: 480px) {
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-actions {
        flex-direction: column;
    }

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

/* =============================================
   FLOATING WHATSAPP BUTTON
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-base);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* =============================================
   SERVICE DETAIL PAGES
   ============================================= */
.service-page-hero {
    padding: 8rem 0 4rem;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.service-page-hero .hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.service-page-header {
    max-width: 800px;
}

.service-page-header .breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-label);
    font-size: 0.82rem;
    color: var(--on-surface-variant);
    margin-bottom: var(--space-lg);
}

.service-page-header .breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.service-page-header .breadcrumb a:hover {
    text-decoration: underline;
}

.service-page-header h1 {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    color: var(--on-surface);
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.service-page-header .lead {
    font-size: 1.15rem;
    color: var(--on-surface-variant);
    line-height: 1.8;
    max-width: 640px;
}

/* Content Section */
.service-content {
    padding: var(--space-4xl) 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-3xl);
}

.content-main h2 {
    font-family: var(--font-headline);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--on-surface);
    margin-bottom: var(--space-lg);
    margin-top: var(--space-2xl);
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main p {
    font-size: 1rem;
    color: var(--on-surface-variant);
    line-height: 1.85;
    margin-bottom: var(--space-lg);
}

.content-main blockquote {
    border-left: 3px solid var(--primary-container);
    padding: var(--space-lg) var(--space-xl);
    margin: var(--space-xl) 0;
    background: var(--surface-container-low);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    font-style: italic;
    color: var(--on-surface);
    font-size: 1.05rem;
    line-height: 1.7;
}

.mistake-card {
    background: var(--surface-container-low);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
    border-left: 4px solid var(--error-container);
}

.mistake-card h3 {
    font-family: var(--font-headline);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--error);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mistake-card p {
    font-size: 0.92rem;
    color: var(--on-surface-variant);
    line-height: 1.7;
    margin-bottom: 0;
}

.solution-card {
    background: var(--surface-container-low);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
    border-left: 4px solid #47b95e;
}

.solution-card h3 {
    font-family: var(--font-headline);
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d8f3e;
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.solution-card p {
    font-size: 0.92rem;
    color: var(--on-surface-variant);
    line-height: 1.7;
    margin-bottom: 0;
}

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

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-container));
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    color: var(--on-primary);
    text-align: center;
    margin-bottom: var(--space-xl);
}

.sidebar-cta h3 {
    font-family: var(--font-headline);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.sidebar-cta p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.sidebar-cta .btn {
    background: white;
    color: var(--primary);
    width: 100%;
    justify-content: center;
}

.sidebar-cta .btn:hover {
    background: var(--on-primary);
    transform: translateY(-2px);
}

.sidebar-services {
    background: var(--surface-container-low);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}

.sidebar-services h4 {
    font-family: var(--font-headline);
    font-size: 1rem;
    font-weight: 700;
    color: var(--on-surface);
    margin-bottom: var(--space-lg);
}

.sidebar-services a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    margin-bottom: var(--space-xs);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--on-surface-variant);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.sidebar-services a:hover,
.sidebar-services a.active {
    background: var(--surface-container-lowest);
    color: var(--primary);
    font-weight: 600;
}

.sidebar-services a::before {
    content: '→';
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.sidebar-services a:hover::before,
.sidebar-services a.active::before {
    opacity: 1;
}

/* Service page responsive */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .content-sidebar {
        position: static;
    }
}

/* ============================================
   HİZMET SAYFASI AÇIK ARKA PLAN OVERRİDE
   ============================================ */
.service-content .contact-big-card {
    background: #0a0a0a !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}
.service-content .contact-big-card h4 { color: #ffffff !important; }
.service-content .contact-big-card p  { color: rgba(255,255,255,0.7) !important; }

/* Butonu okunaklı hale getir */
.service-content .contact-big-card .btn {
    background: #ffffff !important;
    color: #000000 !important;
}
.service-content .info-icon {
    background: linear-gradient(135deg, rgba(108,99,255,0.1), rgba(108,99,255,0.05)) !important;
    color: var(--primary) !important;
}
.service-content .social-link {
    background: var(--surface-container-low) !important;
    color: var(--on-surface-variant) !important;
    border: none !important;
}
.service-content .social-link:hover {
    background: var(--primary) !important;
    color: var(--on-primary) !important;
}
.sidebar-services a { text-decoration: none; }


/* DARK MODE BULK OVERRIDES - Ensure texts are visible everywhere */
body, h1, h2, h3, h4, h5, h6, p, .section-title, .section-desc, .step-desc, .platform-card h3, .platform-card p {
    color: rgba(255, 255, 255, 0.9) !important;
}
p, .section-desc, .step-desc {
    color: rgba(255, 255, 255, 0.7) !important;
}
.nav-links a { color: rgba(255, 255, 255, 0.8) !important; text-decoration: none !important; }
.nav-links a:hover { color: #ffffff !important; }


/* FOOTER VE YAN REKLAM KUTUSU KARANLIK MOD DUZELTMELERI */
.footer {
    background: #050505 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.sidebar-cta {
    background: #111111 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.sidebar-cta h3, .sidebar-cta p {
    color: #ffffff !important;
}
.sidebar-cta .btn {
    background: #ffffff !important;
    color: #000000 !important;
    font-weight: 600 !important;
}


/* GLOBAL BUTTON UNDERLINE CLEANUP & WHATSAPP BUTTON FIX */
a.btn, a.nav-cta, a.nav-cta-pill, a, button {
    text-decoration: none !important;
}
.nav-cta-pill {
    background: #ffffff !important;
    color: #000000 !important;
    border: none !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
}
/* Ensure dark navbar links have white text, no text-decoration */
.nav-links a {
    text-decoration: none !important;
}


/* SPACE FLOAT ANIMATION */
@keyframes floatInSpace {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
    100% { transform: translateY(0) rotate(0deg); }
}
.hero-logo-large svg {
    animation: floatInSpace 6s ease-in-out infinite;
}


/* TASK 1 & 2 MOBILE FIXES */
@media (max-width: 768px) {
    .nav-links.active {
        background: rgba(10, 10, 10, 0.98) !important;
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    }
    .scroll-down-btn {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        margin: 2rem auto 0 auto !important;
    }
}


/* TASK 1: TITLE COLOR OVERRIDE */
.text-accent, .hero-title-accent, .section-title .text-accent {
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
    text-shadow: none !important;
}


/* ============================================
   HOLOGRAPHIC 3D CARDS (Hizmetler)
   ============================================ */
.services-grid {
    /* other services-grid properties already exist */
}

.holo-card-container {
    perspective: 1200px;
    width: 100%;
    height: 440px;
    cursor: pointer;
    transition: transform 0.1s ease-out;
    text-decoration: none !important;
    display: block; /* Since it's an <a> tag */
}

.holo-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.95); /* Adjusted for dark mode without heavy blur */
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    animation: holoFloat 6s ease-in-out infinite;
    will-change: transform;
    -webkit-font-smoothing: antialiased;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

@keyframes holoFloat {
    0%, 100% { transform: translateY(0px) rotateX(0deg); }
    50% { transform: translateY(-10px) rotateX(0deg); }
}

.holo-layer {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 140px;
    pointer-events: none;
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #c084fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    transition: all 0.3s ease;
}

.layer-back {
    opacity: 0.15;
    filter: blur(4px);
    transform: translate(-50%, -50%) translateZ(-60px);
}

.layer-mid {
    opacity: 0.4;
    filter: blur(1px);
    transform: translate(-50%, -50%) translateZ(-30px);
}

.layer-front {
    opacity: 0.95;
    transform: translate(-50%, -50%) translateZ(20px);
    filter: drop-shadow(0 0 15px rgba(56, 189, 248, 0.3));
}

.holo-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.15), transparent 70%);
    transform: translateZ(-10px);
    pointer-events: none;
}

.card-overlay {
    position: relative;
    height: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 10;
    transform: translateZ(40px);
}

.status-pill {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: #38bdf8;
    border-radius: 100px;
    display: inline-block;
}

.serial-number {
    font-size: 10px;
    color: #94a3b8;
    font-family: monospace;
    float: right;
}

.card-title {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.card-subtitle {
    font-size: 14px;
    color: #94a3b8;
    margin: 4px 0 0 0;
}

.glass-sheen {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
    rgba(255,255,255,0.15) 0%,
    rgba(255,255,255,0) 40%,
    rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.1) 100%);
    pointer-events: none;
    z-index: 20;
}

@media (max-width: 480px) {
    .holo-card-container {
        height: 380px;
    }
    .holo-layer {
        font-size: 110px;
    }
}


/* ============================================
   3D AWAKE BUTTON (WhatsApp)
   ============================================ */
.prism-container {
    position: relative;
    padding: 1px;
    background: linear-gradient(90deg, rgba(37,211,102,0.6), rgba(37,211,102,0.1), rgba(37,211,102,0.6));
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
}

.prism-container:hover {
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.prism-btn {
    position: relative;
    width: 140px;
    height: 42px;
    background: #000;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prism-btn canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.prism-btn .text-layer {
    position: relative;
    z-index: 10;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prism-btn .btn-label {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    transition: all 0.3s ease;
}

.prism-container:hover .btn-label {
    color: #25D366;
    text-shadow: 0 0 10px rgba(37,211,102,0.5);
}

