/* Genel Sayfa Ayarları */
body {
    font-family: 'Arial', sans-serif; /* Orijinal site farklı bir font kullanıyor, bu şimdilik bir yer tutucu */
    background-color: #0a0a23; /* Sitenin ana koyu arka plan rengine benzer bir renk */
    color: #ffffff; /* Ana metin rengi beyaz */
    margin: 0;
    padding: 0;
}

/* ----------------------------------- */
/* Animasyon Hazırlık Stilleri */
/* ----------------------------------- */
.hidden {
    opacity: 0; /* Başlangıçta tamamen şeffaf */
    transform: translateY(50px); /* Başlangıçta 50px aşağıda */
    transition: opacity 1s ease-out, transform 1s ease-out; /* Animasyon süresi */
    will-change: opacity, transform; /* Tarayıcıya optimizasyon ipucu */
}

.show {
    opacity: 1; /* Tamamen görünür */
    transform: translateY(0); /* Orijinal pozisyonuna geri dön */
}

/* ----------------------------------- */
/* Genel Stiller */
/* ----------------------------------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ----------------------------------- */
/* ----------------------------------- */
/* Hizmetler Bölümü (DÜZENLENDİ) */
/* ----------------------------------- */
.services-section {
    padding: 80px 0;
    text-align: center;
}

.services-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.services-intro {
    font-size: 18px;
    color: #c0c0c0;
    line-height: 1.6;
    margin-bottom: 50px;
}

/* YENİ KURAL: Linklerin (<a>) alt çizgisini kaldırır */
.service-box-link {
    text-decoration: none;
    color: inherit; /* Yazı rengini (beyaz) koru */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-box {
    background-color: #1a1a3d;
    padding: 40px 20px;
    border-radius: 10px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    border-color: #5a5afc;
}

/* GÜNCELLENEN KURAL: İkonları (<i>) mor ve büyük yapar */
.service-icon {
    font-size: 36px; /* İkonların boyutu */
    margin-bottom: 20px;
    color: #7B34FA; /* İkonların rengini mor (vurgu rengi) yapar */
    transition: all 0.3s ease;
}

/* YENİ KURAL: Kutuya hover olunca ikonun rengi değişir */
.service-box:hover .service-icon {
    color: #ffffff;
}

.service-box h3 {
    font-size: 22px;
    margin: 0;
}

/* ----------------------------------- */
/* Özellik Bölümü (İlk İzlenim) */
/* ----------------------------------- */
.feature-section {
    padding: 80px 0;
    background-color: #0c0c28;
}

.feature-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.feature-content {
    flex: 1;
}

.feature-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.feature-content p {
    font-size: 17px;
    color: #c0c0c0;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ----------------------------------- */
/* Güvenlik Bölümü */
/* ----------------------------------- */
.security-section {
    padding: 80px 0;
    background-color: #05051a;
}

.security-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.security-content {
    flex: 1;
}

.security-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
}

.security-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.stats-text {
    flex: 2;
}

.stats-text p {
    font-size: 16px;
    color: #c0c0c0;
    line-height: 1.6;
}

.stats-text h3 {
    font-size: 20px;
    color: #ffffff;
    font-weight: bold;
    margin-top: 15px;
}

.stats-number {
    flex: 1;
    font-size: 90px;
    font-weight: bold;
    color: #5a5afc;
    text-align: right;
}

.security-footer {
    font-size: 17px;
    color: #c0c0c0;
    line-height: 1.7;
}

.security-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ----------------------------------- */
/* Şeffaflık Bölümü */
/* ----------------------------------- */
.transparency-section {
    padding: 80px 0;
    background-color: #0c0c28;
}

.transparency-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.transparency-content {
    flex: 1;
}

.transparency-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.transparency-content h3 {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.5;
}

.transparency-content p {
    font-size: 17px;
    color: #c0c0c0;
    line-height: 1.7;
}

.partner-logos {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.logo-placeholder {
    padding: 10px 20px;
    background: #1a1a3d;
    border: 1px solid #333;
    border-radius: 5px;
    color: #888;
}

.transparency-visuals {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Görsel yer tutucularına farklı yükseklikler (Modifier classes) */
.testimonial-card {
    height: 150px;
    width: 70%;
    align-self: flex-end;
}

.ui-mockup {
    height: 300px;
}

/* ----------------------------------- */
/* Referanslar Bölümü */
/* ----------------------------------- */
.references-section {
    padding: 80px 0;
    background-color: #05051a;
}

.references-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.reference-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.reference-item:hover {
    transform: scale(1.03);
}

.reference-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0));
}

