/* ==================== 1. SENİN GÖNDERDİĞİN ORİJİNAL TASARIM KODLARI ==================== */
:root {
    /* Brand Colors - Hanedan Identity */
    --brand-burgundy: #8B1538;
    --brand-burgundy-dark: #6B0F2B;
    --brand-burgundy-light: #A5335A;
    --brand-navy: #0A1220;
    --brand-navy-medium: #1A2332;
    --brand-navy-light: #2D3A4F;
    --brand-accent: #B8925F;
    --brand-accent-light: #D4AF7A;
    --brand-silver: #A8B3C7;
    --brand-silver-light: #C8D1E0;
    --pearl: #F8F9FB;
    --white: #FFFFFF;
    --black: #0D0D0D;
    
    --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.03);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.18);
    --shadow-2xl: 0 25px 80px rgba(0, 0, 0, 0.25);
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4.5rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 28px;
    
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Manrope', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-body);
    background: var(--pearl);
    color: var(--brand-navy-medium);
    line-height: 1.65;
    overflow-x: hidden;
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--brand-navy);
    overflow: hidden;
    isolation: isolate;
    padding: var(--space-4xl) var(--space-xl);
}

.hero-backdrop { position: absolute; inset: 0; z-index: 1; }

.backdrop-gradient {
    position: absolute; inset: 0;
    background: 
        radial-gradient(ellipse at 15% 25%, rgba(139, 21, 56, 0.25) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 75%, rgba(139, 21, 56, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(184, 146, 95, 0.08) 0%, transparent 60%),
        linear-gradient(135deg, #0A1220 0%, #1A2332 25%, #8B1538 50%, #1A2332 75%, #0A1220 100%);
}

.backdrop-mesh {
    position: absolute; inset: -50%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(139, 21, 56, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(139, 21, 56, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(184, 146, 95, 0.03) 0%, transparent 35%);
    animation: mesh-float 25s ease-in-out infinite;
}

@keyframes mesh-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5%, -5%) rotate(1deg); }
    50% { transform: translate(-3%, 3%) rotate(-1deg); }
    75% { transform: translate(4%, -2%) rotate(0.5deg); }
}

.hero-shapes { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.shape { position: absolute; opacity: 0.06; animation: shape-float 20s ease-in-out infinite; }

.shape-1 {
    top: 10%; right: 15%; width: 300px; height: 300px;
    background: linear-gradient(135deg, var(--brand-burgundy), var(--brand-burgundy-dark));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: 0s;
}

.shape-2 {
    bottom: 15%; left: 10%; width: 250px; height: 250px;
    background: linear-gradient(135deg, var(--brand-accent), var(--brand-burgundy-light));
    border-radius: 70% 30% 30% 70% / 60% 60% 40% 40%;
    animation-delay: 5s;
}

.shape-3 {
    top: 50%; left: 50%; width: 200px; height: 200px;
    background: linear-gradient(135deg, var(--brand-burgundy-light), var(--brand-navy-light));
    border-radius: 50% 50% 30% 70% / 50% 50% 70% 30%;
    animation-delay: 10s;
    transform: translate(-50%, -50%);
}

@keyframes shape-float {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(30px, -40px) scale(1.1) rotate(120deg); }
    66% { transform: translate(-40px, 30px) scale(0.9) rotate(240deg); }
}

.hero-scanlines {
    position: absolute; inset: 0; z-index: 3;
    background: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.01) 0px, rgba(255, 255, 255, 0.01) 1px, transparent 1px, transparent 3px);
    pointer-events: none; animation: scanline-move 8s linear infinite;
}

@keyframes scanline-move { 0% { transform: translateY(0); } 100% { transform: translateY(20px); } }

.hero-spotlight {
    position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 150%; height: 150%;
    background: radial-gradient(ellipse at center, rgba(139, 21, 56, 0.08) 0%, rgba(139, 21, 56, 0.04) 40%, transparent 70%);
    z-index: 4; pointer-events: none; animation: spotlight-pulse 10s ease-in-out infinite;
}

@keyframes spotlight-pulse {
    0%, 100% { opacity: 0.4; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.6; transform: translateX(-50%) scale(1.1); }
}

.hero-container {
    position: relative; z-index: 10; max-width: 1400px; width: 100%; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 480px; gap: var(--space-5xl); align-items: center;
}

.hero-main { animation: hero-content-in 1.4s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes hero-content-in { from { opacity: 0; transform: translateX(-80px); } to { opacity: 1; transform: translateX(0); } }

.hero-badge {
    display: inline-flex; align-items: center; gap: var(--space-md);
    background: rgba(255, 255, 255, 0.04); backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px);
    border-left: 3px solid rgba(255, 255, 255, 0.2); padding: 16px 32px 16px 28px; margin-bottom: var(--space-3xl);
    position: relative; clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}
