:root {
    --bg-color: #0a0a12;
    --text-color: #e0e0e0;
    --primary-color: #00f0ff;
    --secondary-color: #7000ff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', sans-serif;
    --font-display: 'Orbitron', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(10, 10, 18, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    display: flex;
    /* Resmi ve yazıyı yan yana dizer */
    align-items: center;
    /* Dikey olarak ortalar */
    gap: 12px;
    /* Resim ile yazı arasına boşluk koyar */

    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: #fff;
    text-decoration: none;
}

/* Logo resminin boyutunu ayarlamak için bu kısmı ekleyin */
.logo img {
    height: 40px;
    /* Logo yüksekliği (İsteğe göre 40px-60px arası yapabilirsiniz) */
    width: auto;
    /* En-boy oranını korur */
    object-fit: contain;
    /* Resmin bozulmasını engeller */
    /* Siyah logoyu beyaza çeviren sihirli kod: */
    filter: brightness(0) invert(1);
}

/* 1. Logo ve Menü Linklerini sağa ve sola yaslar */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* 2. Linklerin (Ana Sayfa, Hakkımızda vb.) yan yana durmasını sağlar */
.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    /* Linkleri dikeyde ortalar */
    margin: 0;
    padding: 0;
    /* Linkler arasındaki boşluk */
}

.nav-links a {
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-weight: 300;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.hero-desc {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    color: #000;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: rgba(0, 240, 255, 0.1);
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

/* Glass Cards */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    transition: var(--transition);
}

.glass-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Contact */
.contact-wrapper {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    margin-top: 30px;
}

.contact-link {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: rgba(10, 10, 18, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: #fff;
        transition: all 0.3s ease-in-out;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content .glitch {
        font-size: 2.5rem;
    }

    .sub-headline {
        font-size: 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
}

.hero-main-logo {
    width: 150px;
    /* Logo genişliği */
    height: auto;
    margin-bottom: 30px;
    /* Yazı ile arası boşluk */
    display: block;
    margin-left: auto;
    /* Ortalar */
    margin-right: auto;
    /* Ortalar */
    filter: brightness(0) invert(1);
    /* Siyah logoyu beyaz yapar */
}

/* --- Hero Bölümü Yazı Düzenlemesi (Ortalama ve Beyaz Renk) --- */

/* 1. Yazıları içeren ana kutuyu ortala */
.hero-content {
    text-align: center;
    /* Metinleri ortalar */
    display: flex;
    /* Esnek kutu modeli */
    flex-direction: column;
    /* İçerikleri alt alta dizer */
    align-items: center;
    /* Yatay eksende tam ortalar */
}

/* 2. Tüm başlıkları ve açıklamayı zorla beyaz yap */
.hero-content h1,
.hero-content h2,
.hero-content .sub-headline,
.hero-content .hero-desc {
    color: #ffffff !important;
}

/* 3. ÖNEMLİ: "Deptron" yazısındaki renkli gradient efektini iptal et ve beyaz yap */
.hero-content .gradient-text {
    background: none !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    -webkit-text-fill-color: unset !important;
    /* Renk dolgusunu sıfırla */
    color: #ffffff !important;
    /* Rengi beyaz yap */
}

/* 1. Izgara Yapısı: İki kutuyu yanyana ve EŞİT boyda yapar */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    /* Kutuların boyunu eşitler */
}

/* 2. Yazı Kutusu Ayarları */
.about-text.glass-card {
    display: flex;
    flex-direction: column;
    /* Yazıları alt alta diz */
    justify-content: center;
    /* Dikeyde ortalar */
    padding: 40px;
    /* İçeriden boşluk */
    height: auto;
    /* İçerik kadar uza */
    min-height: 100%;
    /* Resim kutusu kadar boylan */
}

/* Yazı paragraflarının ayarı (Eski hatalı kodu düzeltir) */
.about-text p {
    margin-bottom: 15px;
    height: auto;
    /* Yüksekliği serbest bırak */
}

/* 3. Resim Kutusu Ayarları */
.about-visual.glass-card {
    padding: 0 !important;
    /* Çerçeve boşluğunu sıfırla */
    display: flex;
    overflow: hidden;
    /* Taşmayı engelle */
    background: none !important;
    /* Arkadaki cam efektini kaldır (Resim net görünsün) */
    align-items: center;
}

/* 4. Resim Ayarları */
.about-robot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Resmi kutuya tam doldur (boşluk kalmaz) */
    display: block;
    border-radius: 15px;
    min-height: 300px;
    /* Mobil için güvenlik yüksekliği */
}

/* 5. Mobil Uyumluluk (Telefonda alt alta olsun) */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-robot-image {
        height: auto;
        min-height: 250px;
    }
}