.reference-info h3 {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 5px 0;
}

.reference-info p {
    font-size: 15px;
    color: #c0c0c0;
    margin: 0;
}

/* ----------------------------------- */
/* CTA (Projeni Başlat) Bölümü */
/* ----------------------------------- */
.cta-section {
    padding: 100px 0;
    background-color: #0c0c28;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.cta-subtitle {
    font-size: 18px;
    color: #c0c0c0;
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    background-color: #7B34FA;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 2px solid #7B34FA;
}

.cta-button:hover {
    background-color: transparent;
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-3px);
}

.cta-logos {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    opacity: 0.5;
}

.logo-placeholder-small {
    font-size: 14px;
    color: #888;
}

/* ----------------------------------- */
/* Dünya Çapında Bölümü */
/* ----------------------------------- */
.global-section {
    padding: 80px 0;
    background-color: #05051a;
}

.global-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.global-content {
    flex: 1;
}

.global-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.global-content p {
    font-size: 17px;
    color: #c0c0c0;
    line-height: 1.7;
    margin-bottom: 40px;
}

.global-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 50px;
    font-weight: bold;
    color: #5a5afc;
    line-height: 1.1;
}

.stat-label {
    font-size: 16px;
    color: #c0c0c0;
    margin-top: 10px;
}

.global-map {
    flex: 1;
}

/* ----------------------------------- */
/* Lider Konum Bölümü */
/* ----------------------------------- */
.leader-section {
    padding: 60px 0;
    background-color: #0c0c28;
}

.leader-section .container {
    max-width: 900px;
    text-align: center;
}