.hero-badge::before {
    content: ''; position: absolute; top: 0; right: 0; width: 12px; height: 12px;
    background: rgba(255, 255, 255, 0.2); opacity: 0.6; clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.hero-badge::after {
    content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    animation: badge-shine 4s infinite;
}
@keyframes badge-shine { 0%, 100% { transform: translateX(-100%); } 50% { transform: translateX(100%); } }

.badge-dot {
    width: 8px; height: 8px; background: rgba(255, 255, 255, 0.9);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5); animation: badge-rotate 4s linear infinite;
}
@keyframes badge-rotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.badge-text {
    font-family: var(--font-display); font-size: 12px; font-weight: 800;
    color: rgba(255, 255, 255, 0.9); text-transform: uppercase; letter-spacing: 2.5px;
}

.hero h1 {
    font-family: var(--font-display); font-size: clamp(48px, 7vw, 92px); font-weight: 800;
    line-height: 1.1; letter-spacing: -0.03em; color: var(--white); margin-bottom: var(--space-2xl);
}

.headline-wrapper { display: flex; flex-direction: column; gap: var(--space-xs); }
.headline-part { display: block; }
.headline-part-1 { animation: part-reveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both; }
.headline-part-2 { animation: part-reveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both; }
.headline-part-3 { animation: part-reveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both; }
@keyframes part-reveal { from { opacity: 0; transform: translateY(40px) translateX(-20px); filter: blur(10px); } to { opacity: 1; transform: translateY(0) translateX(0); filter: blur(0); } }
.headline-accent { color: var(--brand-burgundy-light); }

.hero-description {
    font-family: var(--font-body); font-size: clamp(16px, 1.8vw, 20px); font-weight: 400;
    line-height: 1.8; color: rgba(255, 255, 255, 0.8); max-width: 560px;
    margin-bottom: var(--space-3xl); animation: desc-fade-in 1s ease-out 0.8s both;
}
@keyframes desc-fade-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.hero-actions { display: flex; gap: var(--space-lg); flex-wrap: wrap; animation: actions-fade-in 1s ease-out 1s both; }
@keyframes actions-fade-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.btn {
    position: relative; display: inline-flex; align-items: center; gap: var(--space-md);
    padding: 19px 40px; font-family: var(--font-display); font-size: 15px; font-weight: 700;
    text-decoration: none; border-radius: var(--radius-md); transition: all var(--transition-base);
    cursor: pointer; border: none; overflow: hidden; isolation: isolate; letter-spacing: 0.3px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--brand-burgundy) 0%, var(--brand-burgundy-dark) 100%);
    color: var(--white); box-shadow: 0 8px 32px rgba(139, 21, 56, 0.35);
}
.btn-primary::before {
    content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--brand-burgundy-light) 0%, var(--brand-burgundy) 100%);
    opacity: 0; transition: opacity var(--transition-base); z-index: -1;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 48px rgba(139, 21, 56, 0.45); }

.btn-secondary {
    background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(20px);
    color: var(--white); border: 1.5px solid rgba(255, 255, 255, 0.15);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* ==================== INSTAGRAM 3D SHOWCASE - FINAL PREMIUM ==================== */
/* ==================== HERO INSTAGRAM - KUSURSUZ GÖRSEL VE HİZALAMA ==================== */

.hero-visual {
    perspective: 2500px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38rem; 
    position: relative;
    z-index: 5;
    margin-top: -2rem; 
}

.instagram-3d-feed {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

/* GENEL KART TASARIMI */
.insta-card {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 2.5rem;
    overflow: hidden; /* Dışarı taşmayı engeller */
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    background: var(--brand-navy);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border: none !important;
}

/* GÖRSELLERİN KARTA TAM OTURMASINI SAĞLAYAN KRİTİK KOD */
.insta-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* Görseli karta tam yayar, boşluk bırakmaz */
    object-position: center !important; /* Görseli tam ortalar */
    display: block !important;
    transition: transform 1.2s ease;
}

/* YAN KARTLAR - Boyutlar rem ile sabitlendi */
.side-card {
    width: 18.5rem; 
    height: 24.5rem;
    z-index: 5; 
    opacity: 0.12;
    filter: grayscale(100%) blur(2px);
}

.left-card { 
    transform: translate(-50%, -50%) translateX(-17.5rem) rotateY(32deg) scale(0.8); 
}

.right-card { 
    transform: translate(-50%, -50%) translateX(17.5rem) rotateY(-32deg) scale(0.8); 
}

/* ANA KART - Boyutlar rem ile sabitlendi */
.main-card {
    width: 26.5rem; 
    height: 34rem;
    z-index: 10;
    transform: translate(-50%, -50%) translateZ(120px);
}

.main-card:hover {
    transform: translate(-50%, -55%) translateZ(180px);
}

.main-card:hover img {
    transform: scale(1.1); /* Hoverda görselin içinde hafif zoom */
}

/* YAN KART HOVER DURUMLARI */
.left-card:hover { 
    transform: translate(-50%, -50%) translateX(-16rem) rotateY(0deg) scale(0.92);
    opacity: 0.85;
    filter: grayscale(0%) blur(0px);
}

.right-card:hover { 
    transform: translate(-50%, -50%) translateX(16rem) rotateY(0deg) scale(0.92);
    opacity: 0.85;
    filter: grayscale(0%) blur(0px);
}

/* MİNİMAL ETİKET (Instagram Kullanıcı Adı) */
.insta-minimal-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 5;
    background: rgba(10, 18, 32, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.6rem 1.2rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none; /* Tıklamayı engellemez (üstteki link çalışır) */
}

.insta-minimal-label i { font-size: 1.1rem; }
.insta-minimal-label span { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.5px; }

/* BURGUNDY NEON GLOW */
.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%); /* Glow'u kartın biraz altına kaydır */
    width: 70%;
    height: 60%;
    background: var(--brand-burgundy);
    filter: blur(100px);
    opacity: 0.25;
    z-index: -1;
    pointer-events: none;
}