/* --- NAVBAR DÜZELTMELERİ (EN ALTA EKLE) --- */

/* 1. Üst barın genişlik sınırını kaldır ve ekranın %95'ine yay */
.navbar .container {
    max-width: 95% !important;
    /* 1200px sınırını ezer */
    width: 100%;
    padding: 0 40px;
    /* En uçlara yapışmaması için boşluk */
}

/* 2. Logo ve Menü asla alt satıra düşmesin (Tek Satır Zorlama) */
.nav-container {
    flex-wrap: nowrap !important;
    /* Sıkışırsa alta atma özelliğini kapatır */
}

/* 3. Yazıların kırılmasını engelle */
.logo,
.nav-links a {
    white-space: nowrap !important;
    /* Metni tek satırda tutar */
}

/* 4. Menü linklerinin arasını biraz optimize et (Sığması için) */
.nav-links {
    gap: 25px !important;
    /* 40px çok genişti, 25px ideal */
}

/* --- İLETİŞİM SAYFASI ÖZEL STİLLERİ --- */

/* Sayfa Düzeni: Yan yana iki kutu */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Yarı yarıya böl */
    gap: 40px;
}

/* Form Elemanları */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Kutuların İçi (Input ve Textarea) */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    /* Şeffaf arka plan */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: #fff;
    font-family: var(--font-main);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

/* Kutulara tıklayınca parlasın */
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
        /* Mobilde alt alta olsun */
    }
}

/* --- HAKKIMIZDA SAYFASI ÖZEL (EN ALTA EKLE) --- */

/* 1. Sayfa Başlığı Hizalaması */
.page-header {
    padding-top: 150px;
    /* Navbar altında kalmaması için */
    padding-bottom: 50px;
    text-align: center;
}

.about-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Ekranı tam ortadan ikiye böl */
    gap: 40px;
    align-items: stretch;
    /* İki kutunun yüksekliğini birbirine eşitle */
    min-height: 400px;
    /* Kutuların çok kısalmasını engellemek için güvenlik yüksekliği */
}

/* 1. Yazı Kutusu Düzenlemesi */
/* glass-card sınıfı zaten var, burada iç düzeni ayarlıyoruz */
.about-content {
    display: flex;
    /* İçerikleri hizalamak için flex açtık */
    flex-direction: column;
    /* Alt alta diz */
    justify-content: center;
    /* Dikeyde tam ortala */
    height: 100%;
    /* Kapsayıcının tüm boyunu kapla */
}

/* H3 Başlık Ayarı (Eski hatalı kodu düzeltir) */
.about-content h3 {
    font-family: var(--font-display);
    letter-spacing: 1px;
    height: auto;
    /* Yüksekliği serbest bırak (önceki %100 hatasını düzeltir) */
    margin-bottom: 15px;
    display: block;
    /* Flex özelliğini kaldırdık, düz yazı olsun */
}

/* 2. Resim Kutusu Kapsayıcısı */
.about-image-box {
    position: relative;
    /* İçindeki resim buna göre hizalansın */
    height: 100%;
    /* Yanındaki yazı kutusu kadar uza */
    width: 100%;
    padding: 0 !important;
    /* Cam efektinin iç boşluğunu sıfırla */
    overflow: hidden;
    /* Resim taşarsa gizle */
    border-radius: 15px;
    display: block;
    /* Flex özelliğini kaldırdık */
}

/* 3. Resmin Kendisi (Sihirli Kısım) */
/* HTML'de class eklememiş olsan bile bu kod o kutunun içindeki resmi yakalar */
.about-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Resmi sündürmeden kutuya tam doldurur (crop yapar) */
    object-position: center;
    /* Resmin ortasını gösterir */
    display: block;
}

/* 3. İstatistik/Başarı Şeridi (Shift Appens, Teknofest vb.) */
.stats-strip {
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 40px 0;
    margin: 60px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 4. Ekip Kartları Düzeni (Meryem, Serhat, Gülşah, Recep, Burak) */
.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    width: 100%;
    align-items: start;
    align-items: stretch;
}