.leader-section h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.leader-section p {
    font-size: 17px;
    color: #c0c0c0;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* ----------------------------------- */
/* Son Gelişmeler (Haberler) Bölümü */
/* ----------------------------------- */
.news-section {
    padding: 80px 0;
    background-color: #05051a;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.news-header h2 {
    font-size: 38px;
    margin: 0;
}

.news-archive-link {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 16px;
    border: 1px solid #333;
    padding: 10px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.news-archive-link:hover {
    background-color: #5a5afc;
    border-color: #5a5afc;
    color: #ffffff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: #0c0c28;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #1a1a3d;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-content {
    padding: 25px;
}

.news-date {
    font-size: 14px;
    color: #c0c0c0;
    margin-bottom: 10px;
    display: block;
}

.news-content h3 {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    margin: 0;
}

/* ----------------------------------- */
/* Footer Öncesi Banner */
/* ----------------------------------- */
.pre-footer-banner {
    background-color: #0c0c28;
    padding: 25px 0;
    border-bottom: 1px solid #333;
}

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

.banner-container span {
    font-size: 20px;
    font-weight: 500;
}

.plus-icon {
    font-size: 30px;
    font-weight: bold;
    color: #5a5afc;
    cursor: pointer;
}

/* ----------------------------------- */
/* Ana Footer */
/* ----------------------------------- */
.main-footer {
    padding: 80px 0 30px 0;
    background-color: #05051a;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid #333;
}

.footer-logo {
    width: 150px;
    padding: 10px;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 15px;
    color: #c0c0c0;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #5a5afc;
}

.footer-cta {
    padding: 12px 30px;
    font-size: 16px;
}

/* ----------------------------------- */
/* Footer Altı (Copyright) */
/* ----------------------------------- */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    font-size: 14px;
    color: #888;
}

.policy-links a {
    color: #888;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s ease;
}

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

/* ----------------------------------- */
/* Tüm GÖRSEL Stilleri (DÜZENLENDİ) */
/* ----------------------------------- */
.image-placeholder {
    width: 100%;
    height: 350px;
    background-color: #1a1a3d;
    border-radius: 10px;
    object-fit: cover; /* ÖNEMLİ */
}

.ref-image {
    height: 350px;
    width: 100%;
    object-fit: cover; /* EKLENDİ */
}

.map-placeholder {
    height: 450px;
    width: 100%;
    object-fit: cover; /* EKLENDİ */
}

.news-image {
    height: 220px;
    width: 100%;
    object-fit: cover; /* EKLENDİ */
}


/* ################################### */
/* BİRLEŞTİRİLMİŞ MOBİL UYUM (768px) */
/* ################################### */
@media (max-width: 768px) {

    /* Sütunları alt alta getir */
    .feature-container,
    .security-container,
    .transparency-container,
    .global-container {
        flex-direction: column;
    }

    /* Hizmet kutuları mobilde 1 sütun */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Mobilde başlıkları küçült (TEK BİRLEŞTİRİLMİŞ KURAL) */
    .services-section h2,
    .feature-content h2,
    .security-content h2,
    .transparency-content h2,
    .references-section h2,
    .cta-section h2,
    .global-content h2,
    .news-header h2 {
        font-size: 32px;
    }
    
    .leader-section h3 {
        font-size: 24px;
    }

    /* Güvenlik bölümü istatistikleri */
    .security-stats {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .stats-number {
        /* Bu, Güvenlik bölümü içindi */
        text-align: center;
        font-size: 70px;
        margin-top: 20px;
    }

    /* Şeffaflık bölümü görselleri */
    .testimonial-card {
        width: 100%;
        align-self: center;
    }

    /* CTA bölümü logoları */
    .cta-logos {
        flex-wrap: wrap;
        gap: 20px;
    }

    /* Dünya Çapında bölümü */
    .global-content {
        text-align: center;
    }

    .global-stats {
        gap: 20px;
    }

    .stat-number {
        /* Bu, Dünya Çapında bölümü içindi */
        font-size: 36px;
    }

    /* Footer alt bölümü */
    .footer-bottom {
        flex-direction: column-reverse;
        gap: 20px;
        text-align: center;
    }

    .policy-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .policy-links a {
        margin-right: 0;
    }
}


/* ################################### */
/* BİRLEŞTİRİLMİŞ MOBİL UYUM (480px) */
/* ################################### */
@media (max-width: 480px) {

    /* Referans grid'i 1 sütuna düşür */
    .references-grid {
        grid-template-columns: 1fr;
    }

    /* Mobilde "Son Gelişmeler" başlığı ve link alt alta gelsin */
    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* style.css dosyasının EN ALTINA eklenecek */

/* ----------------------------------- */
/* Genel Başlık Stilleri (İç Sayfa) */
/* ----------------------------------- */
.section-title {
    font-size: 38px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: #c0c0c0;
    text-align: center;
    margin-bottom: 50px;
}

/* ----------------------------------- */
/* BÖLÜM 1: İç Sayfa 2x2 Grid Stilleri */
/* ----------------------------------- */
.inner-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.inner-feature-box {
    background-color: #1a1a3d;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.inner-feature-box:hover {
    transform: translateY(-5px);
    border-color: #5a5afc;
}

.inner-feature-icon {
    font-size: 30px;
    color: #5a5afc;
    margin-bottom: 20px;
}

.inner-feature-box h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 15px;
}

.inner-feature-box p {
    font-size: 16px;
    color: #c0c0c0;
    line-height: 1.7;
    margin: 0;
}

/* ----------------------------------- */
/* BÖLÜM 2: Teknoloji Slider Stilleri */
/* ----------------------------------- */
.tech-slider-section {
    padding: 80px 0;
    background-color: #0c0c28; /* Arka plan rengi */
    position: relative; /* Navigasyon okları için */
}

.tech-slider {
    width: 100%;
    overflow: hidden;
}

.tech-card {
    background-color: #1a1a3d;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    height: auto;
}

.tech-card i {
    font-size: 48px;
    color: #5a5afc;
    margin-bottom: 20px;
}

.tech-card h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 15px;
}

.tech-card p {
    font-size: 15px;
    color: #c0c0c0;
    line-height: 1.6;
}

/* Slider Navigasyon Okları */
.swiper-button-next,
.swiper-button-prev {
    color: #ffffff; /* Ok rengi */
    background-color: rgba(26, 26, 61, 0.7); /* Arka planı */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: background-color 0.3s ease;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #5a5afc;
}
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px; /* Ok ikonu boyutu */
}

/* ----------------------------------- */
/* BÖLÜM 3: Sektördeki Farkımız Stilleri */
/* ----------------------------------- */
.sector-diff-section {
    padding: 80px 0;
    background-color: #05051a;
}

.sector-diff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.sector-diff-card {
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.sector-diff-card i {
    font-size: 40px;
    margin-bottom: 20px;
}

.sector-diff-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.sector-diff-card p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.8;
}