/* MOBİL HİZALAMA */
@media (max-width: 991px) {
    .hero-visual { height: 30rem; margin-top: 2rem; }
    .main-card { 
        width: 19rem; 
        height: 25rem; 
        transform: translate(-50%, -50%) translateZ(0) !important; 
    }
}
/* STATS */
.stats { position: relative; background: var(--white); padding: 0; overflow: hidden; }
.stats::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 120px;
    background: linear-gradient(to bottom, var(--pearl) 0%, rgba(248, 249, 251, 0.8) 30%, rgba(248, 249, 251, 0.4) 60%, transparent 100%); pointer-events: none;
}
.stats::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
    background: linear-gradient(to top, var(--pearl) 0%, rgba(248, 249, 251, 0.8) 30%, rgba(248, 249, 251, 0.4) 60%, transparent 100%); pointer-events: none;
}
.stats-container { max-width: 1400px; margin: 0 auto; padding: var(--space-4xl) var(--space-xl); display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { position: relative; padding: var(--space-3xl) var(--space-2xl); text-align: center; transition: all var(--transition-base); }
.stat-item::before {
    content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(139, 21, 56, 0.15) 20%, rgba(139, 21, 56, 0.15) 80%, transparent);
}
.stat-item:last-child::before { display: none; }
.stat-item:hover { transform: translateY(-8px); }
.stat-item:hover .stat-number { transform: scale(1.1); text-shadow: 0 0 40px rgba(139, 21, 56, 0.4); }

.stat-number {
    font-family: var(--font-display); font-size: clamp(48px, 6vw, 72px); font-weight: 800; line-height: 1;
    background: linear-gradient(135deg, var(--brand-burgundy) 0%, var(--brand-burgundy-light) 40%, var(--brand-silver) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: var(--space-md); display: block; position: relative; transition: all var(--transition-base);
}
.stat-number::before {
    content: attr(data-value); position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--brand-burgundy) 0%, var(--brand-silver) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    opacity: 0.15; filter: blur(10px); z-index: -1;
}
.stat-label { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--brand-navy-medium); text-transform: uppercase; letter-spacing: 2px; margin-bottom: var(--space-xs); }
.stat-sublabel { font-family: var(--font-body); font-size: 13px; font-weight: 400; color: var(--brand-silver); line-height: 1.5; }



/* ==================== SERVICES SECTION (PREMIUM FILTER & DESIGN) ==================== */
/* ==================== SERVICES SECTION (FINAL V3) ==================== */
.services {
    padding: 100px 0;
    background: var(--pearl);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-bg-decor { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.decor-circle {
    position: absolute; border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.05), rgba(10, 18, 32, 0.05));
    filter: blur(80px);
}

.services-container { max-width: 1400px; margin: 0 auto; }

/* HEADER */
.section-header { text-align: center; margin-bottom: 50px; }
.section-label {
    display: inline-block; font-family: var(--font-display); font-size: 12px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 2px; color: var(--brand-burgundy);
    margin-bottom: 15px; padding: 8px 20px; background: rgba(139, 21, 56, 0.05);
    border-radius: 30px;
}
.section-title {
    font-family: var(--font-display); font-size: 42px; font-weight: 800;
    color: var(--brand-navy); margin-bottom: 15px;
}
.section-description {
    font-family: var(--font-body); font-size: 16px; color: var(--brand-navy-light);
    max-width: 700px; margin: 0 auto;
}