.team-card {
    text-align: center;
    transition: transform 0.3s ease;
    width: 100%;
    height: 100%;
    /* Kartın boyunu grid hücresine tam yayar */
    display: flex;
    /* İç düzeni kontrol etmek için */
    flex-direction: column;
    /* İçerikleri alt alta dizer */
    justify-content: flex-start;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.15);
}

/* Ekip Fotoğrafı Ayarları */
.team-photo img {
    width: 100%;
    /* Resim kapsayıcıya uysun */
    max-width: 130px;
    /* Maksimum büyüklük sınırı */
    aspect-ratio: 1 / 1;
    /* Kare oranını korur */
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    margin-bottom: 20px;
    padding: 3px;
    background: rgba(255, 255, 255, 0.1);
}

.team-card h3 {
    margin-bottom: 5px;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    /* İsimler tek satıra sığsın diye font ayarı */
}

.team-card .role {
    display: block;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.team-card .bio {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .about-grid-layout {
        grid-template-columns: 1fr;
        /* Mobilde alt alta */
    }

    .stats-grid {
        flex-direction: column;
        /* İstatistikler alt alta */
        gap: 40px;
    }

    .page-header {
        padding-top: 120px;
    }
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Tablette 3'lü dizilim */
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        /* Telefondan girenler alt alta görsün */
        /* Eğer mobilde de kaydırma olsun istersen burayı değiştirebiliriz */
    }

    .team-photo img {
        width: 120px;
        /* Mobilde resim boyutu */
    }
}

/* --- BLOG PAGE STYLES --- */

/* Blog Grid Yapısı */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

/* Blog Kartı Tasarımı */
.blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Köşelerin yuvarlak kalması için */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 0;
    /* Glass card padding'ini sıfırlayıp içeriğe verelim */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 242, 0.15);
    /* Neon glow efekti */
    border-color: var(--primary-color, #00fff2);
}

/* Blog Görseli */
.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
    /* Hoverda resim zoom yapsın */
}

/* Blog İçeriği */
.blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
}

.blog-meta .category {
    color: var(--primary-color, #00fff2);
    font-weight: 600;
}

.blog-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.blog-content p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    /* Butonu en alta itmek için */
}

/* Read More Linki */
.read-more {
    color: var(--primary-color, #00fff2);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    align-self: flex-start;
    transition: letter-spacing 0.3s ease;
}

.read-more:hover {
    letter-spacing: 1px;
    text-shadow: 0 0 8px var(--primary-color, #00fff2);
}

/* --- BLOG DETAIL PAGE STYLES --- */

.blog-detail-section {
    padding-top: 120px;
    /* Navbar payı */
    min-height: 100vh;
}

.blog-detail-card {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0;
    /* İçerik padding'i */
}

.blog-detail-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Resmi kutuya sığdırır */
    object-position: center;
}

.blog-detail-content {
    padding: 3rem;
}

.entry-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lead {
    font-size: 1.2rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.6;
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
}

.entry-body h2,
.entry-body h3 {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.entry-body p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Özellik Listesi */
.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.feature-list li {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 0.8rem;
    padding: 1rem;
    border-radius: 8px;
    border-left: 2px solid var(--primary-color);
    color: #ddd;
}

.feature-list strong {
    color: var(--primary-color);
}

/* Alıntı Kutusu */
.quote {
    font-style: italic;
    font-size: 1.2rem;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 255, 242, 0.05);
    border-radius: 10px;
    margin: 2rem 0;
    color: #fff;
}

.blog-footer {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .blog-detail-content {
        padding: 1.5rem;
    }

    .entry-title {
        font-size: 1.8rem;
    }

    .blog-detail-image {
        height: 250px;
    }
}

/* =========================================
   BASINDA BİZ SAYFASI (PRESS SECTION)
   Bu kodları style.css dosyasının EN ALTINA ekleyin
   ========================================= */

/* Basın Bölümü Genel Ayarı */
.press-section {
    padding: 80px 0;
    min-height: 60vh;
    /* İçerik az olsa bile footer çok yukarı çıkmasın */
}

/* Izgara Yapısı (Grid) */
.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    /* Kartlar 320px'den küçük olmaz */
    gap: 30px;
    padding-bottom: 20px;
}

