/* --- PREMIUM FONT VE PROFESYONEL RENK PALETİ --- */
:root {
    --bg-pure: #050507; 
    --text-main: #ffffff; 
    --text-muted: #9BA1A6; 
    --accent: #00f0ff; /* Orijinal elektrik mavisini geri getirdik, neon için daha iyi */
    --accent-dark: #0088ff;
    --accent-purple: #b53cff;
    --font-premium: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- EFSANE DOT MATRIX (NOKTALI) ARKA PLAN VE IŞIKLAR --- */
body {
    background-color: #030305; /* Çok derin, zifiri bir lacivert/siyah */
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Noktalı Teknoloji Deseni (Artık kesin ve net görünecek) */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -998;
    pointer-events: none;
    /* %15 opaklıkta belirgin noktalar */
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1.5px, transparent 1.5px);
    background-size: 35px 35px; /* Noktalar arası boşluk */
    /* Kenarlara doğru karanlığa karışarak silinme efekti (Vignette) */
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 10%, rgba(0,0,0,0) 85%);
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 10%, rgba(0,0,0,0) 85%);
}

/* Daha Güçlü ve Dinamik Ambiyans Işıkları */
body::after {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -999;
    pointer-events: none;
    /* Sol üstte Elektrik Mavisi, Sağ altta Soft Mor ışık kaynağı */
    background: 
        radial-gradient(circle at 15% 25%, rgba(0, 240, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(181, 60, 255, 0.12) 0%, transparent 50%);
    filter: blur(70px); /* Sis gibi dağılır */
    animation: breathAmbient 15s infinite alternate ease-in-out;
}

/* Işıkların nefes alması (hafifçe büyüyüp küçülür) */
@keyframes breathAmbient {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.1); opacity: 1; }
}

/* =========================================
   GENEL KULLANIM VE BÜYÜK EKRAN UYUMU
========================================= */
.container {
    max-width: 1500px; /* Büyük ekranlar için genişletildi */
    margin: 0 auto;
    padding: 0 40px;
}

/* 2K ve 4K Ekranlar için ekstra büyüme */
@media (min-width: 1800px) {
    .container { max-width: 1800px; }
    html { font-size: 18px; } /* Tüm siteyi orantılı büyütür */
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 240, 255, 0.05);
    color: var(--accent);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.section-title {
    font-family: var(--font-premium);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

/* Dinamik Akan Text Gradient */
.text-gradient {
    background: linear-gradient(to right, var(--accent) 20%, var(--accent-purple) 40%, var(--accent-purple) 60%, var(--accent) 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 5s linear infinite;
    display: inline-block;
}

@keyframes shineText {
    to { background-position: 200% center; }
}

.section-subtitle {
    color: var(--text-muted);
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* --- HEADER İSKELETİ --- */
.asgard-header-cluster {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999; 
    padding: 25px 0;
    transition: var(--transition-smooth);
}

.asgard-header-cluster.scrolled {
    padding: 12px 0;
    background: rgba(5, 5, 7, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.asgard-nav-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px; /* Daha premium boşluk */
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
}

.nav-cluster {
    display: flex;
    list-style: none;
    gap: 45px;
}

.cluster-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.logo-mega {
    height: 120px; 
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 0 25px rgba(0, 240, 255, 0.2));
}

.asgard-header-cluster.scrolled .logo-mega {
    height: 75px;
}

.cluster-link {
    font-family: var(--font-premium);
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: var(--transition-smooth);
    position: relative;
    padding: 8px 0;
}

.cluster-link:hover, .cluster-link.active {
    color: var(--text-main);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.cluster-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transition: var(--transition-smooth);
    box-shadow: 0 0 10px var(--accent);
}

.cluster-link:hover::after, .cluster-link.active::after {
    width: 100%;
}

/* --- EFEKTLİ HAMBURGER BUTONU --- */
.hamburger-fx {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 26px;
    position: relative;
    z-index: 10000; 
}

.hamburger-fx .line {
    position: absolute;
    left: 0;
    height: 2px;
    width: 100%;
    background: var(--text-main);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.hamburger-fx .line-1 { top: 0; }
.hamburger-fx .line-2 { top: 12px; }
.hamburger-fx .line-3 { top: 24px; }

.hamburger-fx.active .line-1 {
    top: 12px;
    transform: rotate(45deg);
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}
.hamburger-fx.active .line-2 {
    opacity: 0;
    transform: translateX(-20px);
}
.hamburger-fx.active .line-3 {
    top: 12px;
    transform: rotate(-45deg);
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

/* --- MOBİL TAM EKRAN OVERLAY --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(2, 2, 3, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 9998; 
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin: 30px 0;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.5s ease;
}

.mobile-menu-overlay.active .mobile-nav-links li {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-links a {
    font-family: var(--font-premium);
    color: var(--text-main);
    text-decoration: none;
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    transition: var(--transition-smooth);
    position: relative;
    display: inline-block;
}

.mobile-nav-links a:hover {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    transform: scale(1.05);
}

/* Mobil Menü Animasyon Gecikmeleri */
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(5) { transition-delay: 0.5s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(6) { transition-delay: 0.6s; }

@media (max-width: 1200px) {
    .asgard-nav-center { justify-content: space-between; padding: 0 40px; gap: 0; }
    .nav-cluster { display: none; }
    .hamburger-fx { display: block; }
}

@media (max-width: 768px) {
    .asgard-nav-center { padding: 0 20px; }
    .logo-mega { height: 80px; }
}

/* =========================================
   HERO SECTION (EFEKTLER ARTTIRILDI)
========================================= */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    z-index: 1;
    filter: blur(120px);
    pointer-events: none;
}

.glow-1 {
    top: -20%;
    left: -10%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    animation: floatGlow 10s infinite alternate ease-in-out;
}

.glow-2 {
    bottom: -20%;
    right: -10%;
    background: radial-gradient(circle, rgba(181, 60, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    animation: floatGlow 14s infinite alternate-reverse ease-in-out;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 80px) scale(1.3); }
}

.hero-container {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-main);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.badge:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.15);
}

.badge-meta svg { fill: #00f0ff; }

.hero-title {
    font-family: var(--font-premium);
    font-size: clamp(3rem, 6vw, 6.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 30px;
    text-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 50px auto;
    line-height: 1.8;
}

/* PREMIUM BUTON EFEKTLERİ */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px;
    background: var(--text-main);
    color: var(--bg-pure);
    font-family: var(--font-premium);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    transform: skewX(-45deg);
    transition: 0.5s;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.25);
    background: var(--accent);
}

.btn-primary:hover::after {
    left: 200%;
}

.btn-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-main);
    font-family: var(--font-premium);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    border-color: var(--accent);
    background: rgba(0, 240, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.15);
    transform: translateY(-5px);
}

/* =========================================
   İSTATİSTİKLER BÖLÜMÜ
========================================= */
.stats-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-pure) 0%, rgba(10,10,15,0.8) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    z-index: 10;
    backdrop-filter: blur(20px);
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 10px;
}