/* FİLTRE BUTONLARI */
.filter-container {
    display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 40px;
}
.filter-btn {
    padding: 10px 25px; border-radius: 50px; border: 1px solid #e5e7eb;
    background: var(--white); color: var(--brand-navy);
    font-family: var(--font-display); font-weight: 700; font-size: 13px;
    cursor: pointer; transition: all 0.3s ease;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--brand-burgundy); color: var(--white); border-color: var(--brand-burgundy);
    box-shadow: 0 5px 15px rgba(139, 21, 56, 0.2);
}

/* GRID VE KART TASARIMI */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}
/* ==================== KARTLAR & GÜVENLİ NUMARALAR ==================== */
/* ==================== EKSİK OLAN GİZLEME KODU ==================== */

/* Başlangıçta gizli olması gereken kartlar */
.service-hidden {
    display: none !important;
}

/* Script çalıştığında 'show' sınıfı eklenince görünür olacaklar */
.service-card {
    position: relative; 
    background: var(--white);
    border-radius: 16px; 
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    overflow: hidden; 
    isolation: isolate; /* Katmanları sınırlar, dışarı taşmayı engeller */
    display: flex; 
    flex-direction: column;
    min-height: 300px;
}

/* 01, 02 NUMARALARI - SEO DOSTU & GÜVENLİ */
.service-card::before {
    content: attr(data-number); /* HTML değil, CSS süslemesidir. Link değildir. */
    position: absolute; 
    bottom: 20px; 
    right: 20px;
    font-family: var(--font-display); 
    font-size: 80px; 
    font-weight: 900;
    
    /* Normal Renk (Silik Gri) */
    color: rgba(0,0,0,0.05); 
    
    line-height: 1; 
    
    /* KRİTİK: Tıklamayı engeller, hayalet gibi olur */
    pointer-events: none; 
    user-select: none; /* Seçilemez */
    
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Gradient'in altında kalmasın diye katmanı yükselttim */
    z-index: 3; 
    transform-origin: center center;
}

/* HOVER BACKGROUND (Gradient) */
.service-card::after {
    content: ''; 
    position: absolute; 
    inset: 0;
    background: linear-gradient(135deg, var(--brand-burgundy) 0%, var(--brand-navy) 100%);
    opacity: 0; 
    transition: opacity 0.3s ease; 
    
    /* Numaranın arkasında kalsın */
    z-index: 0; 
}

/* KART İÇERİĞİ (En üstte olmalı ki tıklanabilsin) */
.service-content, .service-header, .service-description, .service-link {
    position: relative;
    z-index: 2; /* En üst katman */
}

/* HOVER DURUMLARI */
.service-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 20px 50px rgba(139, 21, 56, 0.15); 
}

.service-card:hover::after { opacity: 1; }

/* HOVER OLUNCA NUMARA RENGİ (Bembeyaz ve Parlak) */
.service-card:hover::before { 
    color: rgba(255,255,255,0.15); /* Artık gradientin üstünde olduğu için parlar */
    transform: rotate(-15deg) scale(1.2); 
    bottom: 25px; 
}



/* DİĞER YAZILARIN RENGİ */
.service-card:hover .service-category { color: rgba(255,255,255,0.7); }
.service-card:hover .service-title { color: var(--white); }
.service-card:hover .service-description { color: rgba(255,255,255,0.9); }
.service-card:hover .service-link { color: var(--white); }
.service-card:hover .service-link span:last-child { transform: translateX(5px); }
/* YAZI RENKLERİ (Hover'da Beyaz) */
.service-header { margin-bottom: 15px; }
.service-category {
    font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
    color: var(--brand-silver); display: block; margin-bottom: 10px;
}
.service-title {
    font-size: 22px; font-weight: 800; line-height: 1.3;
    color: var(--brand-navy); margin-bottom: 0;
}
.service-description {
    font-size: 15px; line-height: 1.6; color: var(--brand-navy-light);
    margin-bottom: 25px; flex-grow: 1;
}

.service-card:hover .service-category { color: rgba(255,255,255,0.7); }
.service-card:hover .service-title { color: var(--white); }
.service-card:hover .service-description { color: rgba(255,255,255,0.9); }

/* LİNK (SADELEŞTİRİLDİ) */
.service-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 700; font-size: 14px; color: var(--brand-burgundy);
    text-decoration: none; transition: 0.3s; margin-top: auto;
}
.service-link span { transition: 0.3s; }

/* Link Hover Efekti: Sadece ok hareket etsin, renk beyaz olsun */
.service-card:hover .service-link { color: var(--white); }
.service-card:hover .service-link span:last-child { transform: translateX(5px); }

/* GİZLEME EFEKTLERİ */
.hide { display: none !important; }
.show { animation: fadeIn 0.4s ease forwards; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
}




/* ==================== 6. KART: DAHA FAZLA GÖSTER (STİL EŞİTLEME) ==================== */