/* Kart Renkleri */
.sector-diff-card.color-1 { background-color: #2a2a5a; }
.sector-diff-card.color-2 { background-color: #2a5a2a; }
.sector-diff-card.color-3 { background-color: #5a5a2a; }
.sector-diff-card.color-4 { background-color: #5a2a2a; }

/* ----------------------------------- */
/* BÖLÜM 4: Anahtar Teslim Stilleri */
/* ----------------------------------- */
.key-solutions-section {
    padding: 80px 0;
    background-color: #0c0c28;
}

.key-solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.key-solution-box {
    text-align: center;
    padding: 20px;
}

.key-solution-box i {
    font-size: 40px;
    color: #5a5afc;
    margin-bottom: 20px;
}

.key-solution-box h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 15px;
}

.key-solution-box p {
    font-size: 15px;
    color: #c0c0c0;
    line-height: 1.6;
}

/* ----------------------------------- */
/* İÇ SAYFA - Mobil Uyum Güncellemeleri */
/* ----------------------------------- */
@media (max-width: 992px) {
    /* Renkli kartlar 2x2 olsun */
    .sector-diff-grid {
        grid-template-columns: 1fr 1fr;
    }
    /* Anahtar teslim 2x2 olsun */
    .key-solutions-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    /* 2x2 grid 1 sütun olsun */
    .inner-feature-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    /* Renkli kartlar 1 sütun olsun */
    .sector-diff-grid {
        grid-template-columns: 1fr;
    }
    /* Anahtar teslim 1 sütun olsun */
    .key-solutions-grid {
        grid-template-columns: 1fr;
    }
    /* Slider oklarını gizle, dokunmatik kaydırma kullanılır */
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

/* Navigasyon Menüsü (Navbar) */
/* ----------------------------------- */
.navbar {
    background-color: #0a0a23; /* Arka planı sayfa ile aynı */
    padding: 20px 0;
    border-bottom: 1px solid #333;
    position: sticky; /* Sayfayı kaydırınca yukarıda yapışıp kalır */
    top: 0;
    z-index: 1000; /* Diğer her şeyin üzerinde kalır */
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between; /* Logoyu sola, menüyü sağa yaslar */
    align-items: center;
}

.nav-logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}

.nav-menu {
    list-style: none; /* Madde işaretlerini kaldır */
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px; /* Menü elemanları arası boşluk */
}

.nav-menu li a {
    color: #c0c0c0; /* Soluk beyaz */
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #ffffff; /* Üzerine gelince tam beyaz */
}

/* ----------------------------------- */
/* Açılır Menü (Dropdown) */
/* ----------------------------------- */
.dropdown {
    position: relative; /* Alt menüyü buna göre konumlandıracağız */
}

.dropdown-menu {
    display: none; /* Başlangıçta gizli */
    position: absolute; /* Ana menüden bağımsız akar */
    top: 100%; /* Ana linkin hemen altında başlar */
    left: 0;
    background-color: #1a1a3d; /* Kutu rengi */
    border: 1px solid #333;
    border-radius: 5px;
    padding: 10px 0;
    list-style: none;
    width: 220px; /* Açılır menü genişliği */
    z-index: 1001;
}

/* Hizmetler linkinin üzerine gelince (hover) açılır menüyü göster */
.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin-bottom: 5px;
}

.dropdown-menu li a {
    display: block;
    padding: 8px 15px;
    color: #c0c0c0;
    width: 100%;
    box-sizing: border-box; /* Padding'i genişliğe dahil et */
}

.dropdown-menu li a:hover {
    background-color: #5a5afc; /* Vurgu rengi */
    color: #ffffff;
}

/* Hizmetler linkinin yanındaki küçük ok */
.dropdown a i {
    font-size: 12px;
    margin-left: 5px;
}

/* style.css dosyasının EN ALTINA eklenecek */

/* ----------------------------------- */
/* BÖLÜM: İletişim Sayfası */
/* ----------------------------------- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 sütunlu yapı */
    gap: 40px;
    margin-top: 40px;
    background-color: #0c0c28; /* Hafif açık arkaplan */
    padding: 40px;
    border-radius: 10px;
}

.contact-info h2 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 17px;
    color: #c0c0c0;
    line-height: 1.7;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 24px;
    color: #5a5afc; /* Vurgu rengi (mor) */
    margin-top: 5px;
}

.info-item strong {
    font-size: 18px;
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 16px;
    color: #c0c0c0;
    line-height: 1.6;
    margin: 0;
}

/* ----------------------------------- */
/* İletişim Formu Stilleri */
/* ----------------------------------- */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 15px;
    color: #c0c0c0;
    margin-bottom: 8px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    background-color: #0a0a23; /* Koyu arkaplan */
    border: 1px solid #333;
    border-radius: 5px;
    color: #ffffff; /* Yazı rengi */
    font-size: 16px;
    box-sizing: border-box; /* Padding'i genişliğe dahil et */
}