.stat-item h3 {
    font-family: var(--font-premium);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--text-main);
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.stat-item span {
    font-family: var(--font-premium);
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--accent);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.stat-item p {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .stats-container { flex-direction: column; gap: 50px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; }
}

/* =========================================
   SERVICES (HİZMETLER) BÖLÜMÜ
========================================= */
.services-section {
    position: relative;
    padding: 150px 0;
    background-color: var(--bg-pure);
    overflow: hidden;
}

.services-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(181, 60, 255, 0.05) 0%, rgba(0, 0, 0, 0) 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); /* Daha büyük kartlar */
    gap: 40px;
    position: relative;
    z-index: 5;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px; /* Daha yuvarlak premium hatlar */
    padding: 50px 40px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* Hover olduğunda karta yukarı kayma ve glow efekti */
.service-card:hover {
    transform: translateY(-15px);
    border-color: rgba(0, 240, 255, 0.4);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(0, 240, 255, 0.05);
}

/* Sürekli akan tepe çizgisi */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transition: var(--transition-smooth);
}

.service-card:hover::before {
    left: 100%;
    transition: 1s ease;
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 240, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 240, 255, 0.15);
    transition: var(--transition-smooth);
}

.service-icon svg {
    width: 34px;
    height: 34px;
    color: var(--accent);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 15px 30px rgba(0, 240, 255, 0.4);
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover .service-icon svg {
    color: var(--bg-pure);
}

.service-title {
    font-family: var(--font-premium);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.service-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

/* =========================================
   AWARDS (ÖDÜLLER) BÖLÜMÜ
========================================= */
.awards-section {
    position: relative;
    padding: 150px 0;
    background-color: var(--bg-pure);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.badge-awards {
    background: rgba(181, 60, 255, 0.1);
    color: #b53cff;
    border-color: rgba(181, 60, 255, 0.3);
    box-shadow: 0 0 20px rgba(181, 60, 255, 0.15);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 70px;
}

.award-card {
    position: relative;
    background: rgba(10, 10, 12, 0.8);
    border-radius: 24px;
    padding: 50px 40px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.award-card:hover {
    transform: translateY(-15px) scale(1.02);
}

.award-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
    transition: var(--transition-smooth);
    z-index: -1;
}

.award-card:hover .award-glow {
    opacity: 0.9;
    transform: scale(1.8);
}

.award-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.award-platform {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.award-rank {
    font-family: var(--font-premium);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -3px;
}

.award-title {
    font-family: var(--font-premium);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 25px;
    flex-grow: 1;
}

.award-year {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 700;
    align-self: flex-start;
}

/* Tier 1: Diamond */
.tier-diamond { border-top: 2px solid rgba(0, 240, 255, 0.4); }
.tier-diamond .award-glow { background: #00f0ff; }
.tier-diamond .award-rank {
    background: linear-gradient(135deg, #ffffff 0%, #00f0ff 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(0, 240, 255, 0.5);
}
.tier-diamond:hover { box-shadow: 0 30px 60px rgba(0, 240, 255, 0.2); border-color: #00f0ff; }

/* Tier 2: Gold */
.tier-gold { border-top: 2px solid rgba(255, 215, 0, 0.4); }
.tier-gold .award-glow { background: #FFD700; }
.tier-gold .award-rank {
    background: linear-gradient(135deg, #ffffff 0%, #FFD700 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
}
.tier-gold:hover { box-shadow: 0 30px 60px rgba(255, 215, 0, 0.15); border-color: #FFD700; }

/* Tier 3: Silver */
.tier-silver { border-top: 2px solid rgba(192, 192, 192, 0.4); }
.tier-silver .award-glow { background: #C0C0C0; }
.tier-silver .award-rank {
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(192, 192, 192, 0.3);
}
.tier-silver:hover { box-shadow: 0 30px 60px rgba(192, 192, 192, 0.15); border-color: #C0C0C0; }

/* =========================================
   PORTFOLIO (REFERANS PROJELER) BÖLÜMÜ
========================================= */

/* =========================================
   WHY US (NEDEN BİZ) BÖLÜMÜ
========================================= */
.why-us-section {
    padding: 150px 0;
    background-color: var(--bg-pure);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    margin-top: 80px;
}

.feature-card {
    padding: 50px 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.feature-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(0, 240, 255, 0.08);
    color: var(--accent);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 240, 255, 0.15);
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--accent);
    color: var(--bg-pure);
    box-shadow: 0 15px 30px rgba(0, 240, 255, 0.4);
    transform: scale(1.15) rotate(5deg);
}

.feature-icon-wrapper svg { width: 30px; height: 30px; }

.feature-title {
    font-family: var(--font-premium);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   HAKKIMIZDA (ABOUT) BÖLÜMÜ
========================================= */
.about-section {
    padding: 150px 0;
    background-color: var(--bg-pure);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-desc {
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 50px;
}

.mission-vision { display: flex; flex-direction: column; gap: 40px; }

.mv-box { display: flex; gap: 25px; align-items: flex-start; }

.mv-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 240, 255, 0.08);
    color: var(--accent);
    border-radius: 16px;
    flex-shrink: 0;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.mv-icon svg { width: 30px; height: 30px; }

.mv-text h4 {
    font-family: var(--font-premium);
    color: var(--text-main);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.mv-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.about-visual {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 0;
}

.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 50px;
    border-radius: 30px;
    z-index: 2;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.card-primary {
    top: 5%;
    left: 5%;
    width: 350px;
    border-top: 2px solid rgba(0, 240, 255, 0.4);
    animation: floatPremium 7s ease-in-out infinite;
}

.card-secondary {
    bottom: 5%;
    right: 0%;
    width: 320px;
    background: rgba(10, 10, 12, 0.9);
    border-top: 2px solid rgba(181, 60, 255, 0.4);
    animation: floatPremium 9s ease-in-out infinite alternate-reverse;
}

.glass-card h3 {
    font-family: var(--font-premium);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 15px;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.glass-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

@keyframes floatPremium {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* =========================================
   BLOG BÖLÜMÜ
========================================= */
.blog-section {
    padding: 150px 0;
    background-color: var(--bg-pure);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 50px;
}

.blog-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-12px);
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.blog-image {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.blog-image .img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0c;
    color: rgba(255,255,255,0.05);
    font-size: 2rem;
    font-family: var(--font-premium);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.blog-card:hover .blog-image .img-placeholder {
    transform: scale(1.08);
}

.blog-category {
    position: absolute;
    top: 25px;
    left: 25px;
    background: var(--accent);
    color: var(--bg-pure);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.3);
}

.blog-content { padding: 40px; }

.blog-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.blog-title {
    font-family: var(--font-premium);
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.blog-title a { color: var(--text-main); text-decoration: none; transition: var(--transition-smooth); }
.blog-title a:hover { color: var(--accent); }

.blog-excerpt {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.read-more svg { transition: transform 0.4s; }
.read-more:hover { color: var(--text-main); }
.read-more:hover svg { transform: translateX(8px); }

/* =========================================
   CONTACT (İLETİŞİM) BÖLÜMÜ
========================================= */
.contact-section {
    padding: 150px 0;
    background-color: var(--bg-pure);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 80px;
    align-items: center;
}

.contact-info { display: flex; flex-direction: column; gap: 30px; }

.info-card {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 35px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(12px);
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.info-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 240, 255, 0.08);
    color: var(--accent);
    border-radius: 16px;
    flex-shrink: 0;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.info-icon svg { width: 30px; height: 30px; }

.info-text h4 {
    font-family: var(--font-premium);
    color: var(--text-main);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.info-text p, .info-text a {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    text-decoration: none;
    transition: color 0.3s;
}

.info-text a:hover { color: var(--accent); }

/* Sürekli Pulse Yapan WhatsApp Butonu */
.whatsapp-premium-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 24px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-family: var(--font-premium);
    font-size: 1.2rem;
    font-weight: 800;
    margin-top: 15px;
    transition: var(--transition-smooth);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    animation: pulseWhatsapp 2s infinite;
}

@keyframes pulseWhatsapp {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-premium-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
    animation: none;
}

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.map-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.map-wrapper iframe {
    filter: grayscale(100%) invert(95%) contrast(85%) hue-rotate(180deg);
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.map-wrapper iframe:hover {
    filter: grayscale(80%) invert(95%) contrast(85%) hue-rotate(180deg);
    opacity: 1;
}

/* =====================================================
   ASGARD DİJİTAL — PREMIUM FOOTER (COMPACT & NEON LINE)
===================================================== */

.asg-footer-ultimate {
    background-color: #020204;
    position: relative;
    overflow: hidden;
    padding: 70px 0 0 0; /* Üst boşluk azaltılarak footer daraltıldı */
    font-family: 'Inter', sans-serif;
    color: #888899;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

/* NAVBAR İLE %100 UYUMLU SABİT RENKLİ ÇİZGİ */
.asg-footer-ultimate::before {
    content: '';
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 2px; /* Kusursuz navbar çizgisi kalınlığı */
    background: linear-gradient(90deg, #00f0ff 0%, #b53cff 100%);
    opacity: 1;
    z-index: 3;
}

/* Arka Plan Hafif Işık Sızması */
.asg-footer-ultimate::after {
    content: '';
    position: absolute;
    bottom: -20%; right: -10%;
    width: 50vw; height: 50vw;
    background: radial-gradient(circle, rgba(181, 60, 255, 0.02) 0%, transparent 60%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

/* UFALTILMIŞ ASGARD FİLİGRANI (WATERMARK) */
.footer-watermark {
    position: absolute;
    bottom: -3%; /* Konumu daralan footer'a göre hizalandı */
    left: 50%;
    transform: translateX(-50%);
    font-size: 13vw; /* 20vw'den 13vw'ye düşürülerek ufaltıldı */
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.012);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    user-select: none;
}

/* İÇERİK YAPISI */
.f-ult-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.f-ult-grid {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 50px; /* Boşluk azaltılarak kompakt hale getirildi */
}

.f-ult-brand {
    flex: 0 0 35%;
}
.f-ult-logo {
    max-width: 200px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.05));
}
.f-ult-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #a1a1aa;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Sosyal Medya */
.f-ult-socials { display: flex; gap: 15px; }
.f-ult-social-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex; justify-content: center; align-items: center;
    color: #fff;
    transition: all 0.3s ease;
}
.f-ult-social-btn svg { width: 18px; height: 18px; }
.f-ult-social-btn:hover {
    background: #00f0ff;
    border-color: #00f0ff;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 240, 255, 0.3);
}

/* Sağ Menüler */
.f-ult-nav-wrapper {
    display: flex;
    gap: 80px;
    flex: 1;
    justify-content: flex-end;
}
.f-ult-title {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.f-ult-title span { color: #00f0ff; font-weight: 900; margin-right: 5px; }

.f-ult-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.f-ult-list a {
    color: #888899; text-decoration: none; font-size: 0.95rem;
    position: relative; display: inline-block; transition: 0.3s;
}
.f-ult-list a::after {
    content: ''; position: absolute; left: 0; bottom: -4px;
    width: 0; height: 1px; background: #00f0ff; transition: width 0.3s ease;
}
.f-ult-list a:hover { color: #fff; }
.f-ult-list a:hover::after { width: 100%; }

/* İletişim */
.f-ult-contact-item { margin-bottom: 20px; }
.f-ult-contact-item strong { display: block; color: #fff; font-weight: 600; margin-bottom: 6px; font-size: 0.85rem; letter-spacing: 0.5px; text-transform: uppercase; }
.f-ult-contact-item span, .f-ult-contact-item a { color: #888899; text-decoration: none; font-size: 0.9rem; line-height: 1.6; transition: 0.3s; display: block; }
.f-ult-contact-item a:hover { color: #00f0ff; }

/* Alt Bilgi */
.f-ult-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 25px 0;
    display: flex; justify-content: space-between; align-items: center;
    position: relative; z-index: 2;
}
.f-ult-copy { font-size: 0.85rem; color: #666677; }
.f-ult-copy strong { color: #fff; font-weight: 600; }
.f-ult-legal { display: flex; gap: 25px; }
.f-ult-legal a { color: #666677; text-decoration: none; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; }
.f-ult-legal a:hover { color: #fff; }

/* Responsive Düzenlemeler */
@media (max-width: 1024px) {
    .f-ult-nav-wrapper { gap: 40px; }
    .footer-watermark { font-size: 16vw; }
}
@media (max-width: 768px) {
    .f-ult-grid { flex-direction: column; gap: 40px; }
    .f-ult-brand { flex: 0 0 100%; }
    .f-ult-nav-wrapper { flex-direction: column; gap: 35px; justify-content: flex-start; }
    .f-ult-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .footer-watermark { font-size: 20vw; bottom: -1%; }
}

/* =========================================
   1. ABOUT.PHP - INNER HERO ULTRA
========================================= */
.inner-hero-ultra {
    position: relative;
    padding: 240px 0 120px 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(10, 10, 15, 0) 0%, var(--bg-pure) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(0, 240, 255, 0.2) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    animation: driftParticles 20s linear infinite;
}

@keyframes driftParticles {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

.hero-supertitle {
    display: inline-block;
    color: var(--accent);
    font-family: var(--font-premium);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.inner-hero-title {
    font-family: var(--font-premium);
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    text-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
}

.inner-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* =========================================
   2. ABOUT MANIFESTO & YAN STAT KARTLARI
========================================= */
.about-manifesto {
    padding: 150px 0;
    position: relative;
    z-index: 5;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: center;
}

.premium-paragraph {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 25px;
}

.premium-paragraph.lead {
    font-family: var(--font-premium);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-main);
    border-left: 4px solid var(--accent);
    padding-left: 25px;
    margin-bottom: 40px;
}

.manifesto-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-glass-card {
    display: flex;
    gap: 25px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(16px);
    transition: var(--transition-smooth);
}

.stat-glass-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateX(-10px);
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 240, 255, 0.08);
    color: var(--accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg { width: 30px; height: 30px; }

.stat-info h4 {
    font-family: var(--font-premium);
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 8px;
}

.stat-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =========================================
   3. TEAM ULTRA (KADRO)
========================================= */
.team-ultra-section {
    padding: 100px 0 150px 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.05);
}

.team-ultra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    margin-top: 70px;
}

.team-member-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 20px;
    transition: var(--transition-smooth);
    text-align: center;
}

.team-member-card:hover {
    transform: translateY(-15px);
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.member-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.2;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 25px;
}

.member-image .img-placeholder {
    width: 100%;
    height: 100%;
    background: #0a0a0c;
    color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-family: var(--font-premium);
    font-weight: 800;
    transition: transform 0.6s ease;
}

.team-member-card:hover .member-image .img-placeholder {
    transform: scale(1.08);
}

.member-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    display: flex;
    justify-content: center;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s ease;
}

.team-member-card:hover .member-overlay {
    transform: translateY(0);
    opacity: 1;
}

.social-icon {
    width: 45px; height: 45px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(5px);
    transition: var(--transition-smooth);
}

.social-icon:hover { background: var(--accent); color: #000; transform: translateY(-5px); }
.social-icon svg { width: 20px; height: 20px; }

.member-content h3 {
    font-family: var(--font-premium);
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.member-content .role {
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* =========================================
   4. PARTNERS ULTRA
========================================= */
.partners-ultra-section {
    padding: 120px 0;
    background: #030304;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.partners-ultra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.partner-box {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    height: 150px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.partner-box:hover {
    background: rgba(255,255,255,0.03);
    border-color: rgba(0, 240, 255, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.partner-glow-fx {
    position: absolute;
    width: 100px; height: 100px;
    background: var(--accent);
    filter: blur(50px);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1;
}

.partner-box:hover .partner-glow-fx { opacity: 0.2; transform: scale(1.5); }

.partner-name {
    font-family: var(--font-premium);
    font-size: 1.3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
    letter-spacing: 2px;
}

.partner-box:hover .partner-name {
    color: var(--text-main);
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

@media (max-width: 1024px) {
    .manifesto-grid { grid-template-columns: 1fr; gap: 60px; }
}

/* =========================================
   SERVICES.PHP (DEVASA YATAY KARTLAR - V2)
========================================= */
.services-detailed {
    padding: 100px 0 100px 0;
    position: relative;
    z-index: 5;
}

.services-list-grid {
    display: flex;
    flex-direction: column;
    gap: 60px; /* Kartlar arası boşluk devasa oldu */
}

.service-row-card {
    display: flex;
    gap: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 60px 50px;
    backdrop-filter: blur(16px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    align-items: flex-start; 
}

/* İlk karta (Reklam) Özel Elektrik Efekti */
.service-row-card.premium-highlight {
    background: linear-gradient(145deg, rgba(10,10,15,0.9) 0%, rgba(0, 240, 255, 0.05) 100%);
    border: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.05);
}

.service-row-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--accent);
    transform: scaleY(0);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transform-origin: bottom;
}

.service-row-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    transform: translateX(10px);
}

.service-row-card.premium-highlight:hover {
    box-shadow: 0 30px 60px rgba(0, 240, 255, 0.15);
}

.service-row-card:hover::before {
    transform: scaleY(1);
}

.row-icon {
    width: 100px;
    height: 100px;
    background: rgba(0, 240, 255, 0.08);
    color: var(--accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(0, 240, 255, 0.15);
    transition: var(--transition-smooth);
}

.row-icon svg { width: 50px; height: 50px; }

.service-row-card:hover .row-icon {
    background: var(--accent);
    color: var(--bg-pure);
    box-shadow: 0 15px 30px rgba(0, 240, 255, 0.4);
    transform: scale(1.1) rotate(5deg);
}

.row-content {
    flex-grow: 1;
}

.row-content h3 {
    font-family: var(--font-premium);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.row-content p {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 95%;
}

.service-sub-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
    padding: 25px 30px;
    background: rgba(0,0,0,0.4);
    border-radius: 16px;
    border-left: 2px solid rgba(0, 240, 255, 0.3);
}

.sub-feature {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.sub-feature strong {
    color: var(--text-main);
    font-weight: 700;
    font-family: var(--font-premium);
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-stack span {
    padding: 8px 18px;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =========================================
   VIP SLA BÖLÜMÜ (YENİ)
========================================= */
.vip-sla-section {
    padding: 80px 0;
    position: relative;
    z-index: 5;
}

.sla-box {
    background: linear-gradient(135deg, rgba(20,20,25,0.9) 0%, rgba(5,5,7,0.9) 100%);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 30px rgba(0, 240, 255, 0.03);
}

.sla-content h2 {
    font-family: var(--font-premium);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.sla-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
}

/* =========================================
   İŞ SÜRECİ (ASGARD ALGORİTMASI)
========================================= */
.work-process-section {
    padding: 120px 0 150px 0;
    background: #020203;
    border-top: 1px solid rgba(255,255,255,0.03);
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 80px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.3), transparent);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.step-number {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px auto;
    background: var(--bg-pure);
    border: 2px solid rgba(0, 240, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-premium);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    transition: var(--transition-smooth);
}

.process-step:hover .step-number {
    background: var(--accent);
    color: var(--bg-pure);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.6);
    transform: scale(1.1);
}

.process-step h4 {
    font-family: var(--font-premium);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 15px;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Responsive Düzenlemeler */
@media (max-width: 1024px) {
    .service-row-card { flex-direction: column; text-align: center; padding: 40px; align-items: center; }
    .service-sub-features { text-align: left; } 
    .service-row-card::before { width: 100%; height: 4px; transform: scaleX(0); transform-origin: left; }
    .service-row-card:hover::before { transform: scaleX(1); }
    .row-content p { max-width: 100%; margin: 0 auto 25px auto; }
    .tech-stack { justify-content: center; }
    .sla-box { flex-direction: column; text-align: center; padding: 40px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 60px; }
    .process-grid::before { display: none; }
}

@media (max-width: 768px) {
    .process-grid { grid-template-columns: 1fr; }
}

/* =========================================
   ASGARD AWARDS PAGE (META & GOOGLE ODAKLI)
========================================= */

.asg-awards-page {
    background-color: #030305;
    color: #ffffff;
    font-family: var(--font-body, sans-serif);
    padding-top: 180px;
    padding-bottom: 120px;
    position: relative;
}

.asg-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.asg-section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 50px;
    text-align: center;
    color: #fff;
}

.asg-text-glow {
    background: linear-gradient(90deg, #fff, #00f0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- 1. HERO BÖLÜMÜ --- */
.asg-hero-section {
    text-align: center;
    margin-bottom: 80px;
}

.asg-badge {
    display: inline-block;
    background: rgba(0, 240, 255, 0.05);
    color: #00f0ff;
    padding: 8px 24px;
    border-radius: 50px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-size: 0.85rem;
}

.asg-hero-title {
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #fff;
}

.asg-hero-subtitle {
    font-size: 1.1rem;
    color: #999;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* --- 2. MANİFESTO (ÖVEN YAZI) BÖLÜMÜ --- */
.asg-manifesto-section {
    margin-bottom: 120px;
}

.asg-manifesto-content {
    background: linear-gradient(145deg, rgba(20, 20, 25, 0.8), rgba(5, 5, 8, 0.8));
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    box-shadow: inset 0 0 40px rgba(0, 240, 255, 0.03), 0 20px 50px rgba(0,0,0,0.5);
}

.asg-manifesto-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #fff;
}

.asg-manifesto-content p {
    color: #bbb;
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.asg-manifesto-content p strong {
    color: #00f0ff;
    font-weight: 700;
}

/* --- 3. PARTNERLER --- */
.asg-partners-section {
    margin-bottom: 120px;
}

.asg-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.asg-partner-card {
    background: rgba(10, 10, 14, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    transition: all 0.4s ease;
    height: 100%; /* Taşmaları engellemek için */
}

.asg-partner-card:hover {
    border-color: rgba(0, 240, 255, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.1);
}

.asg-partner-logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.meta-bg { background: #0668E1; }
.google-bg { background: #fff; }

.asg-partner-content {
    flex-grow: 1; /* Yazı ne kadar uzun olursa olsun esneyecek */
}

.asg-partner-content h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.asg-partner-content p {
    font-size: 1rem;
    color: #999;
    line-height: 1.7;
    margin: 0;
}

/* --- 4. ÖDÜLLER KARTLARI --- */
.asg-trophy-section {
    margin-bottom: 80px;
}

.asg-trophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.asg-trophy-card {
    background: linear-gradient(145deg, #0a0a0e, #050507);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 35px;
    border-radius: 20px;
    transition: all 0.4s;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%; /* Yazı taşmasını engelleyen sihirli dokunuş */
}

.asg-trophy-card:hover {
    transform: translateY(-8px);
    border-color: #00f0ff;
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.05);
}

.asg-trophy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.asg-trophy-year {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #bbb;
}

.asg-trophy-icon {
    font-size: 1.5rem;
    color: #00f0ff;
    background: rgba(0, 240, 255, 0.1);
    width: 45px; height: 45px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
}

.asg-trophy-cat {
    color: #00f0ff;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-weight: 700;
}

.asg-trophy-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.asg-trophy-desc {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1; /* Yazı alanını esnek yapar, taşırmaz */
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .asg-awards-page { padding-top: 140px; }
    .asg-manifesto-content { padding: 40px 20px; }
    .asg-partner-card { flex-direction: column; align-items: center; text-align: center; }
    .asg-hero-title { font-size: 2.2rem; }
    .asg-partners-grid { grid-template-columns: 1fr; }
}

/* =========================================
   ASGARD BLOG PAGE (İZOLE VE ÇAKIŞMAZ)
========================================= */

.asg-blog-page {
    background-color: #030305;
    color: #ffffff;
    font-family: var(--font-body, sans-serif);
    padding-top: 180px;
    padding-bottom: 120px;
}

/* Ortak Container */
.asg-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 25px;
}

/* --- 1. HERO BÖLÜMÜ --- */
.asg-blog-hero {
    text-align: center;
    margin-bottom: 80px;
}

.asg-blog-hero .asg-badge {
    display: inline-block;
    background: rgba(0, 240, 255, 0.05);
    color: #00f0ff;
    padding: 8px 24px;
    border-radius: 50px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-size: 0.85rem;
}

.asg-blog-hero .asg-hero-title {
    font-family: var(--font-premium, sans-serif);
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #fff;
}

.asg-text-glow {
    background: linear-gradient(90deg, #fff, #00f0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.asg-blog-hero .asg-hero-subtitle {
    font-size: 1.1rem;
    color: #999;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
}

/* --- 2. ÖNE ÇIKAN MAKALE (FEATURED POST) --- */
.asg-featured-post-section {
    margin-bottom: 60px;
}

.asg-featured-card {
    display: flex;
    background: linear-gradient(145deg, #0a0a0e, #050507);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.asg-featured-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.asg-featured-image {
    width: 55%;
    position: relative;
    overflow: hidden;
}

.asg-featured-image .img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: #0d0d12;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-premium, sans-serif);
    font-size: 2rem;
    font-weight: 900;
    color: rgba(255,255,255,0.05);
    border-right: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.asg-featured-card:hover .asg-featured-image .img-placeholder {
    transform: scale(1.05);
}

.asg-featured-content {
    width: 45%;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.asg-post-category {
    color: #00f0ff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.asg-post-title {
    font-family: var(--font-premium, sans-serif);
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 20px;
}

.asg-post-excerpt {
    color: #888;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.asg-post-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 30px;
    font-weight: 600;
}

.asg-btn-read {
    align-self: flex-start;
    padding: 12px 25px;
    background: rgba(0, 240, 255, 0.1);
    color: #00f0ff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    transition: all 0.3s;
}

.asg-btn-read:hover {
    background: #00f0ff;
    color: #000;
    transform: translateY(-3px);
}

/* --- 3. KATEGORİ FİLTRELERİ --- */
.asg-blog-filters {
    margin-bottom: 60px;
}

.asg-filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.asg-filter-btn {
    background: transparent;
    color: #bbb;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.asg-filter-btn:hover, .asg-filter-btn.active {
    background: rgba(0, 240, 255, 0.1);
    color: #00f0ff;
    border-color: #00f0ff;
}

/* --- 4. BLOG KARTLARI (GRID) --- */
.asg-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.asg-post-card {
    background: rgba(10, 10, 14, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.asg-post-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.asg-card-image {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
}

.asg-card-image .img-placeholder {
    width: 100%;
    height: 100%;
    background: #0d0d12;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-premium, sans-serif);
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255,255,255,0.05);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.asg-post-card:hover .asg-card-image .img-placeholder {
    transform: scale(1.08);
}

.asg-card-cat {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #00f0ff;
    color: #000;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.asg-card-body {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.asg-card-title {
    font-family: var(--font-premium, sans-serif);
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s;
}

.asg-post-card:hover .asg-card-title {
    color: #00f0ff;
}

.asg-card-text {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.asg-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.asg-card-footer .asg-date {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

.asg-read-link {
    color: #00f0ff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.asg-read-link:hover {
    letter-spacing: 1px;
}

/* --- 5. SAYFALAMA (PAGINATION) --- */
.asg-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.asg-page-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #bbb;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.asg-page-btn:hover, .asg-page-btn.active {
    background: rgba(0, 240, 255, 0.1);
    color: #00f0ff;
    border-color: #00f0ff;
}

.asg-page-dots {
    color: #666;
    font-weight: bold;
}

/* --- MOBİL UYUM --- */
@media (max-width: 992px) {
    .asg-featured-card { flex-direction: column; }
    .asg-featured-image { width: 100%; height: 300px; }
    .asg-featured-image .img-placeholder { min-height: 300px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .asg-featured-content { width: 100%; padding: 40px 30px; }
}

@media (max-width: 768px) {
    .asg-blog-page { padding-top: 140px; }
    .asg-hero-title { font-size: 2.2rem; }
    .asg-post-title { font-size: 1.8rem; }
}

/* =========================================
   ASGARD BLOG DETAIL (MAKALE OKUMA SAYFASI)
========================================= */

.asg-article-page {
    background-color: #030305;
    color: #ffffff;
    font-family: var(--font-body, 'Inter', sans-serif);
    padding-top: 150px;
    padding-bottom: 100px;
}

/* Ortak Geniş Container (Kapak ve Hero için) */
.asg-article-container, .asg-cover-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Sadece Yazı İçin Dar Container (Göz Yormaması İçin) */
.asg-content-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 25px;
}

.asg-text-glow {
    background: linear-gradient(90deg, #fff, #00f0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- 1. MAKALE HERO BÖLÜMÜ --- */
.asg-article-hero {
    margin-bottom: 50px;
}

.asg-back-link {
    display: inline-block;
    color: #888;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 40px;
    transition: color 0.3s;
}

.asg-back-link:hover {
    color: #00f0ff;
}

.asg-article-meta-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: #888;
    font-weight: 600;
}

.asg-cat-badge {
    background: rgba(0, 240, 255, 0.1);
    color: #00f0ff;
    padding: 5px 12px;
    border-radius: 6px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    letter-spacing: 1px;
}

.asg-article-title {
    font-family: var(--font-premium, sans-serif);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: -1px;
}

.asg-article-spot {
    font-size: 1.2rem;
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Yazar Kutusu */
.asg-author-box {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 25px;
}

.asg-author-avatar {
    width: 50px;
    height: 50px;
    background: #0a0a0f;
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00f0ff;
}

.asg-author-avatar svg { width: 24px; height: 24px; }

.asg-author-info {
    display: flex;
    flex-direction: column;
}

.asg-author-info strong {
    color: #fff;
    font-size: 1.05rem;
}

.asg-author-info span {
    color: #666;
    font-size: 0.85rem;
}

/* --- 2. KAPAK GÖRSELİ --- */
.asg-article-cover {
    margin-bottom: 60px;
}

.asg-article-cover .img-placeholder {
    width: 100%;
    height: 500px;
    background: #0d0d12;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-premium, sans-serif);
    font-size: 2rem;
    font-weight: 900;
    color: rgba(255,255,255,0.05);
}

/* --- 3. MAKALE İÇERİĞİ (TYPOGRAPHY) --- */
.asg-article-content {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #ccc;
}

.asg-article-content p {
    margin-bottom: 30px;
}

.asg-lead-text {
    font-size: 1.35rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 40px !important;
}

.asg-article-content h2 {
    font-family: var(--font-premium, sans-serif);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-top: 60px;
    margin-bottom: 25px;
}

/* Liste Tasarımı */
.asg-article-list {
    margin-bottom: 40px;
    padding-left: 20px;
    list-style: none;
}

.asg-article-list li {
    position: relative;
    margin-bottom: 15px;
    padding-left: 30px;
}

.asg-article-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00f0ff;
    font-weight: bold;
}

/* Blockquote (Alıntı) Tasarımı */
.asg-article-content blockquote {
    font-family: var(--font-premium, sans-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.6;
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(145deg, rgba(0, 240, 255, 0.05), transparent);
    border-left: 4px solid #00f0ff;
    border-radius: 0 16px 16px 0;
}

/* --- 4. PAYLAŞ VE ETİKETLER --- */
.asg-article-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.asg-article-footer .asg-content-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.asg-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.asg-tags span {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #aaa;
}

.asg-share-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.asg-share-section span {
    font-weight: 600;
    color: #888;
}

.asg-share-buttons {
    display: flex;
    gap: 10px;
}

.asg-share-buttons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.asg-share-buttons a:hover {
    background: #00f0ff;
    color: #000;
    transform: translateY(-3px);
}

/* --- 5. İLGİLİ MAKALELER --- */
.asg-related-articles {
    margin-top: 100px;
    padding-top: 80px;
    background: #050507;
    border-top: 1px solid rgba(255,255,255,0.02);
}

.asg-related-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
}

.asg-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.asg-related-card {
    background: rgba(10, 10, 14, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s;
}

.asg-related-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-5px);
}

.asg-related-card .asg-cat {
    color: #00f0ff;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.asg-related-card h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.4;
}

.asg-related-card .asg-read-link {
    color: #00f0ff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

/* --- MOBİL UYUM --- */
@media (max-width: 768px) {
    .asg-article-page { padding-top: 120px; }
    .asg-article-title { font-size: 2.2rem; }
    .asg-article-cover .img-placeholder { height: 300px; }
    .asg-article-content blockquote { font-size: 1.3rem; padding: 25px; margin: 40px 0; }
}

/* =========================================
   ASGARD CONTACT PAGE (FORMSUZ, DİREKT HAT)
========================================= */

.asg-contact-page {
    background-color: #030305;
    color: #ffffff;
    font-family: var(--font-body, sans-serif);
    padding-top: 180px;
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
}

/* Arka plana çok hafif bir mavi radar/glow efekti */
.asg-contact-page::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.asg-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 5;
}

.asg-text-glow {
    background: linear-gradient(90deg, #fff, #00f0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- 1. HERO BÖLÜMÜ --- */
.asg-contact-hero {
    text-align: center;
    margin-bottom: 80px;
}

.asg-contact-hero .asg-badge {
    display: inline-block;
    background: rgba(0, 240, 255, 0.05);
    color: #00f0ff;
    padding: 8px 24px;
    border-radius: 50px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-size: 0.85rem;
}

.asg-hero-title {
    font-family: var(--font-premium, sans-serif);
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #fff;
}

.asg-hero-subtitle {
    font-size: 1.1rem;
    color: #999;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
}

/* --- 2. GRID YAPI (SOL VİZYON - SAĞ BAĞLANTILAR) --- */
.asg-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Sol Taraf (Vizyon & Gececi Felsefesi) */
.asg-contact-info-side {
    display: flex;
    flex-direction: column;
}

.asg-info-title {
    font-family: var(--font-premium, sans-serif);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.asg-info-desc {
    color: #bbb;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.asg-philosophy-card {
    display: flex;
    gap: 20px;
    background: linear-gradient(145deg, rgba(0, 240, 255, 0.05), transparent);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 2px solid #00f0ff;
    padding: 35px 30px;
    border-radius: 16px;
    margin-bottom: 40px;
}

.asg-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 240, 255, 0.05);
    color: #00f0ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.asg-info-icon svg { width: 24px; height: 24px; }

.asg-info-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.asg-info-text p {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Sosyal Ağlar */
.asg-social-cluster {
    display: flex;
    align-items: center;
    gap: 20px;
}

.asg-social-cluster span {
    font-weight: 600;
    color: #888;
}

.asg-social-links {
    display: flex;
    gap: 15px;
}

.asg-social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.asg-social-links a:hover {
    background: #00f0ff;
    color: #000;
    border-color: #00f0ff;
    transform: translateY(-3px);
}

/* Sağ Taraf (Tıklanabilir Bağlantı Kartları) */
.asg-contact-links-side {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.asg-direct-link-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px 40px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Link olan kartların üzerine gelince efekt */
a.asg-direct-link-card:hover {
    transform: translateX(10px);
    border-color: rgba(0, 240, 255, 0.3);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.asg-direct-link-card .card-icon {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.whatsapp-link .card-icon { background: rgba(37, 211, 102, 0.1); color: #25D366; }
.email-link .card-icon { background: rgba(0, 240, 255, 0.1); color: #00f0ff; }
.location-link .card-icon { background: rgba(255, 255, 255, 0.05); color: #fff; }

.asg-direct-link-card .card-icon svg { width: 30px; height: 30px; }

a.asg-direct-link-card:hover .card-icon {
    transform: scale(1.1);
}

.whatsapp-link:hover .card-icon { background: #25D366; color: #fff; box-shadow: 0 0 20px rgba(37, 211, 102, 0.4); }
.email-link:hover .card-icon { background: #00f0ff; color: #000; box-shadow: 0 0 20px rgba(0, 240, 255, 0.4); }

.card-text h3 {
    font-family: var(--font-premium, sans-serif);
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    transition: color 0.3s;
}

a.whatsapp-link:hover .card-text h3 { color: #25D366; }
a.email-link:hover .card-text h3 { color: #00f0ff; }

.card-text p {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.card-text .highlight-text {
    display: inline-block;
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Mobil Uyum */
@media (max-width: 992px) {
    .asg-contact-grid { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 768px) {
    .asg-contact-page { padding-top: 140px; }
    .asg-hero-title { font-size: 2.2rem; }
    .asg-direct-link-card { flex-direction: column; text-align: center; padding: 30px; }
}


/* =====================================================
   GLOBAL METİN SEÇİM (SELECTION) RENGİ
===================================================== */
::selection {
    background-color: #00f0ff; /* Asgard Neon Cam Göbeği */
    color: #000000; /* Kusursuz okunabilirlik için tam siyah */
    text-shadow: none; /* Seçim sırasında metin gölgelerinin göz yormaması için */
}

::-moz-selection {
    background-color: #00f0ff;
    color: #000000;
    text-shadow: none;
}


/* =====================================================
   4K VE ULTRA GENİŞ EKRAN (1920px - 2560px+) NAVBAR DÜZELTMESİ
===================================================== */