/* Temel Kart Yapısı (Diğer kartlarla aynı tabanı kullanır) */
.card-more {
    /* Hizalamayı merkeze çekiyoruz, farkı bu */
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    text-align: center;
    
    /* Diğer kartlarla aynı özellikler */
    background: var(--white);
    border-radius: 16px; 
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    overflow: hidden; 
    isolation: isolate;
    cursor: pointer;
    min-height: 300px; /* Yükseklik garantisi */
}

/* Bu kartta Numara (01, 02) yerine "+" işareti koyalım mı? 
   Yoksa boş mu kalsın? Boş kalsın, ikonu var zaten. */
.card-more::before { display: none; }

/* HOVER BACKGROUND (Diğerleriyle aynı Gradient) */
.card-more::after {
    content: ''; 
    position: absolute; 
    inset: 0;
    background: linear-gradient(135deg, var(--brand-burgundy) 0%, var(--brand-navy) 100%);
    opacity: 0; 
    transition: opacity 0.3s ease; 
    z-index: -1;
}

/* HOVER DURUMLARI */
.card-more:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 20px 50px rgba(139, 21, 56, 0.15); 
    border-color: transparent;
}

.card-more:hover::after { opacity: 1; }

/* İKON TASARIMI (Normalde Bordo, Hoverda Beyaz) */
.more-icon {
    width: 70px; height: 70px;
    background: rgba(139, 21, 56, 0.05); /* Çok hafif bordo zemin */
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--brand-burgundy); /* İkon rengi */
    font-size: 32px; 
    margin-bottom: 20px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(139, 21, 56, 0.1);
}

/* Hover olunca ikonun değişimi */
.card-more:hover .more-icon {
    background: rgba(255,255,255,0.2); /* Yarı saydam beyaz */
    color: var(--white);
    transform: rotate(90deg) scale(1.1);
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 0 30px rgba(255,255,255,0.2);
}

/* BAŞLIK VE AÇIKLAMA RENKLERİ (Diğer kartlarla aynı) */
.more-title {
    font-family: var(--font-display); 
    font-size: 22px; 
    font-weight: 800;
    color: var(--brand-navy); 
    margin-bottom: 10px;
    transition: 0.3s;
}

.more-desc { 
    color: var(--brand-navy-light); 
    font-size: 15px; 
    line-height: 1.6;
    max-width: 240px; 
    margin: 0 auto; 
    transition: 0.3s;
}

/* HOVER OLUNCA YAZILAR BEYAZ OLSUN */
.card-more:hover .more-title { color: var(--white); }
.card-more:hover .more-desc { color: rgba(255,255,255,0.9); }

/* MOBİL RESPONSIVE AYARI */
@media (max-width: 768px) {
    .card-more {
        min-height: auto; /* Mobilde çok uzun olmasın */
        padding: 30px 20px;
    }
}





/* CTA */
.cta { position: relative; background: var(--brand-navy); padding: var(--space-4xl) var(--space-xl); overflow: hidden; }
.cta::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-burgundy-dark) 100%); }
.cta::after {
    content: ''; position: absolute; inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(139, 21, 56, 0.02) 50px, rgba(139, 21, 56, 0.02) 100px);
    opacity: 0.5;
}
.cta-content { position: relative; z-index: 10; max-width: 1000px; margin: 0 auto; text-align: center; }

.cta-badge {
    display: inline-flex; align-items: center; gap: var(--space-md);
    background: rgba(139, 21, 56, 0.15); backdrop-filter: blur(20px);
    border-left: 3px solid var(--brand-burgundy); padding: 12px 28px; margin-bottom: var(--space-2xl);
}
.cta-badge-text {
    font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--white);
    text-transform: uppercase; letter-spacing: 2px;
}
.cta-title {
    font-family: var(--font-display); font-size: clamp(34px, 5vw, 58px); font-weight: 800;
    line-height: 1.15; letter-spacing: -0.03em; color: var(--white); margin-bottom: var(--space-lg);
}
.cta-description {
    font-family: var(--font-body); font-size: 19px; font-weight: 400; line-height: 1.75;
    color: rgba(255, 255, 255, 0.8); margin-bottom: var(--space-3xl);
}
.cta-features { display: flex; justify-content: center; gap: var(--space-3xl); flex-wrap: wrap; margin-bottom: var(--space-3xl); }
.cta-feature { display: flex; align-items: center; gap: var(--space-md); }
.cta-feature-icon {
    width: 28px; height: 28px; background: linear-gradient(135deg, var(--brand-burgundy), var(--brand-burgundy-light));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 14px; flex-shrink: 0; box-shadow: 0 4px 16px rgba(139, 21, 56, 0.35);
}
.cta-feature-text { font-family: var(--font-body); font-size: 16px; font-weight: 600; color: rgba(255, 255, 255, 0.9); }
.cta-actions { display: flex; justify-content: center; gap: var(--space-lg); flex-wrap: wrap; }