/* Kart Tasarımı (Mevcut glass-card üzerine ek özellikler) */
.press-card {
    padding: 0 !important;
    /* Mevcut glass-card padding'ini sıfırla ki resim kenara yapışsın */
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Taşmaları gizle */
    transition: var(--transition);
    /* Mevcut animasyon ayarını kullan */
    height: 100%;
    /* Tüm kartları aynı boya getir */
    position: relative;
}

.press-card:hover {
    transform: translateY(-10px);
    /* Hoverda yukarı kalkma */
    box-shadow: 0 15px 30px rgba(0, 240, 255, 0.15);
    /* Primary renk gölge */
    border-color: var(--primary-color);
}

/* Görsel Alanı */
.press-image {
    position: relative;
    width: 100%;
    height: 240px;
    /* Sabit yükseklik */
    overflow: hidden;
    border-bottom: 1px solid var(--glass-border);
}

.press-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Resmi kutuya sığdır (crop yapar) */
    transition: transform 0.5s ease;
}

.press-card:hover .press-image img {
    transform: scale(1.1);
    /* Hoverda resim zoom yapsın */
}

/* Etiketler (Ödül, Finalist vb.) */
.press-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* Etiket Renkleri */
.press-badge.award {
    background: rgba(255, 215, 0, 0.9);
    /* Altın Sarısı */
    color: #000;
    border: 1px solid #ffd700;
}

.press-badge.finalist {
    background: rgba(0, 240, 255, 0.85);
    /* Senin Primary Rengin */
    color: #000;
    border: 1px solid var(--primary-color);
}

.press-badge.news {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Kart İçeriği */
.press-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    /* Kartın alt kısmını doldurur */
}

/* Meta Bilgileri (Tarih ve Kaynak) */
.press-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.press-meta .source {
    color: var(--primary-color);
    font-weight: 700;
}

/* Başlık */
.press-content h3 {
    font-family: var(--font-display);
    /* Orbitron fontu */
    font-size: 1.25rem;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #fff;
}

/* Açıklama Metni */
.press-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
    /* Butonu en alta itmek için aradaki boşluğu kaplar */
}

/* Link Butonu */
.press-link {
    display: inline-flex;
    align-items: center;
    color: #fff;
    /* Varsayılan beyaz */
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    margin-top: auto;
    /* En alta sabitler */
    text-decoration: none;
}

.press-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    /* Sağa kayma efekti */
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .press-grid {
        grid-template-columns: 1fr;
        /* Mobilde tek sütun */
    }

    .press-image {
        height: 200px;
        /* Mobilde görseli biraz küçültelim */
    }

    .press-content h3 {
        font-size: 1.1rem;
    }
}

/* --- HABER DETAY SAYFASI DÜZELTMESİ --- */

/* 1. Kartın içindeki varsayılan 30px boşluğu kaldırıyoruz */
.blog-detail-card {
    padding: 0 !important;
    overflow: hidden;
    /* Resmin köşeleri kartın oval köşelerine uysun */
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

/* 2. Resim alanını tam genişlik yapıyoruz */
.blog-detail-image {
    width: 100%;
    /* Yükseklik ayarını kaldırdım, resmin kendi boyutu neyse o olsun */
    height: auto;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Resim altına ince çizgi */
}

.blog-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    /* Resim altındaki milimetrik boşluğu siler */
    object-fit: cover;
}

/* 3. Yazıların kenara yapışmaması için onlara özel boşluk veriyoruz */
.blog-detail-content {
    padding: 40px;
    /* Sadece yazı kısmına boşluk ver */
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .blog-detail-content {
        padding: 20px;
        /* Mobilde kenar boşluğunu biraz azalt */
    }
}

/* --- BASINDA BİZ LİSTE KARTLARI DÜZELTMESİ --- */

/* 1. Resmin kesilmesini önle ve kutuya sığdır */
.press-image img {
    object-fit: contain !important;
    /* Zoom yapmayı engeller, resmi sığdırır */
    background-color: #081226;
    /* Resmin kenarlarında boşluk kalırsa bu renk görünür (AA Laciverti) */
    width: 100%;
    height: 100%;
}

/* 2. Resim kutusunun arka planını ayarla */
.press-image {
    background-color: #081226;
    /* Resim yüklenirken veya boşluklarda görünecek renk */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Page Hero Styles (From Cozumler.html) --- */
.page-hero {
    padding-top: 120px;
    padding-bottom: 60px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
}

.page-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #fff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #fff;
    /* Fallback */
}