.contact-form textarea {
    resize: vertical; /* Sadece dikeyde büyüsün */
}

/* Formun submit butonu (Ana sayfadaki cta-button stilini kullanır) */
.contact-form .cta-button {
    width: 100%;
    border: none;
    cursor: pointer;
}

/* ----------------------------------- */
/* İletişim - Mobil Uyum */
/* ----------------------------------- */
@media (max-width: 992px) {
    /* İletişim sayfasını 1 sütuna düşür */
    .contact-layout {
        grid-template-columns: 1fr;
    }
}
/* style.css dosyasının EN ALTINA eklenecek */

/* ----------------------------------- */
/* SON DOKUNUŞ: Yer Tutucu Temizliği */
/* ----------------------------------- */

/* 1. Navbar ve Footer Logo Stili */
/* Zaten var olan .nav-logo kuralını bununla GÜNCELLE */
.nav-logo {
    font-size: 26px; /* 24px idi */
    font-weight: 900; /* Daha kalın */
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 1px;
}

/* 2. Partner Logoları (index.html) */
/* Zaten var olan .logo-placeholder kuralını bununla GÜNCELLE */
.logo-placeholder {
    padding: 10px 20px;
    background: #1a1a3d;
    border: 1px solid #333;
    border-radius: 5px;
    color: #888;
    display: inline-flex; /* İkon ve yazıyı hizala */
    align-items: center;
    gap: 10px; /* Aradaki boşluk */
}
.logo-placeholder i {
    font-size: 20px;
    color: #5a5afc; /* İkonlara renk verelim */
}


/* 3. Yorum Kartı (index.html) */
/* Zaten var olan .testimonial-card kuralını SİL ve yerine BUNU EKLE */
.testimonial-card-real {
    background-color: #1a1a3d;
    border: 1px solid #5a5afc; /* Vurgu kenarlığı */
    border-radius: 10px;
    padding: 25px;
    width: 80%;
    align-self: flex-end; /* Sağa yaslı */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.testimonial-card-real p {
    font-size: 17px;
    font-style: italic;
    color: #c0c0c0;
    margin: 0 0 15px 0;
    line-height: 1.6;
}
.testimonial-card-real span {
    font-size: 15px;
    color: #ffffff;
}

/* 4. CTA Altı Logolar (index.html) */
/* Zaten var olan .logo-placeholder-small kuralını bununla GÜNCELLE */
.logo-placeholder-small {
    font-size: 28px; /* Daha görünür */
    color: #888;
}
.feature-section .image-placeholder {
  width: 100%;
  max-width: 600px; /* en fazla 600px genişler */
  height: auto;
}

/* Güvenlik kısmındaki görsel */
.security-section .image-placeholder {
  width: 600px;       /* istediğin genişlik */
  height: auto;       /* orantıyı korur */
  border-radius: 12px; /* köşeleri yumuşatır */
  object-fit: cover;   /* taşma veya sıkışmayı önler */
  margin-left: 40px;   /* yazıdan biraz boşluk bırakır */
}

/* Responsive uyumlu */
@media (max-width: 992px) {
  .security-section .image-placeholder {
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    display: block;
  }
}

.references-section {
  background-color: #0b0b23;
  padding: 100px 0;
  color: #fff;
  text-align: center;
}

.references-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 70px;
  color: #ffffff;
  position: relative;
  display: inline-block;
}

.references-section h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #6c63ff, #00d4ff);
  border-radius: 3px;
}

/* === Grid düzeni === */
.references-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  width: 85%;
  margin: 0 auto;
}

/* === Kart Stili === */
.reference-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
  background-color: #11112b;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reference-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
}

.ref-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.9);
}

.reference-item:hover .ref-image {
  transform: scale(1.1);
  filter: brightness(0.6);
}

/* === Overlay (bilgi kutusu) === */
.reference-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  background: rgba(12, 12, 35, 0.85);
  backdrop-filter: blur(6px);
  text-align: left;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.reference-item:hover .reference-info {
  transform: translateY(0);
}

.reference-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #a8a6ff;
}

.reference-info p {
  font-size: 0.95rem;
  opacity: 0.9;
  color: #e0e0e0;
}

/* === Responsive === */
@media (max-width: 768px) {
  .references-section h2 {
    font-size: 2rem;
  }

  .ref-image {
    height: 200px;
  }

  .reference-info {
    padding: 18px;
  }
}