/* UTILS */
.reveal { opacity: 0; transform: translateY(50px); transition: all 1s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
    .hero-container, .stats-container, .services-grid { grid-template-columns: 1fr; }
    .hero-main h1 { font-size: 40px; }
    .stat-item::before { display: none; }
}

/* ==================== 2. EKLENEN NAVIGASYON (Tasarımın Renkleriyle) ==================== */
.main-navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(10, 18, 32, 0.9); /* --brand-navy transparan */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}
.navbar-container {
    max-width: 1400px; margin: 0 auto; padding: 0 var(--space-xl);
    display: flex; justify-content: space-between; align-items: center;
}
.nav-logo {
    font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--white); text-decoration: none;
}
.nav-logo span { color: var(--brand-burgundy); }
.nav-menu { display: flex; gap: 30px; list-style: none; }
.nav-menu a {
    color: rgba(255,255,255,0.8); font-family: var(--font-display); font-weight: 600; font-size: 15px; text-decoration: none;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--brand-burgundy-light); }
.nav-cta {
    background: var(--brand-burgundy); color: white !important; padding: 10px 24px; border-radius: var(--radius-sm);
}


/* ==================== ANASAYFA PREMIUM DOKUNUŞLAR ==================== */

/* SECTION HEADERS WITH LINES */
.section-header { text-align: center; margin-bottom: 60px; }
.section-title {
    display: flex; align-items: center; justify-content: center; gap: 25px;
    font-family: var(--font-display); font-size: clamp(30px, 4vw, 42px);
    font-weight: 800; color: var(--brand-navy); margin-top: 15px;
}
.section-title::before, .section-title::after {
    content: ''; flex: 1; max-width: 70px; height: 3px;
    background: linear-gradient(90deg, transparent, var(--brand-burgundy));
    border-radius: 2px;
}
.section-title::after { background: linear-gradient(-90deg, transparent, var(--brand-burgundy)); }
.white-header .section-title { color: var(--white); }
.white-header .section-title::before, .white-header .section-title::after { background: var(--brand-accent); }

/* WHY US SECTION */
/* ==================== ANASAYFA PREMIUM ALANLAR (HİZMETLERLE SENKRON) ==================== */

/* 1. Kapsayıcı Hizalaması - Hizmetler Bölümüyle Birebir Aynı */
.why-us .container, 
.reviews-home .container, 
.faq-home .container {
    max-width: 1400px; /* Hizmetler bölümüyle aynı genişlik */
    margin: 0 auto;
    padding: 0 var(--space-xl); /* Yan boşluklar eşitlendi */
}

/* 2. Başlık Stili - Premium Çizgili Yapı */
.section-header .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    font-family: var(--font-display);
    font-size: 42px; /* Hizmetler başlığıyla aynı */
    font-weight: 800;
    color: var(--brand-navy);
}

/* Başlık Yanındaki Premium Çizgiler */
.section-header .section-title::before,
.section-header .section-title::after {
    content: '';
    flex: 1;
    max-width: 70px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--brand-burgundy));
    border-radius: 2px;
}
.section-header .section-title::after {
    background: linear-gradient(to left, transparent, var(--brand-burgundy));
}

/* 3. NEDEN BİZ (6 MADDELİ GRID) */
.why-us { padding: 100px 0; background: var(--white); } /* Hizmetler ile aynı padding */

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Hizmet kartları gibi 3'lü dizilim */
    gap: 30px;
    margin-top: 50px;
}

.why-item {
    background: var(--pearl);
    padding: 45px 35px;
    border-radius: 16px; /* Service-card ile aynı radius */
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-icon-box {
    width: 75px; height: 75px;
    background: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    color: var(--brand-burgundy);
    box-shadow: var(--shadow-sm);
}

.why-item:hover {
    transform: translateY(-10px); /* Service-card hover efektiyle aynı */
    box-shadow: var(--shadow-xl);
    border-color: var(--brand-burgundy);
}

/* ==================== REFERANSLAR - PREMIUM GRADIENT & GLASS ==================== */
/* ==================== 7. YORUMLAR (PREMIUM DARK REVIZE) ==================== */
.reviews-label {
    display: inline-block; font-family: var(--font-display); font-size: 12px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 2px; color: var(--brand-accent);
    margin-bottom: 15px; padding: 8px 20px; background: rgba(228, 225, 226, 0.05);
    border-radius: 30px;
}

.reviews-home { 
    padding: 120px 0; 
    /* Derin ve modern karanlık gradyan */
    background: linear-gradient(135deg, #0A1220 0%, #161F2E 40%, #3D0C1B 100%);
    position: relative;
    overflow: hidden;
}

.reviews-home .section-title { color: var(--white) !important; }
.reviews-home .section-title::before, 
.reviews-home .section-title::after {
    background: linear-gradient(to right, transparent, var(--brand-accent)) !important;
}

.reviews-premium-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px; 
    max-width: 1400px; 
    margin: 60px auto 0; 
    padding: 0 var(--space-xl);
}

.review-premium-card {
    background: rgba(255, 255, 255, 0.04); /* Modern Cam Efekti */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px; 
    padding: 50px 35px 40px; 
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1); 
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    margin-top: 35px; /* Avatar taşması için pay */
}