.page-hero p {
    max-width: 700px;
    margin: 0 auto;
    color: #aaa;
    font-size: 1.1rem;
}

/* Mobile Responsive for Hero */
@media (max-width: 768px) {
    .page-hero {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }
}

/* --- UNIVERSAL MOBILE FIXES --- */

/* 1. Navbar Mobile Padding Fix */
@media (max-width: 768px) {
    .navbar .container {
        padding: 0 15px !important;
        /* Reduced from 40px to give more space */
    }

    .nav-container {
        width: 100%;
        justify-content: space-between;
    }
}

/* 2. Hero Logo Constraint (Prevents overflow on iPhone SE etc.) */
.hero-main-logo {
    max-width: 80%;
    height: auto;
}

/* iPhone SE Specific Logo Fix */
@media (max-width: 380px) {
    .hero-main-logo {
        max-width: 150px !important;
        /* STRICTER limit (was 200px) */
    }
}

/* 3. Small Screen Logo Adjustment (Galaxy S8, iPhone SE etc.) */
@media (max-width: 380px) {
    .logo {
        font-size: 0.9rem !important;
        /* Aggressive reduction for iPhone SE */
        gap: 6px;
    }

    .logo img {
        height: 24px !important;
        /* Smaller icon */
    }

    /* Maximize space for navbar content */
    .navbar .container {
        padding: 0 10px !important;
    }
}

/* --- FIX: Email Overflow (Galaxy S8, Z Fold 5, etc.) --- */
.contact-link {
    white-space: nowrap;
    /* Keep on one line */
}

/* Reduce font size on small screens to fit email */
@media (max-width: 400px) {
    .contact-link {
        font-size: 0.85rem !important;
        /* Even smaller font for Z Fold 5 */
    }
}

/* --- FIX: Z Fold 5 Padding Issues --- */
@media (max-width: 768px) {

    .hero-content,
    .contact-wrapper {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100%;
    }

    /* Ensure text doesn't overflow container width */
    .hero-desc,
    .contact-info {
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* --- FIX: Tablet Navbar (iPad Pro, Surface Pro) --- */
/* Extend mobile menu (hamburger) up to 1024px */
@media (max-width: 1024px) {
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        /* Adjust width if needed for tablets */
        background: rgba(10, 10, 18, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    /* Ensure hamburger spans are visible */
    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: #fff;
        transition: all 0.3s ease-in-out;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Adjust Navbar Container for Tablets */
    .navbar .container {
        padding: 0 20px !important;
        max-width: 100% !important;
    }

    .nav-container {
        justify-content: space-between;
    }
}

/* --- FIX: iPhone SE Vertical Spacing (User Request) --- */
/* Sadece yüksekliği 700px'den küçük olan cihazlar (iPhone SE vb.) için */
@media screen and (max-height: 700px) {
    .hero-content {
        padding-top: 40px;
        /* Push content down on short screens */
    }

    .hero-main-logo {
        margin-bottom: 20px;
        /* Reduce gap slightly to fit everything */
    }
}

/* --- FIX: Page Title Overflow (Galaxy S8+, etc.) --- */
@media (max-width: 500px) {
    body .page-hero h1 {
        font-size: 1.5rem !important;
        /* Safe fixed size (approx 24px) */
        letter-spacing: -0.5px !important;
        white-space: normal !important;
        /* Allow wrapping if absolutely necessary */
        overflow-wrap: break-word !important;
        /* Break long words if they still overflow */
        width: 100%;
        display: block;
        padding: 0 10px;
        /* Ensure padding doesn't squeeze text too much */
        line-height: 1.3;
    }
}

/* --- FIX: Ensure Navbar is Visible --- */
.navbar {
    z-index: 9999 !important;
    /* Force on top */
    display: block !important;
}

/* --- FIX: Solutions Layout Reorder on Mobile (Image First) --- */
@media (max-width: 900px) {

    .solution-row,
    .solution-row:nth-child(even) {
        flex-direction: column-reverse !important;
        /* Visual (Image) on top, Text on bottom */
        display: flex !important;
    }

    .solution-visual {
        width: 100%;
        min-height: 300px;
        /* Ensure image has height */
    }
}