.review-premium-card:hover { 
    transform: translateY(-15px); 
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--brand-burgundy); 
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Avatar Tasarımı */
.review-avatar {
    width: 75px; height: 75px; 
    background: linear-gradient(135deg, var(--brand-burgundy), var(--brand-burgundy-dark));
    color: #fff;
    border-radius: 50%; 
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; font-weight: 800; 
    border: 5px solid #0000004d; /* Arka plan gradyanı ile uyumlu kalın çerçeve */
    position: absolute; top: -38px; left: 35px; 
    box-shadow: 0 8px 20px #0000004d;
    transition: 0.3s;
}

.review-premium-card:hover .review-avatar {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--brand-burgundy);
}

.rev-rating { 
    color: var(--brand-accent); 
    font-size: 13px; 
    margin-bottom: 20px; 
    display: block; 
    text-align: right; 
    letter-spacing: 2px;
}

.rev-text { 
    font-size: 16px; 
    color: rgba(255, 255, 255, 0.85); 
    line-height: 1.8; 
    font-style: italic; 
    margin-bottom: 30px; 
}

.rev-footer {
    display: flex; justify-content: space-between; align-items: flex-end;
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 25px;
}

.rev-info strong { 
    display: block; color: var(--white); 
    font-family: var(--font-display); font-size: 18px; 
}

.rev-info span { 
    color: var(--brand-accent-light); font-size: 12px; 
    text-transform: uppercase; letter-spacing: 1px; font-weight: 700;
}

.rev-quote { font-size: 36px; color: var(--brand-burgundy-light); opacity: 0.3; transition: 0.3s; }
.review-premium-card:hover .rev-quote { opacity: 0.8; transform: translateY(-5px); }

/* MOBİL AYARLAR */
@media (max-width: 1100px) {
    .reviews-premium-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .reviews-premium-grid { grid-template-columns: 1fr; }
    .review-avatar { left: 50%; transform: translateX(-50%); }
    .review-premium-card:hover .review-avatar { transform: translateX(-50%) scale(1.1); }
    .rev-rating { text-align: center; margin-top: 30px; }
    .rev-info { text-align: left; }
}

/* 5. RESPONSIVE (MOBİL & TABLET) */
@media (max-width: 1100px) {
    .why-grid, .reviews-premium-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .why-grid, .reviews-premium-grid { grid-template-columns: 1fr; }
    .section-header .section-title::before, .section-header .section-title::after { display: none; }
    .section-header .section-title { font-size: 32px; }
}
/* FAQ REVIZE */
.faq-home { padding: 100px 0; background: var(--pearl); }
.faq-container { max-width: 950px; margin: 0 auto; }
.faq-item {
    background: var(--white); margin-bottom: 15px; border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm); border-left: 0 solid var(--brand-burgundy);
    transition: all 0.3s ease;
}
.faq-item.active { border-left-width: 6px; box-shadow: var(--shadow-lg); }
.faq-question {
    width: 100%; padding: 25px 30px; display: flex; justify-content: space-between;
    align-items: center; border: none; background: none; cursor: pointer;
}
.faq-question h4 { font-size: 18px; font-weight: 700; color: var(--brand-navy); margin: 0; }
.faq-icon {
    width: 34px; height: 34px; background: var(--pearl); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; transition: 0.3s;
}
.faq-item.active .faq-icon { background: var(--brand-burgundy); color: var(--white); transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-answer-content { padding: 0 30px 30px; color: var(--brand-navy-light); line-height: 1.7; }

/* RESPONSIVE FIXES */
@media (max-width: 768px) {
    .section-title::before, .section-title::after { display: none; }
    .review-box { min-width: 310px; padding: 30px; }
}




.btn-call-modern {
    background: var(--white); color: var(--brand-burgundy) !important;
    padding: 18px 40px; border-radius: 50px;
    font-weight: 700; text-decoration: none !important;
    display: inline-flex; align-items: center; gap: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); transition: 0.3s;
}
.btn-call-modern:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(255,255,255,0.2); }

/* Buton uyumluluğu için ek dokunuş */
.cta .btn-call-modern, .cta .btn-wp-modern {
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
}

/* Mobil için kritik düzeltme */
@media (max-width: 768px) {
    .cta-features { flex-direction: column; align-items: center; gap: 1rem; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta .btn-call-modern, .cta .btn-wp-modern { width: 100%; justify-content: center; }
}

/* Buton uyumluluğu için ek dokunuş */
.cta .btn-call-modern, .cta .btn-wp-modern {
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
}

/* MODERN BUTONLAR */
.btn-wp-modern {
    background: #25D366; color: white !important;
    padding: 18px 40px; border-radius: 50px;
    font-weight: 700; text-decoration: none !important;
    display: inline-flex; align-items: center; gap: 12px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3); transition: 0.3s;
}
.btn-wp-modern:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(37, 211, 102, 0.5); background: #1ebc57; }


/* ==================== WHATSAPP BUTON ÇİZGİ TEMİZLİĞİ ==================== */
/* Header'da tanımlı olsa bile anasayfadaki ezici kuralları iptal eder */
a[href*="wa.me"] {
    text-decoration: none !important;
    border-bottom: none !important; /* Muhtemelen bu çizgiye sebep oluyor */
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important; /* Gölgeyi koru */
}

a[href*="wa.me"]:hover, 
a[href*="wa.me"]:focus, 
a[href*="wa.me"]:active {
    text-decoration: none !important;
    border-bottom: none !important;
    outline: none !important;
}

/* İkonun altındaki hayalet çizgileri de temizleyelim */
a[href*="wa.me"] i {
    text-decoration: none !important;
    border: none !important;
}

/* --- Hanedan Teknik Rehber Grid Sistemi --- */

.blog-ref-section {
    padding: 80px 0;
    background-color: #f8fafc;
    overflow: hidden;
}

.section-header-premium {
    text-align: center;
    margin-bottom: 50px;
}

/* Grid Motoru: Kart sayısı azsa ortalar, çoksa 3'e böler */
.blog-grid {
    display: grid !important;
    /* Kartların 3 taneyken tam sığması, azken devleşmemesi için limit koyduk */
    grid-template-columns: repeat(auto-fit, minmax(320px, 400px)); 
    gap: 30px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    justify-content: center; /* 1 veya 2 kart varken sayfayı ortalar */
}

/* Kart Ana Yapısı */
.blog-card {
    display: flex !important;
    flex-direction: column !important;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none !important;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.1);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -12px rgba(10, 18, 32, 0.15);
    border-color: var(--brand-burgundy);
}

/* Görsel Alanı: Resim yükseklik ve oran koruma */
.blog-img {
    position: relative;
    width: 100%;
    height: 240px !important; /* Yüksekliği sabitledik, PHP'deki style'ı ezer */
    overflow: hidden;
    background: #f1f5f9;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    transition: transform 0.8s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

/* İçerik Alanı */
.blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Kategori Etiketi */
.blog-cat {
    align-self: flex-start;
    background: var(--brand-burgundy) !important;
    color: #ffffff !important;
    padding: 6px 16px !important;
    border-radius: 50px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Başlık Tasarımı */
.blog-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    line-height: 1.4 !important;
    margin: 0 0 20px 0 !important;
    /* 2 satırdan sonrasını kes, nizamı bozma */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 56px; 
}

/* Link ve Ok Animasyonu */
.blog-link {
    margin-top: auto;
    color: var(--brand-burgundy) !important;
    font-weight: 800 !important;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.blog-link i {
    transition: transform 0.3s;
}

.blog-card:hover .blog-link i {
    transform: translateX(8px);
}

/* --- Responsive (Mobil Uyumluluk) --- */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr !important;
        padding: 0 20px;
    }
    
    .blog-img {
        height: 200px !important;
    }
    
    .blog-title {
        font-size: 18px !important;
    }
}


/* --- Blog Bölümü Başlık Alanı (Reviews-Label Stili) --- */
.section-header-premium {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

/* Üstteki Ufak Yazı (Reviews-label Birebir) */
.header-sub-line {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px; /* Biraz daha geniş, daha teknik */
    color: var(--brand-burgundy); /* Kırmızı tonun */
    
    margin-bottom: 15px;
    padding: 10px 25px;
    background: rgba(10, 18, 32, 0.05); /* Şık transparan gri */
    border-radius: 40px;
    border: 1px solid rgba(10, 18, 32, 0.03);
}

/* Ana Başlık (H2) */
.header-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: #0A1220;
    letter-spacing: -1px;
    margin: 0 auto;
    max-width: 700px;
    line-height: 1.2;
}

/* Altına Şık Bir Mühendislik Çizgisi (Opsiyonel) */
.header-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--brand-burgundy);
    margin: 20px auto 0;
    border-radius: 10px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .header-title {
        font-size: 28px;
    }
}

/* Tarih Etiketi (Görselin Üzerinde) */
.blog-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #0A1220;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 2;
}

/* Üst Meta Alanı (Kategori ve Süre) */
.blog-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.blog-read-time {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Kısa Özet (Alt Başlık) */
.blog-excerpt {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 2 satırda keser */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Kart İçeriği Düzenlemesi */
.blog-content {
    padding: 25px 30px;
}