/* ==========================================================================
   1. GENEL SIFIRLAMALAR
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #fcfcfc;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Masaüstü Genel Genişlik Kapsayıcısı */
.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ==========================================================================
   2. ORİJİNAL MASAÜSTÜ (DESKTOP) STİLLERİ - KESİNLİKLE DOKUNULMADI
   ========================================================================== */
.top-bar {
    background-color: #ffffff;
    border-bottom: 1px solid #ededed;
    padding: 12px 0;
    font-size: 14px;
    color: #333;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.info-item {
    display: flex;
    align-items: center;
}

.info-item .icon-orange {
    order: 1; 
    margin-right: 5px;
    color: #ff5722;
    font-size: 16px;
}
.info-item .info-text {
    order: 2;
}

.separator {
    color: #ccc;
    font-weight: 300;
}

.top-right {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 32px;
    height: 32px;
    background-color: #e0e0e0;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #ff5722;
}



/* Normal hali: Kendi yerinde durur */

.nav-bar {
    background-color: #ffffff;
    width: 100%;
    z-index: 9999;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    
    /* --- BURAYI EKLEDİK --- */
    padding: 20px 0 !important; /* Bu değer beyaz alanı yukarı ve aşağı doğru genişletir */
}

/* Masaüstünde logo biraz daha büyük ve ferah dursun dersen: */
@media (min-width: 992px) {
    .nav-bar {
        padding: 25px 0 !important; /* Masaüstünde biraz daha genişletiyoruz */
    }
    
    .nav-bar img {
        max-height: 70px !important; /* Logonun ezilmesini engeller, boyunu korur */
        width: auto;
    }
}

/* Sabitlendiği an devreye girecek sınıf (Bunu JS ekleyecek) */

.nav-bar.is-fixed {

    position: fixed !important;

    top: 0 !important;

    left: 0 !important;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;

    animation: slideDown 0.4s ease; /* Hafif bir süzülme efekti */

}



@keyframes slideDown {

    from { transform: translateY(-100%); }

    to { transform: translateY(0); }

}



/* Mobilde hizalamayı koruyalım */

@media (max-width: 768px) {

    .container-fluid-mobil {

        display: flex !important;

        flex-direction: row !important;

        flex-wrap: nowrap !important;

        justify-content: space-between !important;

        align-items: center !important;

    }

} 

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.mobile-logo {
    display: none;
}

.navigation ul {
    display: flex;
    gap: 35px;
}

.navigation ul li a {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    transition: color 0.3s ease;
}

.navigation ul li a:hover, 
.navigation ul li a.active {
    color: #ff5722;
}

.menu-toggle {
    display: none;
}

/* RANDEVU BUTONU (MASAÜSTÜ) */
.appointment-btn {
    display: flex;
    align-items: center;
    background-color: #1a1a1a;
    border-radius: 30px;
    overflow: hidden;
    height: 50px;
    transition: transform 0.2s ease;
}

.appointment-btn:hover {
    transform: translateY(-2px);
}

.btn-icon {
    background-color: #ff5722;
    color: #ffffff;
    width: 50px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    border-radius: 50% 0 0 50%;
}

.btn-text {
    color: #ffffff;
    padding: 0 25px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
}


/* ==========================================================================
   3. MOBİL VE TABLET UYUMLULUK KODLARI (768px ve altı)
   ========================================================================== */

@media (max-width: 1024px) {
    .container { width: 92%; }
    .navigation ul { gap: 20px; }
}

@media (max-width: 768px) {
    
    /* Üst İletişim Alanı Grid Ayarı */
    .mobile-top-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 10px 0;
        align-items: center;
        width: 92% !important; /* Üst kısımdaki ikonlar ekran payı */
        margin: 0 auto !important;
    }

    .mobile-logo {
        display: flex !important;
        grid-column: 1;
        justify-content: flex-start;
        align-items: center;
    }
    .mobile-logo img {
        height: 55px;
        width: auto !important;
    }

    /* İletişim Bilgileri (Sağa tam dayalı) */
    .top-left {
        grid-column: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 5px;
        width: 100%;
    }
    .top-left .separator { display: none; }

    .info-item {
        display: flex !important;
        flex-direction: row !important;
        justify-content: flex-end !important;
        align-items: center !important;
        width: 100%;
        white-space: nowrap;
    }

    .info-item .info-text {
        order: 1 !important;
        font-size: clamp(10px, 2.8vw, 12px) !important;
        font-weight: 500;
        color: #333;
    }

    .info-item .icon-orange {
        order: 2 !important;
        margin-right: 0 !important;
        margin-left: 8px !important;
        font-size: 14px !important;
        text-align: center;
        width: 16px;
    }

    .top-right {
        grid-column: 1 / span 2;
        display: flex;
        justify-content: center;
        margin-top: 5px;
        border-top: 1px solid #ededed;
        padding-top: 10px;
    }

    /* --- SAĞA HİZALAMA KİLİDİNİ KIRAN YENİ ALT BAR --- */
    .container-fluid-mobil {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        
        /* Genişlik sınırlarını esnetip üstteki ikon grubu çizgisiyle eşitliyoruz */
        width: 92% !important; 
        max-width: 92% !important;
        margin: 0 auto !important;
        padding: 5px 0 !important; /* Ekstra padding'leri sıfırlayarak tam çizgiye getirdik */
        position: relative;
    }

    .desktop-logo {
        display: none !important;
    }

    /* SOL KÖŞE: Hamburger Butonu */
    .navigation {
        order: 1 !important;
        display: flex !important;
        justify-content: flex-start !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .menu-toggle {
        display: flex !important;
        justify-content: center;
        align-items: center;
        background: none;
        border: none;
        color: #1a1a1a;
        font-size: 26px;
        cursor: pointer;
        padding: 5px 10px 5px 0 !important;
    }

    /* SAĞ KÖŞE: Randevu Al Butonu (TAM ÜSTTEKİ İKONLARLA AYNI HİZADA SAĞA SIFIR) */
    .appointment-btn-container {
        order: 2 !important;
        display: flex !important;
        justify-content: flex-end !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .appointment-btn {
        height: 38px !important;
        margin: 0 !important; /* Tüm dış boşluklar temizlendi */
        display: flex !important;
        align-items: center !important;
    }
    
    .btn-icon {
        width: 38px !important;
        font-size: 13px !important;
    }
    
    .btn-text {
        padding: 0 12px !important;
        font-size: 12px !important;
    }

    /* --- Aşağı Açılan Mobil Menü Listesi --- */
    .navigation ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 15px 20px rgba(0,0,0,0.1);
        padding: 10px 0;
        z-index: 9999;
    }

    .navigation ul.show {
        display: flex !important;
    }

    .navigation ul li {
        width: 100%;
        text-align: center;
    }

    .navigation ul li a {
        display: block;
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid #f9f9f9;
        font-size: 15px;
        color: #000000;
    }
    .navigation ul li:last-child a {
        border-bottom: none;
    }
}/* ==========================================================================
   4. TAM EKRAN SLIDER (MASAÜSTÜ - KENDİNDEN LİNKLİ)
   ========================================================================== */
.slider-section {
    position: relative;
    width: 100%;
    height: 80vh; /* Ekran yüksekliğinin %80'ini kaplar, jilet gibi durur */
    min-height: 550px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Slayt Yapısı (Artık komple tıklanabilir bir blok) */
.slide {
    display: block; /* Linkin tüm slider alanını kaplamasını sağlar */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    z-index: 1;
    cursor: pointer; /* Üzerine gelince tıklama el işareti çıkar */
}

/* Aktif Slayt Gösterimi */
.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Görseli bozmadan tam kaplar */
    object-position: center center;
}

/* Görsel Üzerindeki Şeffaf Karartma Katmanı */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35); /* Yazıların net okunması için hafif karartma */
    z-index: 3;
}

/* Slider Yazı İçerik Alanı */
.slide-content {
    position: absolute;
    top: 50%;
    left: 10%; /* Orijinal görselindeki gibi sola yakın konumlandırma */
    transform: translateY(-50%);
    color: #ffffff;
    z-index: 4;
    max-width: 650px;
}

/* Slider Başlığı (Görselindeki Stile Uygun Büyük, Kalın ve Net) */
.slide-content h2 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.slide-content h2 span {
    color: #ff5722; /* Kurumsal turuncu rengimiz */
}

/* Slider Açıklama Metni */
.slide-content p {
    font-size: 16px;
    color: #f0f0f0;
    line-height: 1.5;
    font-weight: 400;
}

/* SAĞ-SOL GEÇİŞ OKLARI (Görselindeki Yuvarlak ve Şeffaf Yapı) */
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 5; /* Linklerin üstünde kalması için z-index yüksek tutuldu */
    transition: all 0.3s ease;
}

.slide-arrow:hover {
    background-color: #ff5722;
    border-color: #ff5722;
    transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
    left: 30px; /* Sol kenardan boşluk */
}

.next-arrow {
    right: 30px; /* Sağ kenardan boşluk */
}

/* ==========================================================================
   5. MOBİLDE SLIDER'I TAMAMEN KALDIRMA
   ========================================================================== */
@media (max-width: 768px) {
    .slider-section {
        display: none !important; /* Mobilde bu alan tamamen gizlenir, kod çalışmaz */
    }
}/* ==========================================================================
   6. HİZMETLERİMİZ BÖLÜMÜ (RESPONSIVE GRID)
   ========================================================================== */
.services-section {
    padding: 60px 0 90px 0; /* Boşlukları topladık, aşırı açıklığı engelledik */
    background-color: #ffffff;
    width: 100%;
}

/* Üst Başlık ve Merkezdeki Logo Alanı */
.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-top-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #a0a0a0;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.services-logo-btn {
    display: inline-block;
    margin: 10px 0;
    transition: transform 0.3s ease;
}

.services-logo-btn:hover {
    transform: scale(1.05); /* Logoya gelince tatlı bir büyüme efekti */
}

.services-logo-btn img {
    max-height: 55px;
    width: auto;
}

.services-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 5px;
}

/* Izgara Düzeni (Masaüstünde Yan Yana 2'li) */
.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px; /* Satır ve sütun boşluk dengesi */
}

/* Hizmet Kutuları */
.service-box {
    display: flex;
    align-items: flex-start;
    gap: 25px; /* İkon ile yazı arasındaki net boşluk */
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-box:hover {
    background-color: #fafafa;
}

/* İkon Alanı */
.service-icon {
    font-size: 42px;
    color: #333333;
    line-height: 1;
    margin-top: 3px;
    min-width: 50px;
}

.service-text {
    flex: 1;
}

/* Tıklanabilir Turuncu Başlık */
.service-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-text h3 a {
    color: #ff5722; /* Kurumsal turuncu */
    text-decoration: none;
    transition: color 0.2s ease;
}

.service-text h3 a:hover {
    color: #e64a19;
}

.service-text p {
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
}

/* ==========================================================================
   7. TABLET VE MOBİL UYUMLULUK AYARLARI (RESPONSIVE)
   ========================================================================== */

/* TABLET AYARI (Ekran Genişliği 1024px ve Altı) */
@media (max-width: 1024px) {
    .services-container {
        gap: 30px 40px; /* Tablet ekranlarda kutuları biraz birbirine yaklaştırır */
        padding: 0 20px;
    }
}

/* MOBİL AYARI (Ekran Genişliği 768px ve Altı) */
@media (max-width: 768px) {
    .services-section {
        padding: 40px 0 60px 0;
    }

    .services-container {
        grid-template-columns: 1fr; /* Yan yana 2'li düzeni iptal edip alt alta 1'li yapar */
        gap: 25px;
    }

    .service-box {
        flex-direction: column; /* Mobilde ikon üstte, yazı altta olacak şekilde ortalanır */
        text-align: center;
        align-items: center;
        gap: 15px;
        padding: 10px;
    }

    .service-icon {
        margin-top: 0;
        font-size: 38px; /* Küçük ekranlarda ikon boyutunu hafifçe küçültür */
    }
}
/* ==========================================================================
   REFERANS BÖLÜMÜ - FULL RESPONSIVE (PC, TABLET, MOBİL)
   ========================================================================== */

/* GENEL ALAN (Masaüstü Odaklı Başlangıç) */
.modern-referans-area {
    padding: 40px 0 60px 0; /* Üst boşluk daraltıldı */
    background-color: #ffffff;
    width: 100%;
}

/* Sayaçlar (Masaüstü 4 Yan Yana) */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 40px;
}

.stat-box { text-align: center; }
.stat-box h3 { font-size: 42px; font-weight: 800; color: #1a1a1a; margin-bottom: 5px; }
.stat-box p { font-size: 15px; color: #888; font-weight: 500; }

/* İçerik ve Kartlar (Masaüstü Yan Yana) */
.content-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.text-side { flex: 1; }
.upper-title { font-size: 13px; font-weight: 700; color: #bbb; letter-spacing: 2px; display: block; margin-bottom: 10px; }
.main-black-title { font-size: 32px; font-weight: 700; color: #000000; line-height: 1.2; margin-bottom: 30px; }

.modern-dark-btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: #1a1a1a;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.modern-dark-btn:hover { background-color: #ff5722; transform: translateY(-3px); }

/* Oval Kartlar (Linkler) */
.cards-side {
    flex: 1.5;
    display: flex;
    gap: 15px;
}

.custom-card {
    flex: 1;
    height: 220px;
    border: 2px solid #ff5722;
    border-radius: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-card span { font-size: 18px; font-weight: 700; color: #ff5722; transition: 0.3s; }

/* Hover Etkisi (Logonuzun Koyu Grisi) */
.custom-card:hover {
    background-color: #2c2f33;
    border-color: #2c2f33;
    transform: translateY(-8px);
}
.custom-card:hover span { color: #ffffff; }

/* -----------------------------------------------------------
   TABLET AYARLARI (Max-width: 1024px)
   ----------------------------------------------------------- */
@media (max-width: 1024px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr); /* 2x2 Yapı */
        gap: 40px;
    }
    
    .content-row {
        flex-direction: column; /* Yazı ve kartlar alt alta */
        text-align: center;
    }

    .cards-side {
        width: 100%;
        gap: 20px;
    }
}

/* -----------------------------------------------------------
   MOBİL AYARLARI (Max-width: 768px)
   ----------------------------------------------------------- */
@media (max-width: 768px) {
    .modern-referans-area { padding: 30px 15px; }

    .stats-row {
        grid-template-columns: repeat(2, 1fr); /* Küçük ekranda da 2li kalsın */
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

    .stat-box h3 { font-size: 32px; }

    .main-black-title { font-size: 26px; }

    .cards-side {
        flex-direction: column; /* Kartlar mobilde mecbur alt alta */
    }

    .custom-card {
        height: 90px; /* Mobilde daha kibar, tam tıklanabilir alan */
        border-radius: 25px;
    }

    .custom-card span { font-size: 17px; }

    .modern-dark-btn { width: 100%; max-width: 280px; }
}

/* -----------------------------------------------------------
   ÇOK KÜÇÜK TELEFONLAR (Max-width: 480px)
   ----------------------------------------------------------- */
@media (max-width: 480px) {
    .stats-row { grid-template-columns: 1fr; } /* İstatistikler tek sıra */
}
/* ==========================================================================
   VİDEO BÖLÜMÜ - YOUTUBE STİLİ VE BAŞLIKLI
   ========================================================================== */
.video-section {
    padding: 50px 0;
    background-color: #ffffff;
}

.video-wrapper {
    display: block;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 550px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    cursor: pointer;
    text-decoration: none;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Başlık için bir tık daha koyu karartma */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

/* Video Üstü Başlık Yazısı */
.video-main-title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    transform: translateY(0);
    transition: all 0.4s ease;
}

/* YouTube Orijinal Renkli Buton */
.play-icon-yt {
    width: 90px;
    height: 65px; /* YouTube logosuna benzer dikdörtgenimsi yapı */
    background-color: #FF0000; /* YouTube Orijinal Kırmızısı */
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 40px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.yt-text {
    margin-top: 15px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    opacity: 0.8;
}

/* HOVER ETKİLERİ */
.video-wrapper:hover video {
    transform: scale(1.1);
}

.video-wrapper:hover .play-icon-yt {
    transform: scale(1.15);
    background-color: #e60000; /* Hoverda hafif koyu kırmızı */
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}

.video-wrapper:hover .video-main-title {
    transform: translateY(-10px);
}

/* MOBİL UYUM */
@media (max-width: 768px) {
    .video-wrapper {
        height: 300px;
        border-radius: 30px;
    }
    .video-main-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    .play-icon-yt {
        width: 70px;
        height: 50px;
        font-size: 30px;
    }
}
/* ==========================================================================
   İLETİŞİM VE HARİTA - CİLT GİBİ HİZALANMIŞ
   ========================================================================== */
.contact-map-section {
    padding: 60px 0;
    background-color: #ffffff;
}

/* Videonun container genişliği ile buradaki mutlaka aynı olmalı (Örn: 1200px) */
.contact-map-section .container {
    max-width: 1200px; 
    margin: 0 auto;
    padding: 0 15px;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Tam %50 - %50 dağılım */
    gap: 30px; /* Aradaki boşluk */
    align-items: stretch; /* Form ve Harita boyunu eşitler */
}

/* Sol Taraf Ayarları */
.map-side {
    display: flex;
    flex-direction: column;
}

.map-box {
    flex: 1; /* Formun boyu neyse harita da o boya uzasın */
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* Bilgi Kartları (Telefon ve Mail) */
.contact-info-row {
    display: flex;
    gap: 15px;
}

.info-card {
    flex: 1;
    background: #fff;
    padding: 15px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.info-card:hover { transform: translateY(-3px); border-color: #ff5722; }

/* Sağ Taraf (Form) Ayarları */
.form-side {
    background: #fff;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.input-group { margin-bottom: 15px; }
.input-group label { display: block; margin-bottom: 5px; font-weight: 600; font-size: 14px; }

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px solid #eee;
    background-color: #fcfcfc;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

/* Mesaj Kutusu Sabitleme */
.input-group textarea {
    height: 130px; /* Sabit yükseklik */
    resize: none; /* Büyütülemez */
    overflow-y: auto; /* Yazı taşarsa içinde kayar */
}

.input-group input:focus, 
.input-group textarea:focus { border-color: #ff5722; background-color: #fff; }

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover { background-color: #ff5722; }

/* MOBİL VE TABLET DÜZENLEMESİ */
@media (max-width: 992px) {
    .contact-main-grid { grid-template-columns: 1fr; }
    .map-box { height: 350px; }
    .contact-info-row { flex-direction: column; }
}

/* ==========================================================================
   FOOTER - GELİŞTİRİLMİŞ TASARIM (CELAL ÖZEL)
   ========================================================================== */
.footer-area {
    background-color: #1a1a1a;
    padding: 80px 0 0 0;
    color: #ffffff;
}

/* 1. Logo ve Açıklama Alanı */
.footer-logo {
    width: 100%;
    max-width: 220px; /* Logo bir tık daha büyütüldü */
    height: auto;
    margin-bottom: 20px;
    display: block;
}

.footer-desc {
    color: #bbb;
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* 2. Turuncu ve Büyük İkonlar */
.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: #ff5722; /* İkonlar artık Turuncu */
    font-size: 24px; /* İkonlar büyütüldü */
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    color: #ffffff; /* Üzerine gelince Beyaz */
    transform: translateY(-5px);
}

/* 3. Başlıklar ve Turuncu Çizgiler */
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    align-items: start;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #ff5722;
}

/* 4. Linkler */
.footer-col ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ff5722;
    padding-left: 5px;
}

/* 5. Alt Bant ve Turuncu Dijisim Linki */
.footer-bottom {
    background-color: #111;
    padding: 25px 0;
    border-top: 1px solid #222;
    text-align: center; /* Yatayda ortalar */
}

.footer-bottom .container {
    display: flex;
    justify-content: center; /* Container içindeki her şeyi ortalar */
}

.footer-bottom p {
    color: #666;
    font-size: 13.5px;
    margin: 0;
}

.footer-copy-link {
    color: #ff5722; /* Dijisim yazısı Turuncu */
    text-decoration: none;
    font-weight: 700;
}

.footer-copy-link:hover {
    text-decoration: underline;
}

/* 6. MOBİL VE TABLET UYUMU */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 50px; }
    .footer-logo { max-width: 190px; }
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-logo { margin: 0 auto 20px; }
    .footer-socials { justify-content: center; }
    .footer-title::after { left: 50%; transform: translateX(-50%); }
    .footer-col ul { align-items: center; }
}

/* ==========================================================================
   Dijisim Hakkımızda Sayfası Özel CSS Tasarımı
   ========================================================================== */

/* Ana Sayfa Yapısı ve Arka Plan */
.hakkimizda-sayfasi {
    background: radial-gradient(circle at top right, #25252f, #141419) !important;
}

/* Kod Editörü Ana Pencere Yapısı */
.kod-editor-pencere {
    background: #111115; 
    border-radius: 16px; 
    border: 1px solid #2d2d38; 
    overflow: hidden; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.3); 
    display: flex; 
    flex-direction: column; 
    height: 380px;
    transition: border-color 0.3s ease;
}

.kod-editor-pencere:hover {
    border-color: #007acc;
}

/* Editör İnce Kaydırma Çubuğu (Scrollbar) Tasarımı */
.kod-icerik-alani::-webkit-scrollbar {
    width: 8px;
}

.kod-icerik-alani::-webkit-scrollbar-track {
    background: #0f0f13; 
}

.kod-icerik-alani::-webkit-scrollbar-thumb {
    background: #2d2d38; 
    border-radius: 4px;
    border: 2px solid #0f0f13;
}

.kod-icerik-alani::-webkit-scrollbar-thumb:hover {
    background: #007acc; 
}

/* --- YETENEK GRID VE PREMIUM KART TASARIMLARI --- */
.yetenek-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); 
    gap: 15px; 
    width: 100%;
}

.yetenek-kart {
    background: #1c1c24 !important;
    color: #ffffff !important;
    padding: 22px 10px; 
    border-radius: 14px; 
    text-align: center; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    gap: 12px;
    border: 1px solid #2d2d38;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease-in-out;
    cursor: default;
}

.yetenek-kart:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border-color: #444454;
}

.kart-baslik {
    font-size: 12px; 
    font-weight: 600; 
    color: #e1e1e6;
    margin-top: 2px;
}

/* --- ORİJİNAL ADOBE, VS VE ÖZEL KUTU EFEKTLERİ --- */

/* VS Code İkonu */
.yetenek-kart .sublime-icon {
    background: #1e1e24;
    color: #007acc !important;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 18px !important;
    font-family: sans-serif; 
    font-style: normal; 
    font-weight: bold;
    border: 1px solid rgba(0, 122, 204, 0.3);
    box-shadow: 0 0 15px rgba(0, 122, 204, 0.1);
}

/* After Effects (Ae) */
.yetenek-kart .adobe-ae {
    background: #000022 !important;
    color: #9999ff !important;
    border: 2px solid #0000ff !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 15px !important;
    font-weight: 700;
    font-family: sans-serif;
    box-shadow: 0 0 12px rgba(0, 0, 255, 0.25);
}

/* Premiere Pro (Pr) */
.yetenek-kart .adobe-pr {
    background: #13001f !important;
    color: #ea76ff !important;
    border: 2px solid #ea76ff !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 15px !important;
    font-weight: 700;
    font-family: sans-serif;
    box-shadow: 0 0 12px rgba(234, 118, 255, 0.25);
}

/* Illustrator (Ai) */
.yetenek-kart .adobe-ai {
    background: #261300 !important;
    color: #ff9a00 !important;
    border: 2px solid #ff9a00 !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 15px !important;
    font-weight: 700;
    font-family: sans-serif;
    box-shadow: 0 0 12px rgba(255, 154, 0, 0.25);
}

/* Photoshop (Ps) */
.yetenek-kart .adobe-ps {
    background: #001c26 !important;
    color: #00c8ff !important;
    border: 2px solid #00c8ff !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 15px !important;
    font-weight: 700;
    font-family: sans-serif;
    box-shadow: 0 0 12px rgba(0, 200, 255, 0.25);
}

/* Dreamweaver (Dw) */
.yetenek-kart .adobe-dw {
    background: #122002 !important;
    color: #00ff2b !important;
    border: 2px solid #00ff2b !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 15px !important;
    font-weight: 700;
    font-family: sans-serif;
    box-shadow: 0 0 12px rgba(0, 255, 43, 0.25);
}

/* Pazaryeri (E-Com) Kutusu */
.pazaryeri-icon-wrapper {
    position: relative;
    background: #291a10 !important;
    border: 2px solid #ff6a00 !important;
    color: #ff6a00 !important;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 0 15px rgba(255, 106, 0, 0.3);
}

.pazaryeri-badge {
    position: absolute;
    top: -6px;
    right: -14px;
    background: #ff6a00;
    color: #ffffff;
    font-size: 7px;
    font-weight: bold;
    padding: 1px 3px;
    border-radius: 20px;
}

.pazaryeri-kutu:hover .pazaryeri-icon-wrapper {
    background: #ff6a00 !important;
    color: #ffffff !important;
    box-shadow: 0 0 20px rgba(255, 106, 0, 0.6);
}

/* Google & Meta Reklam (Growth Ads) Kutusu */
.reklam-icon-wrapper {
    position: relative;
    background: #0d2419 !important;
    border: 2px solid #2ecc71 !important;
    color: #2ecc71 !important;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 0 15px rgba(46, 204, 113, 0.3);
}

.reklam-badge {
    position: absolute;
    top: -6px;
    right: -12px;
    background: #2ecc71;
    color: #ffffff;
    font-size: 7px;
    font-weight: bold;
    padding: 1px 4px;
    border-radius: 20px;
}

.reklam-kutu:hover .reklam-icon-wrapper {
    background: #2ecc71 !important;
    color: #ffffff !important;
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.6);
}

/* --- RESPONSIVE (MOBİL VE TABLET) UYUM AYARLARI --- */
@media (max-width: 992px) {
    .hakkimizda-flex-satir {
        flex-direction: column !important;
    }
    .hakkimizda-sol-blok, .hakkimizda-sag-blok {
        max-width: 100% !important;
        flex-basis: auto !important;
    }
    .metin-alani h1 {
        font-size: 32px !important;
    }
}

@media (max-width: 576px) {
    .yetenek-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .logo-cerceve {
        padding: 20px !important;
    }
}
/* ==========================================================================
   DİJİSİM PREMIUM HİZMETLER ALANI TASARIMI (5'Lİ NEON GRID)
   ========================================================================== */

/* Genel Arka Plan Konteyneri */
.hizmetler-baba-container {
    background-color: #121212 !important; /* Derin Gece Siyahı */
    color: #ffffff !important;
    padding: 60px 20px !important;
    font-family: 'Poppins', sans-serif !important;
    min-height: 100vh;
}

/* Üst Başlık Alanı */
.hizmetler-ust-baslik {
    text-align: center !important;
    margin-bottom: 50px !important;
}

.hizmetler-ust-baslik h1 {
    font-size: 36px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    letter-spacing: 1px !important;
    margin-bottom: 10px !important;
}

.baslik-alt-cizgi {
    width: 80px !important;
    height: 4px !important;
    background: #ff6600 !important; /* Kurumsal Turuncu */
    margin: 0 auto !important;
    border-radius: 2px !important;
}

/* 5'li Yan Yana Grid Yapısı */
.hizmet-kartlar-grid {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important; /* 5 Eşit Sütun */
    gap: 20px !important;
    max-width: 1400px !important;
    margin: 0 auto 60px auto !important;
}

/* Ana Kart Şablonu */
.hizmet-kart {
    background: #1c1c1e !important; /* Koyu Gri Kart Arka Planı */
    border-radius: 16px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    border: 2px solid transparent !important;
    position: relative !important;
}

/* Gorsel Havuz Alanları (Üst Siyah Kısım) */
.kart-gorsel-havuz {
    background: #0a0a0b !important; /* İç Havuz Siyahı */
    height: 160px !important;
    margin: 12px !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Kart İçerik Alanı */
.kart-icerik {
    padding: 15px 20px 20px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    text-align: center !important;
}

.kart-icerik h3 {
    font-size: 18px !important;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
    color: #ffffff !important;
}

.kart-icerik p {
    font-size: 13px !important;
    color: #a1a1a6 !important;
    line-height: 1.5 !important;
    margin-bottom: 15px !important;
    flex-grow: 1 !important;
}

.kart-fiyat {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    margin-bottom: 15px !important;
}

/* Buton Grupları */
.kart-butonlar {
    display: flex !important;
    gap: 10px !important;
}

.btn-sepet-ekle, .btn-satin-al {
    flex: 1 !important;
    padding: 10px 5px !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
}

.btn-sepet-ekle {
    background: #2c2c2e !important;
    color: #ffffff !important;
    border: 1px solid #48484a !important;
}

.btn-sepet-ekle:hover {
    background: #3a3a3c !important;
}

.btn-satin-al {
    background: #ff6600 !important;
    color: #ffffff !important;
}

.btn-satin-al:hover {
    background: #e65c00 !important;
    transform: translateY(-2px) !important;
}


/* ==========================================================================
   RENK VE NEON AYARLARI (FOTOĞRAFTAKİ ÖZEL RENK PARLAMALARI)
   ========================================================================== */

/* 1. Mavi Kart (Yazılım) */
.kart-mavi { border-color: rgba(0, 122, 255, 0.4) !important; }
.kart-mavi:hover { 
    border-color: #007aff !important; 
    box-shadow: 0 0 25px rgba(0, 122, 255, 0.45) !important; 
}
/* 2. Mor Kart (Motion) */
.kart-mor { border-color: rgba(175, 82, 222, 0.4) !important; }
.kart-mor:hover { 
    border-color: #af52de !important; 
    box-shadow: 0 0 25px rgba(175, 82, 222, 0.45) !important; 
}
/* 3. Turuncu Kart (Grafik) */
.kart-turuncu { border-color: rgba(255, 149, 0, 0.4) !important; }
.kart-turuncu:hover { 
    border-color: #ff9500 !important; 
    box-shadow: 0 0 25px rgba(255, 149, 0, 0.45) !important; 
}
/* 4. Kırmızı/Koyu Turuncu Kart (Pazaryeri) */
.kart-kirmizi { border-color: rgba(255, 69, 58, 0.4) !important; }
.kart-kirmizi:hover { 
    border-color: #ff453a !important; 
    box-shadow: 0 0 25px rgba(255, 69, 58, 0.45) !important; 
}
/* 5. Sarı Kart (Reklam) */
.kart-sari { border-color: rgba(255, 214, 10, 0.4) !important; }
.kart-sari:hover { 
    border-color: #ffd60a !important; 
    box-shadow: 0 0 25px rgba(255, 214, 10, 0.45) !important; 
}


/* ==========================================================================
   KART İÇİ ÖZEL GÖRSEL/İKON SİMÜLASYONLARI
   ========================================================================== */

/* Genel Adobe Kutu Tasarımları */
.adobe-kutu {
    width: 44px !important;
    height: 44px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
}

/* 1. Kart: Yazılım Editör Görünümü */
.yazilim-kod-arayuz {
    font-family: 'Courier New', Courier, monospace !important;
    font-size: 11px !important;
    text-align: left !important;
    line-height: 1.4 !important;
    padding: 10px !important;
}
.kod-tag { color: #ff7ab3 !important; }
.kod-degisken { color: #5dd8ff !important; }
.kod-esittir { color: #ffffff !important; }
.kod-metin { color: #ece100 !important; }
.kod-echo { color: #9085ff !important; }

/* 2. Kart: Motion Graphics Ekranı */
.ae-kutu { background: #000000 !important; color: #acc8ff !important; border: 2px solid #10336b !important; top: 40px !important; left: 35px !important; z-index: 2;}
.pr-kutu { background: #000000 !important; color: #e4aeff !important; border: 2px solid #4b106b !important; top: 50px !important; left: 65px !important; z-index: 1;}
.motion-film-seridi {
    position: absolute !important;
    width: 90px !important;
    height: 25px !important;
    border: 2px solid #3a3a3c !important;
    bottom: 35px !important;
    right: 25px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-around !important;
    background: #1c1c1e !important;
    transform: rotate(-10deg) !important;
}
.motion-film-seridi span { width: 10px !important; height: 10px !important; background: #0a0a0b !important; border-radius: 2px !important; }

/* 3. Kart: Grafik Tasarım Ekranı */
.ai-kutu { background: #000000 !important; color: #ff9f0a !important; border: 2px solid #6b3e10 !important; top: 55px !important; left: 40px !important; }
.ps-kutu { background: #000000 !important; color: #0a84ff !important; border: 2px solid #103e6b !important; top: 55px !important; left: 95px !important; }
.vektor-cizim-oku { position: absolute !important; top: 40px !important; right: 45px !important; font-size: 20px !important; color: #ff9500 !important; transform: rotate(-45deg) !important; }

/* 4. Kart: Pazaryeri Entegrasyon Havuzu (ORTADA DÜNYA ETRAFINDA LOGOLAR) */
.pazaryeri-gorsel-tasarim {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
}
.pazaryeri-merkez-ikon {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    font-size: 28px !important;
    color: #ff453a !important;
    text-shadow: 0 0 10px rgba(255, 69, 58, 0.6) !important;
}
.pazar-logo {
    position: absolute !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    padding: 3px 6px !important;
    border-radius: 4px !important;
    background: #1c1c1e !important;
    border: 1px solid #3a3a3c !important;
}
.p-trendyol { top: 15px !important; left: 15px !important; color: #f27a1a !important; }
.p-hepsiburada { top: 15px !important; right: 15px !important; color: #ff6000 !important; }
.p-n11 { bottom: 15px !important; left: 50% !important; transform: translateX(-50%) !important; color: #5cb85c !important; }
.p-amazon { bottom: 45px !important; left: 10px !important; color: #ff9900 !important; }
.p-aliexpress { bottom: 45px !important; right: 10px !important; color: #e62e04 !important; }

/* 5. Kart: Dijital Reklam Havuzu (ROKET VE REKLAM) */
.reklam-gorsel-tasarim {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
}
.reklam-roket {
    position: absolute !important;
    top: 35% !important;
    left: 45% !important;
    font-size: 40px !important;
    color: #ffd60a !important;
    transform: rotate(45deg) !important;
    text-shadow: 0 0 15px rgba(255, 214, 10, 0.5) !important;
    animation: roketKipirdi 3s ease-in-out infinite !important;
}
.reklam-grafik-barlar {
    position: absolute !important;
    bottom: 20px !important;
    left: 20px !important;
    display: flex !important;
    align-items: flex-end !important;
    gap: 4px !important;
}
.reklam-grafik-barlar span { width: 6px !important; background: #3a3a3c !important; border-radius: 2px 2px 0 0 !important; }
.bar-1 { height: 15px !important; }
.bar-2 { height: 30px !important; background: #ffd60a !important; }
.bar-3 { height: 45px !important; background: #ffd60a !important; }

.reklam-mini-ikonlar {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    display: flex !important;
    gap: 8px !important;
    font-size: 14px !important;
}
.google-ads-ikon { color: #4285f4 !important; font-weight: 900 !important; }
.meta-ikon { color: #0064e0 !important; }

@keyframes roketKipirdi {
    0%, 100% { transform: rotate(45deg) translate(0, 0); }
    50% { transform: rotate(45deg) translate(3px, -5px); }
}


/* ==========================================================================
   DİJİSİM SÜRECİ ŞERİDİ (OK ŞEKLİNDE POLYGON LINK BUTONLAR)
   ========================================================================== */

.dijisim-surec-container {
    max-width: 1400px !important;
    margin: 40px auto 0 auto !important;
    background: #1c1c1e !important;
    padding: 30px 40px !important;
    border-radius: 16px !important;
    border: 1px solid #2c2c2e !important;
}

.surec-ana-baslik {
    font-size: 22px !important;
    font-weight: 600 !important;
    margin-bottom: 25px !important;
    color: #ffffff !important;
    border-left: 4px solid #ff6600 !important;
    padding-left: 12px !important;
    text-align: left !important;
}

/* Okları Yan Yana Dizen Esnek Yapı */
.surec-sematik-serit {
    display: flex !important;
    width: 100% !important;
    align-items: center !important;
    gap: 5px !important; /* Aradaki boşluk çizgiyi simüle eder */
}

/* Ok Şekilli Link Butonu */
.surec-link-btn {
    flex: 1 !important;
    background: #2c2c2e !important;
    color: #a1a1a6 !important;
    text-decoration: none !important;
    padding: 14px 10px 14px 25px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-align: center !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    /* CSS Polygon ile Kırlangıç/Ok Kuyruğu Efekti */
    clip-path: polygon(95% 0%, 100% 50%, 95% 100%, 0% 100%, 4% 50%, 0% 0%) !important;
}

/* İlk elemanın sol girintisi olmasın düz başlasın */
.surec-link-btn:first-child {
    clip-path: polygon(95% 0%, 100% 50%, 95% 100%, 0% 100%, 0% 50%, 0% 0%) !important;
    padding-left: 15px !important;
}

/*

/* ==========================================================================
   DİJİSİM PREMIUM HİZMETLER ALANI TASARIMI (5'Lİ NEON GRID - FULL RESPONSIVE)
   ========================================================================== */

/* Genel Arka Plan Konteyneri */
.hizmetler-baba-container {
    background-color: #121212 !important; /* Derin Gece Siyahı */
    color: #ffffff !important;
    padding: 60px 20px !important;
    font-family: 'Poppins', sans-serif !important;
    min-height: 100vh;
}

/* Üst Başlık Alanı */
.hizmetler-ust-baslik {
    text-align: center !important;
    margin-bottom: 50px !important;
}

.hizmetler-ust-baslik h1 {
    font-size: 36px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    letter-spacing: 1px !important;
    margin-bottom: 10px !important;
}

.baslik-alt-cizgi {
    width: 80px !important;
    height: 4px !important;
    background: #ff6600 !important; /* Kurumsal Turuncu */
    margin: 0 auto !important;
    border-radius: 2px !important;
}

/* 5'li Yan Yana Grid Yapısı (Masaüstü için varsayılan) */
.hizmet-kartlar-grid {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important; 
    gap: 20px !important;
    max-width: 1400px !important;
    margin: 0 auto 60px auto !important;
}

/* Ana Kart Şablonu */
.hizmet-kart {
    background: #1c1c1e !important; /* Koyu Gri Kart Arka Planı */
    border-radius: 16px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    border: 2px solid transparent !important;
    position: relative !important;
}

/* Gorsel Havuz Alanları (Üst Siyah Kısım) */
.kart-gorsel-havuz {
    background: #0a0a0b !important; /* İç Havuz Siyahı */
    height: 160px !important;
    margin: 12px !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Kart İçerik Alanı */
.kart-icerik {
    padding: 15px 20px 20px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    text-align: center !important;
}

.kart-icerik h3 {
    font-size: 18px !important;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
    color: #ffffff !important;
}

.kart-icerik p {
    font-size: 13px !important;
    color: #a1a1a6 !important;
    line-height: 1.5 !important;
    margin-bottom: 15px !important;
    flex-grow: 1 !important;
}

.kart-fiyat {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    margin-bottom: 15px !important;
}

/* Buton Grupları */
.kart-butonlar {
    display: flex !important;
    gap: 10px !important;
}

.btn-sepet-ekle, .btn-satin-al {
    flex: 1 !important;
    padding: 10px 5px !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
}

.btn-sepet-ekle {
    background: #2c2c2e !important;
    color: #ffffff !important;
    border: 1px solid #48484a !important;
}

.btn-sepet-ekle:hover {
    background: #3a3a3c !important;
}

.btn-satin-al {
    background: #ff6600 !important;
    color: #ffffff !important;
}

.btn-satin-al:hover {
    background: #e65c00 !important;
    transform: translateY(-2px) !important;
}

/* Kartların Neon Renk Ayarları */
.kart-mavi { border-color: rgba(0, 122, 255, 0.3) !important; }
.kart-mavi:hover { border-color: #007aff !important; box-shadow: 0 0 25px rgba(0, 122, 255, 0.45) !important; }

.kart-mor { border-color: rgba(175, 82, 222, 0.3) !important; }
.kart-mor:hover { border-color: #af52de !important; box-shadow: 0 0 25px rgba(175, 82, 222, 0.45) !important; }

.kart-turuncu { border-color: rgba(255, 149, 0, 0.3) !important; }
.kart-turuncu:hover { border-color: #ff9500 !important; box-shadow: 0 0 25px rgba(255, 149, 0, 0.45) !important; }

.kart-kirmizi { border-color: rgba(255, 69, 58, 0.3) !important; }
.kart-kirmizi:hover { border-color: #ff453a !important; box-shadow: 0 0 25px rgba(255, 69, 58, 0.45) !important; }

.kart-sari { border-color: rgba(255, 214, 10, 0.3) !important; }
.kart-sari:hover { border-color: #ffd60a !important; box-shadow: 0 0 25px rgba(255, 214, 10, 0.45) !important; }

/* Kart İçi Detay Tasarımları */
.adobe-kutu { width: 44px !important; height: 44px !important; border-radius: 8px !important; font-weight: 700 !important; font-size: 18px !important; display: flex !important; align-items: center !important; justify-content: center !important; position: absolute !important; }
.yazilim-kod-arayuz { font-family: 'Courier New', Courier, monospace !important; font-size: 11px !important; text-align: left !important; line-height: 1.4 !important; padding: 10px !important; }
.kod-tag { color: #ff7ab3 !important; } .kod-degisken { color: #5dd8ff !important; } .kod-esittir { color: #ffffff !important; } .kod-metin { color: #ece100 !important; } .kod-echo { color: #9085ff !important; }
.ae-kutu { background: #000000 !important; color: #acc8ff !important; border: 2px solid #10336b !important; top: 40px !important; left: 35px !important; z-index: 2;}
.pr-kutu { background: #000000 !important; color: #e4aeff !important; border: 2px solid #4b106b !important; top: 50px !important; left: 65px !important; z-index: 1;}
.motion-film-seridi { position: absolute !important; width: 90px !important; height: 25px !important; border: 2px solid #3a3a3c !important; bottom: 35px !important; right: 25px !important; display: flex !important; align-items: center !important; justify-content: space-around !important; background: #1c1c1e !important; transform: rotate(-10deg) !important; }
.motion-film-seridi span { width: 10px !important; height: 10px !important; background: #0a0a0b !important; border-radius: 2px !important; }
.ai-kutu { background: #000000 !important; color: #ff9f0a !important; border: 2px solid #6b3e10 !important; top: 55px !important; left: 35px !important; }
.ps-kutu { background: #000000 !important; color: #0a84ff !important; border: 2px solid #103e6b !important; top: 55px !important; left: 85px !important; }
.vektor-cizim-oku { position: absolute !important; top: 40px !important; right: 45px !important; font-size: 20px !important; color: #ff9500 !important; transform: rotate(-45deg) !important; }

/* Pazaryeri Konumlandırma */
.pazaryeri-gorsel-tasarim { position: relative !important; width: 100% !important; height: 100% !important; }
.pazaryeri-merkez-ikon { position: absolute !important; top: 50% !important; left: 50% !important; transform: translate(-50%, -50%) !important; font-size: 28px !important; color: #ff453a !important; text-shadow: 0 0 10px rgba(255, 69, 58, 0.6) !important; }
.pazar-logo { position: absolute !important; font-size: 10px !important; font-weight: 700 !important; padding: 3px 6px !important; border-radius: 4px !important; background: #1c1c1e !important; border: 1px solid #3a3a3c !important; }
.p-trendyol { top: 15px !important; left: 15px !important; color: #f27a1a !important; }
.p-hepsiburada { top: 15px !important; right: 15px !important; color: #ff6000 !important; }
.p-n11 { bottom: 15px !important; left: 50% !important; transform: translateX(-50%) !important; color: #5cb85c !important; }
.p-amazon { bottom: 45px !important; left: 10px !important; color: #ff9900 !important; }
.p-aliexpress { bottom: 45px !important; right: 10px !important; color: #e62e04 !important; }

/* Reklam Konumlandırma */
.reklam-gorsel-tasarim { position: relative !important; width: 100% !important; height: 100% !important; }
.reklam-roket { position: absolute !important; top: 35% !important; left: 45% !important; font-size: 40px !important; color: #ffd60a !important; transform: rotate(45deg) !important; text-shadow: 0 0 15px rgba(255, 214, 10, 0.5) !important; }
.reklam-grafik-barlar { position: absolute !important; bottom: 20px !important; left: 20px !important; display: flex !important; align-items: flex-end !important; gap: 4px !important; }
.reklam-grafik-barlar span { width: 6px !important; background: #3a3a3c !important; border-radius: 2px 2px 0 0 !important; }
.bar-1 { height: 15px !important; } .bar-2 { height: 30px !important; background: #ffd60a !important; } .bar-3 { height: 45px !important; background: #ffd60a !important; }
.reklam-mini-ikonlar { position: absolute !important; top: 15px !important; right: 15px !important; display: flex !important; gap: 8px !important; font-size: 14px !important; }
.google-ads-ikon { color: #4285f4 !important; font-weight: 900 !important; } .meta-ikon { color: #0064e0 !important; }

/* ==========================================================================
   DİJİSİM SÜRECİ ŞERİDİ VE GÜÇLÜ NEON HOVER EFEKTİ
   ========================================================================== */
.dijisim-surec-container {
    max-width: 1400px !important;
    margin: 40px auto 0 auto !important;
    background: #1c1c1e !important;
    padding: 30px 40px !important;
    border-radius: 16px !important;
    border: 1px solid #2c2c2e !important;
}

.surec-ana-baslik {
    font-size: 22px !important;
    font-weight: 600 !important;
    margin-bottom: 25px !important;
    color: #ffffff !important;
    border-left: 4px solid #ff6600 !important;
    padding-left: 12px !important;
    text-align: left !important;
}

.surec-sematik-serit {
    display: flex !important;
    width: 100% !important;
    align-items: center !important;
    gap: 5px !important;
}

.surec-link-btn {
    flex: 1 !important;
    background: #2c2c2e !important;
    color: #a1a1a6 !important;
    text-decoration: none !important;
    padding: 14px 10px 14px 25px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-align: center !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    clip-path: polygon(95% 0%, 100% 50%, 95% 100%, 0% 100%, 4% 50%, 0% 0%) !important;
}

.surec-link-btn:first-child {
    clip-path: polygon(95% 0%, 100% 50%, 95% 100%, 0% 100%, 0% 50%, 0% 0%) !important;
    padding-left: 15px !important;
}

.surec-link-btn:last-child {
    clip-path: polygon(100% 0%, 100% 50%, 100% 100%, 0% 100%, 4% 50%, 0% 0%) !important;
}

/* İSTEDİĞİN GÜÇLÜ NEON HOVER AYARI BURASI */
.surec-link-btn:hover {
    background: #ff6600 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    box-shadow: 0 0 20px #ff6600, 0 0 40px rgba(255, 102, 0, 0.7) !important;
    transform: translateY(-3px) !important;
    z-index: 10 !important;
}

/* ==========================================================================
   TABLET VE MOBİL (RESPONSIVE) MEDYA SORGULARI
   ========================================================================== */

/* 1. Tablet Ekranları (Ekran 1150px altına düştüğünde) */
@media (max-width: 1150px) {
    .hizmet-kartlar-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important; /* Kartlar yan yana 3'lü dizilir */
    }
    .surec-link-btn {
        font-size: 12px !important;
        padding: 12px 5px 12px 18px !important;
    }
}

/* 2. Küçük Tablet ve Büyük Telefon Ekranları (Ekran 850px altına düştüğünde) */
@media (max-width: 850px) {
    .hizmet-kartlar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important; /* Kartlar yan yana 2'li dizilir */
    }
}

/* 3. Tam Mobil Ekranlar (Ekran 600px altına düştüğünde - Jilet gibi dikey düzen) */
@media (max-width: 600px) {
    .hizmetler-baba-container {
        padding: 40px 12px !important;
    }
    .hizmetler-ust-baslik h1 {
        font-size: 28px !important;
    }
    .hizmet-kartlar-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr)) !important; /* Mobilde kartlar tek sütun alt alta */
        gap: 25px !important;
    }
    
    /* Mobilde Süreç Oklarının Bozulmaması İçin Dikey Akış Ayarı */
    .surec-sematik-serit {
        flex-direction: column !important;
        gap: 12px !important;
    }
    .surec-link-btn {
        width: 100% !important;
        padding: 15px !important;
        /* Dikey akışta yatay oklar çirkin duracağı için altı gösteren şık polygon ok yapısı */
        clip-path: polygon(100% 0, 100% 85%, 50% 100%, 0 85%, 0 0) !important;
    }
    .surec-link-btn:first-child {
        clip-path: polygon(100% 0, 100% 85%, 50% 100%, 0 85%, 0 0) !important;
        padding-left: 15px !important;
    }
    .surec-link-btn:last-child {
        clip-path: polygon(100% 0, 100% 100%, 50% 100%, 0 100%, 0 0) !important;
    }
}

/* ==========================================================================
   DİJİSİM ÖDEME SAYFASI STİLLERİ (odeme.php)
   ========================================================================== */
.odeme-baba-container {
    background-color: #121212 !important;
    color: #ffffff !important;
    padding: 60px 20px !important;
    font-family: 'Poppins', sans-serif !important;
    min-height: 85vh;
}
.odeme-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}
/* Sol Taraf: Ödeme Formu */
.odeme-sol-form {
    flex: 1.5;
    background: #1c1c1e !important;
    border: 1px solid #2c2c2e !important;
    border-radius: 16px;
    padding: 35px;
}
/* Sağ Taraf: Sipariş Özeti */
.odeme-sag-kart {
    flex: 1;
    background: #1c1c1e !important;
    border: 1px solid #2c2c2e !important;
    border-radius: 16px;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.odeme-baslik {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-top: 0;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid #2c2c2e;
}

/* Form Elemanları */
.form-grup {
    margin-bottom: 20px;
}
.form-grup label {
    display: block;
    font-size: 13px;
    color: #a1a1a6;
    margin-bottom: 8px;
    font-weight: 500;
}
.form-grup input {
    width: 100%;
    background: #0a0a0b !important;
    border: 1px solid #2c2c2e !important;
    border-radius: 10px;
    padding: 12px 15px;
    color: #fff !important;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}
.form-grup input:focus {
    border-color: #ff6600 !important;
    outline: none;
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.2);
}

/* Yan Yana Form Elemanları (CVC ve SKT için) */
.form-satir-ikili {
    display: flex;
    gap: 20px;
}
.form-satir-ikili .form-grup {
    flex: 1;
}

/* Sağ Panel Satırları */
.odeme-fatura-satir {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
    color: #a1a1a6;
}
.odeme-fatura-satir.toplam {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px dashed #2c2c2e;
}
.odeme-fatura-satir.toplam .fiyat-renk {
    color: #ff6600;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.3);
}

/* Ödemeyi Tamamla Butonu */
.btn-odeme-tamamla {
    width: 100%;
    background: #ff6600 !important;
    color: #fff !important;
    border: none;
    padding: 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.25) !important;
}
.btn-odeme-tamamla:hover {
    background: #e65c00 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.45) !important;
}

/* Responsive Kırılımlar */
@media (max-width: 992px) {
    .odeme-wrapper {
        flex-direction: column-reverse;
    }
    .odeme-sag-kart {
        position: static;
        width: 100%;
    }
}
/* ==========================================================================
   DİJİSİM ÖDEME SONUÇ / BAŞARI SAYFASI STİLLERİ (odeme_sonuc.php)
   ========================================================================== */
.sonuc-baba-container {
    background-color: #121212 !important;
    color: #ffffff !important;
    padding: 80px 20px !important;
    font-family: 'Poppins', sans-serif !important;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sonuc-kart {
    max-width: 600px;
    width: 100%;
    background: #1c1c1e !important;
    border: 1px solid #2c2c2e !important;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.sonuc-ikon-alan {
    width: 80px;
    height: 80px;
    background: rgba(92, 184, 92, 0.1);
    border: 2px solid #5cb85c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: #5cb85c;
    margin: 0 auto 25px auto;
    box-shadow: 0 0 20px rgba(92, 184, 92, 0.2);
}
.sonuc-kart h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}
.sonuc-kart p {
    color: #a1a1a6;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}
.siparis-bilgi-kutusu {
    background: #0a0a0b !important;
    border: 1px solid #2c2c2e !important;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 35px;
    text-align: left;
}
.siparis-satir {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}
.siparis-satir:last-child {
    margin-bottom: 0;
}
.siparis-satir .baslik {
    color: #a1a1a6;
}
.siparis-satir .deger {
    color: #fff;
    font-weight: 600;
}
.siparis-satir .deger.vurgu {
    color: #ff6600;
}
.btn-ana-sayfa-don {
    display: inline-block;
    background: #ff6600 !important;
    color: #fff !important;
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.25) !important;
}
.btn-ana-sayfa-don:hover {
    background: #e65c00 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.45) !important;
}
/* ==========================================================================
   DİJİSİM ÖDEME BAŞARISIZ / HATA SAYFASI STİLLERİ
   ========================================================================== */
.sonuc-ikon-alan.hata {
    background: rgba(255, 69, 58, 0.1) !important;
    border: 2px solid #ff453a !important;
    color: #ff453a !important;
    box-shadow: 0 0 20px rgba(255, 69, 58, 0.2) !important;
}
.btn-tekrar-dene {
    display: inline-block;
    background: #2c2c2e !important;
    color: #fff !important;
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 1px solid #444;
}
.btn-tekrar-dene:hover {
    background: #3a3a3c !important;
    border-color: #ff453a;
    transform: translateY(-2px);
}
/* ==========================================================================
   DİJİSİM SÜRECİ: LÜKS AÇIK GRİ & MAKALE TASARIMI (GÜNCEL & AMPULSÜZ)
   ========================================================================== */
.surec-acik-gri-body {
    background-color: #f4f5f7; /* Tamamen açık lüks gri arka plan */
    background-image: 
        radial-gradient(rgba(0, 0, 0, 0.02) 2px, transparent 0),
        radial-gradient(rgba(0, 0, 0, 0.01) 1px, transparent 0); 
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    padding: 1px 0;
    font-family: 'Poppins', sans-serif;
}

.surec-sayfa-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Üst Buton Şeridi (Adım Navigasyonu) */
.surec-akiss-seridi {
    display: flex;
    justify-content: space-between;
    background: #ffffff;
    padding: 8px;
    border-radius: 40px;
    border: 1px solid #e5e5ea;
    margin-bottom: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    gap: 8px;
}

.surec-adim-btn {
    flex: 1;
    text-align: center;
    padding: 14px 10px;
    color: #636366;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 30px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.surec-adim-btn:hover {
    color: #1c1c1e;
    background: #f2f2f7;
}

/* Aktif Adımların Premium Renk Parlamaları */
.aktif-fikir { background: #ff9500 !important; color: #fff !important; box-shadow: 0 4px 12px rgba(255, 149, 0, 0.25); }
.aktif-tasarim { background: #af52de !important; color: #fff !important; box-shadow: 0 4px 12px rgba(175, 82, 222, 0.25); }
.aktif-gelistirme { background: #007aff !important; color: #fff !important; box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25); }
.aktif-test { background: #ff453a !important; color: #fff !important; box-shadow: 0 4px 12px rgba(255, 69, 58, 0.25); }
.aktif-teslim { background: #34c759 !important; color: #fff !important; box-shadow: 0 4px 12px rgba(52, 199, 89, 0.25); }

/* Makale İçerik Kartı */
.surec-makale-kart {
    background: #ffffff;
    border: 1px solid #e5e5ea;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

/* Sağ Alt Köşe: Dinamik Renkli Bağlantı Şeması (Sitemap) */
.surec-makale-kart::before {
    content: "\f0e8"; /* FontAwesome Bağlantı Şeması */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: -40px;
    right: -20px;
    font-size: 240px;
    color: var(--aktif-renk);
    opacity: 0.035; /* Arka planda çok silik, şık bir doku yaratır */
    pointer-events: none;
    transform: rotate(-10deg);
    transition: color 0.4s ease;
}

/* Sol Üst Köşe: Dinamik Renkli Yükseliş Grafiği */
.surec-makale-kart::after {
    content: "\f201"; /* FontAwesome Grafik İkonu */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: -20px;
    left: -30px;
    font-size: 180px;
    color: var(--aktif-renk);
    opacity: 0.02;
    pointer-events: none;
    transform: rotate(15deg);
    transition: color 0.4s ease;
}

/* Makale Başlık ve Etiketleri */
.makale-ust-etiket {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.makale-ana-baslik {
    color: #1c1c1e;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Makale Yazı Alanı */
.makale-metin-alani {
    color: #3a3a3c;
    font-size: 15px;
    line-height: 1.8;
    position: relative;
    z-index: 2; /* Yazıların ikonların üstünde kalmasını sağlar */
}

.giris-spot {
    font-size: 17px;
    font-weight: 500;
    color: #1c1c1e;
    border-left: 4px solid var(--aktif-renk);
    padding-left: 15px;
    margin-bottom: 35px;
    line-height: 1.6;
    transition: border-color 0.4s ease;
}

/* Öneri ve Strateji Blokları (Blog Tarzı) */
.makale-alt-kutu {
    background: #f8f9fa;
    border: 1px solid #f2f2f7;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.makale-alt-kutu:hover {
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.02);
    border-color: var(--aktif-renk);
    transform: translateY(-2px);
}

.makale-alt-kutu h4 {
    color: #1c1c1e;
    font-size: 16px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.makale-alt-kutu h4 i {
    color: var(--aktif-renk);
    transition: color 0.4s ease;
}

.makale-alt-kutu p {
    color: #48484a;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Alt İlerleme Butonu */
.surec-alt-aksiyon {
    margin-top: 40px;
    text-align: right;
    position: relative;
    z-index: 3;
}

.btn-sonraki-adim {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-sonraki-adim:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

/* Mobil Cihaz Uyumları */
@media (max-width: 768px) {
    .surec-akiss-seridi {
        flex-direction: column;
        border-radius: 20px;
        padding: 10px;
    }
    .surec-adim-btn {
        padding: 12px 10px;
    }
    .surec-makale-kart {
        padding: 30px 20px;
    }
    .makale-ana-baslik {
        font-size: 22px;
    }
    .giris-spot {
        font-size: 15px;
    }
}
/* ==========================================================================
   DİJİSİM REFERANSLAR SAYFA STİLLERİ (LÜKS AÇIK GRİ & %100 RESPONSIVE)
   ========================================================================== */
.referans-acik-gri-body {
    background-color: #f4f5f7; /* Süreç sayfasıyla aynı asil açık gri */
    background-image: 
        radial-gradient(rgba(0, 0, 0, 0.02) 2px, transparent 0),
        radial-gradient(rgba(0, 0, 0, 0.01) 1px, transparent 0); 
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    padding: 20px 0 80px 0;
    font-family: 'Poppins', sans-serif;
}

.referans-sayfa-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.referans-ust-baslik-alani {
    border-left: 4px solid #ff9500;
    padding-left: 15px;
    margin-bottom: 30px;
}

.referans-ana-baslik {
    color: #1c1c1e;
    font-size: 26px;
    font-weight: 700;
    margin: 0;
}

/* Filtreleme Şeridi */
.referans-filtre-seridi {
    display: flex;
    justify-content: space-between;
    background: #ffffff;
    padding: 8px;
    border-radius: 40px;
    border: 1px solid #e5e5ea;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    gap: 8px;
}

.filtre-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 14px 10px;
    color: #636366;
    font-weight: 600;
    font-size: 13px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

.filtre-btn:hover {
    color: #1c1c1e;
    background: #f2f2f7;
}

.filtre-btn.aktif {
    background: #ff9500 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(255, 149, 0, 0.25);
}

/* Proje Kartları Izgarası (Grid Düzeni) */
.referans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Masaüstünde yan yana 3 kart */
    gap: 25px;
}

/* Referans Kart Yapısı */
.referans-kart {
    background: #ffffff;
    border: 1px solid #e5e5ea;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
	display: flex;
	flex-direction: column;
}

.referans-kart:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 149, 0, 0.08);
    border-color: rgba(255, 149, 0, 0.2);
}

/* Arka plandaki o silik süreç şeması çizgisi (Görseldeki gibi sızma efekt) */
.referans-kart::before {
    content: "\f0e8";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 90px;
    color: #ff9500;
    opacity: 0.04;
    pointer-events: none;
}

/* Kartın Görsel Alanı */
.referans-kart-gorsel {
    width: 100%;
    height: 220px;
    background: #f8f9fa;
    border-bottom: 1px solid #e5e5ea;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.referans-kart-gorsel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.referans-kart:hover .referans-kart-gorsel img {
    transform: scale(1.03);
}

/* Eğer görsel yüklenmezse devreye giren alan */
.gorsel-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5e5ea;
    color: #aeaea2;
    font-size: 48px;
}

/* Kart İçerik Alanı */
.referans-kart-icerik {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.referans-kart-icerik h3 {
    color: #1c1c1e;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.proje-kategori-etiket {
    color: #8e8e93;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    display: inline-block;
}

/* Özellik Satırları */
.proje-ozellikler {
    margin-top: auto; /* Yazıları en alta sabitler */
    border-top: 1px solid #f2f2f7;
    padding-top: 15px;
}

.ozellik-satir {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2c2c2e;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
}

.ozellik-satir i {
    color: #ff9500;
    font-size: 14px;
}

/* ==========================================================================
   MEDYA SORGULARI (TABLET & MOBİL UYUMLULUK)
   ========================================================================== */

/* 1. TABLET UYUMU (Ekran genişliği 992px ve altındayken) */
@media (max-width: 992px) {
    .referans-grid {
        grid-template-columns: repeat(2, 1fr); /* Yan yana 2 karta düşür */
        gap: 20px;
    }
    .referans-filtre-seridi {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* Filtre butonlarını 3 sütun yap */
        border-radius: 16px;
        padding: 6px;
    }
    .filtre-btn {
        padding: 10px;
        font-size: 12px;
    }
}

/* 2. MOBİL UYUMU (Ekran genişliği 768px ve altındayken) */
@media (max-width: 768px) {
    .referans-grid {
        grid-template-columns: 1fr; /* Kartları tamamen alt alta tek sıra yap */
        gap: 20px;
    }
    .referans-filtre-seridi {
        grid-template-columns: 1fr; /* Filtre butonlarını alt alta tek sıra yap */
        border-radius: 12px;
    }
    .referans-kart-gorsel {
        height: 200px; /* Mobilde görselleri biraz daha optimize et */
    }
    .referans-kart-icerik {
        padding: 20px;
    }
    .referans-ana-baslik {
        font-size: 22px;
    }
}

/* ==========================================================================
   DİJİSİM PROJE DETAY - NEON GLOW & DİNAMİK MOCKUP RESPONSIVE STİLLERİ
   ========================================================================== */
.detay-fume-body {
    background-color: #0b0b0c; /* Tam füme/siyah premium arka plan */
    padding: 60px 0 100px 0;
    font-family: 'Poppins', sans-serif;
    color: #e5e5ea;
    overflow-x: hidden;
}

.detay-premium-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.detay-ust-baslik-alani {
    border-left: 4px solid #ff9500;
    padding-left: 20px;
    margin-bottom: 50px;
}

.detay-ana-baslik {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

/* Üst İki Kolonlu Yapı */
.detay-ust-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

/* Sol Bilgi Kartı */
.detay-sol-istatistik {
    background: #141416;
    border: 1px solid #232326;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.istatistik-satir {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.istatistik-satir i {
    color: #ff9500;
    font-size: 22px;
    background: rgba(255, 149, 0, 0.08);
    padding: 15px;
    border-radius: 16px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.istatistik-satir span {
    display: block;
    color: #8e8e93;
    font-size: 13px;
    font-weight: 500;
}

.istatistik-satir strong {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.btn-detay-canli {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ff9500;
    color: #ffffff;
    text-decoration: none;
    padding: 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(255, 149, 0, 0.3);
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-detay-canli:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 149, 0, 0.5);
}

/* Sağ Kolon: Arka Planı Neon Patlamalı Sahne */
.detay-sag-mockup-sahnesi {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 380px;
    position: relative;
}

/* Cihazları Bir Arada Tutan ve Arkasından Neon Sızan Kapsayıcı */
.neon-glow-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 320px;
}

/* Ana Büyük Neon Işığı */
.neon-glow-wrapper::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 70%;
    background: transparent;
    border-radius: 40px;
    box-shadow: 0 0 60px 25px rgba(255, 149, 0, 0.28); /* Diğer sayfalardaki imza parlamamız */
    z-index: 1;
    pointer-events: none;
}

/* Cihaz Katman Ortak Özellikleri */
.mockup-device {
    position: absolute;
    z-index: 2;
    background: #1c1c1e;
    border: 3px solid #2c2c2e;
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
    overflow: hidden;
}

.mockup-device img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Masaüstü Ekran Yerleşimi */
.pc-mockup {
    width: 380px;
    height: 230px;
    top: 20px;
    left: 20px;
    border-radius: 12px;
}

/* Tablet Ekran Yerleşimi (Sağ Alt Köşe) */
.tablet-mockup {
    width: 130px;
    height: 180px;
    bottom: 10px;
    right: 0px;
    z-index: 3;
    border-radius: 16px;
    border-color: #222224;
}

/* Mobil Ekran Yerleşimi (En Ön Katman - Sol Alt Köşe) */
.mobil-mockup {
    width: 85px;
    height: 165px;
    bottom: -15px;
    left: 0px;
    z-index: 4;
    border-radius: 18px;
    border-color: #222224;
}

/* Orta Bölüm: Açıklama Kutusu */
.detay-orta-aciklama-kutusu {
    background: #141416;
    border: 1px solid #232326;
    padding: 35px;

    border-radius: 24px;
    margin-bottom: 40px;
}

.detay-orta-aciklama-kutusu p {
    color: #d1d1d6;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* Logo Sergileme Alanı ve Kutusu */
.logo-sergi-kart {
    background: #141416;
    border: 1px solid #232326;
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    overflow: hidden;
    margin-bottom: 55px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: border-color 0.3s ease;
}

/* Logoya da Hafif Neon Dokunuş */
.logo-sergi-kart:hover {
    border-color: rgba(255, 149, 0, 0.25);
}

.logo-gorsel-kapsayici {
    background: #0d0d0f;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #232326;
}

.logo-gorsel-kapsayici img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

.logo-detay-metin {
    padding: 40px;
    display: flex;
    align-items: center;
}

.logo-detay-metin p {
    color: #d1d1d6;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Alt Bölüm: Kreatif Hizmetler Başlığı ve Neon Kartları */
.detay-alt-baslik {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

.detay-hizmet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Hizmet Kartlarına Eklenen Harika Neon Işık Efektleri */
.detay-hizmet-kart {
    background: #141416;
    border: 1px solid #232326;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Kartların Üzerine Gelindiğinde Diğer Sayfalardaki Gibi Turuncu Neon Çizgi ve Parlama Efekti */
.detay-hizmet-kart:hover {
    transform: translateY(-5px);
    border-color: #ff9500;
    box-shadow: 0 8px 25px rgba(255, 149, 0, 0.18);
}

.hizmet-ikon-turuncu i {
    color: #ff9500;
    font-size: 20px;
    background: rgba(255, 149, 0, 0.08);
    padding: 12px;
    border-radius: 12px;
}

.hizmet-yazi-alani h4 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.hizmet-yazi-alani span {
    color: #8e8e93;
    font-size: 12px;
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .detay-ust-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .detay-hizmet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .logo-sergi-kart {
        grid-template-columns: 1fr;
    }
    .logo-gorsel-kapsayici {
        border-right: none;
        border-bottom: 1px solid #232326;
    }
    .detay-sag-mockup-sahnesi {
        min-height: 340px;
    }
}

@media (max-width: 576px) {
    .detay-hizmet-grid {
        grid-template-columns: 1fr;
    }
    .neon-glow-wrapper {
        max-width: 320px;
        height: 240px;
    }
    .pc-mockup {
        width: 260px;
        height: 160px;
    }
    .tablet-mockup {
        width: 90px;
        height: 130px;
    }
    .mobil-mockup {
        width: 60px;
        height: 115px;
        bottom: -10px;
    }
}
/* ==========================================================================
   RENKLİ NEON GLOW VE PROJE DETAY PRESETLERİ
   ========================================================================== */
.detay-fume-body {
    background-color: #0b0b0c;
    padding: 60px 0 100px 0;
    font-family: 'Poppins', sans-serif;
    color: #e5e5ea;
}

.detay-premium-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.detay-ust-baslik-alani {
    border-left: 4px solid #ff9500;
    padding-left: 20px;
    margin-bottom: 50px;
}

.detay-ana-baslik {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.detay-ust-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.detay-sol-istatistik {
    background: #141416;
    border: 1px solid #232326;
    border-radius: 24px;
    padding: 35px;
}

.istatistik-satir {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.istatistik-satir i {
    color: #ff9500;
    font-size: 22px;
    background: rgba(255, 149, 0, 0.08);
    padding: 15px;
    border-radius: 16px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.istatistik-satir span {
    display: block;
    color: #8e8e93;
    font-size: 13px;
    font-weight: 500;
}

.istatistik-satir strong {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.btn-detay-canli {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ff9500;
    color: #ffffff;
    text-decoration: none;
    padding: 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(255, 149, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-detay-canli:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 149, 0, 0.5);
}

/* Cihaz Sahnesi ve Büyük Arka Plan Neonu */
.detay-sag-mockup-sahnesi {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 380px;
    position: relative;
}

.neon-glow-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 320px;
}

.neon-glow-wrapper::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 70%;
    background: transparent;
    border-radius: 40px;
    box-shadow: 0 0 60px 25px rgba(255, 149, 0, 0.25);
    z-index: 1;
}

/* Cihazlar ve Resim Olmadığında Devreye Giren Şık Çerçeve Tasarımları */
.mockup-device {
    position: absolute;
    z-index: 2;
    background: #141416;
    border: 3px solid #232326;
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
    overflow: hidden;
}

.mockup-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #48484a;
    gap: 10px;
    background: #1a1a1e;
}
.mockup-placeholder i { font-size: 32px; color: #3a3a3c; }
.mockup-placeholder span { font-size: 12px; font-weight: 500; }

.pc-mockup { width: 380px; height: 230px; top: 20px; left: 20px; border-radius: 12px; }
.tablet-mockup { width: 130px; height: 180px; bottom: 10px; right: 0px; z-index: 3; border-radius: 16px; }
.mobil-mockup { width: 85px; height: 165px; bottom: -15px; left: 0px; z-index: 4; border-radius: 18px; }

.mockup-device img { width: 100%; height: 100%; object-fit: cover; display: block; }

.detay-orta-aciklama-kutusu {
    background: #141416;
    border: 1px solid #232326;
    padding: 35px;
    border-radius: 24px;
    margin-bottom: 40px;
}
.detay-orta-aciklama-kutusu p { color: #d1d1d6; font-size: 15px; line-height: 1.8; margin: 0; }

/* Logo Alanı */
.logo-sergi-kart {
    background: #141416;
    border: 1px solid #232326;
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    overflow: hidden;
    margin-bottom: 55px;
}

.logo-gorsel-kapsayici {
    background: #0d0d0f;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #232326;
    min-height: 160px;
}
.logo-gorsel-kapsayici img { max-width: 100%; max-height: 120px; object-fit: contain; }
.logo-detay-metin { padding: 40px; display: flex; align-items: center; }
.logo-detay-metin p { color: #d1d1d6; font-size: 14px; line-height: 1.7; margin: 0; }

/* Alt Bölüm Hizmet Alanı */
.detay-alt-baslik { color: #ffffff; font-size: 20px; font-weight: 600; margin-bottom: 25px; }
.detay-hizmet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.detay-hizmet-kart {
    background: #141416;
    border: 1px solid #232326;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.detay-hizmet-kart:hover { transform: translateY(-5px); }

.hizmet-yazi-alani h4 { color: #ffffff; font-size: 15px; font-weight: 600; margin: 0 0 4px 0; }
.hizmet-yazi-alani span { color: #8e8e93; font-size: 12px; }
.hizmet-ikon-kutusu i { font-size: 20px; padding: 12px; border-radius: 12px; }

/* ==========================================================================
   KATEGORİLERE ÖZEL RENKLİ NEON GLOW KATMANLARI (CELAL'İN İSTEDİĞİ AYARLAR)
   ========================================================================== */

/* 1. Web Yazılım - MAVİ */
.detay-hizmet-kart.neon-mavi .hizmet-ikon-kutusu i {
    color: #007aff;
    background: rgba(0, 122, 255, 0.08);
}
.detay-hizmet-kart.neon-mavi:hover {
    border-color: #007aff;
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.22);
}

/* 2. Motion Grafik - MOR */
.detay-hizmet-kart.neon-mor .hizmet-ikon-kutusu i {
    color: #af52de;
    background: rgba(175, 82, 222, 0.08);
}
.detay-hizmet-kart.neon-mor:hover {
    border-color: #af52de;
    box-shadow: 0 8px 25px rgba(175, 82, 222, 0.22);
}

/* 3. Logo & Marka - TURUNCU */
.detay-hizmet-kart.neon-turuncu .hizmet-ikon-kutusu i {
    color: #ff9500;
    background: rgba(255, 149, 0, 0.08);
}
.detay-hizmet-kart.neon-turuncu:hover {
    border-color: #ff9500;
    box-shadow: 0 8px 25px rgba(255, 149, 0, 0.22);
}

/* 4. Dijital Reklam - SARI */
.detay-hizmet-kart.neon-sari .hizmet-ikon-kutusu i {
    color: #ffcc00;
    background: rgba(255, 204, 0, 0.08);
}
.detay-hizmet-kart.neon-sari:hover {
    border-color: #ffcc00;
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.22);
}

/* Responsive */
@media (max-width: 992px) {
    .detay-ust-grid { grid-template-columns: 1fr; gap: 60px; }
    .detay-hizmet-grid { grid-template-columns: repeat(2, 1fr); }
    .logo-sergi-kart { grid-template-columns: 1fr; }
    .logo-gorsel-kapsayici { border-right: none; border-bottom: 1px solid #232326; }
}
@media (max-width: 576px) {
    .detay-hizmet-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   DİJİSİM RANDEVU SAYFASI PREMIUM TASARIM STİLLERİ
   ========================================================================== */
.randevu-fume-body {
    background-color: #0b0b0c;
    padding: 60px 0 100px 0;
    font-family: 'Poppins', sans-serif;
    color: #e5e5ea;
}

.randevu-premium-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.randevu-ust-baslik-alani {
    border-left: 4px solid #ff9500;
    padding-left: 20px;
    margin-bottom: 40px;
}

.randevu-ana-baslik {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.randevu-alt-metin {
    color: #8e8e93;
    font-size: 14px;
    margin: 0;
}

/* Izgara Düzeni */
.randevu-izgara-yapisi {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Form Kutusu */
.randevu-sol-form-kutusu {
    background: #141416;
    border: 1px solid #232326;
    border-radius: 24px;
    padding: 40px;
}

.form-satir-ikili {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.input-grup {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.input-grup label {
    color: #d1d1d6;
    font-size: 13px;
    font-weight: 500;
}

.input-grup label i {
    color: #ff9500;
    margin-right: 5px;
}

/* İnput ve Select Ortak Stilleri */
.randevu-modern-form input,
.randevu-modern-form select,
.randevu-modern-form textarea {
    background: #1c1c1e;
    border: 1px solid #2c2c2e;
    border-radius: 12px;
    padding: 14px 16px;
    color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

.randevu-modern-form input::placeholder,
.randevu-modern-form textarea::placeholder {
    color: #48484a;
}

/* Focus (Odaklanma) Durumunda Turuncu Parlama */
.randevu-modern-form input:focus,
.randevu-modern-form select:focus,
.randevu-modern-form textarea:focus {
    border-color: #ff9500;
    box-shadow: 0 0 12px rgba(255, 149, 0, 0.2);
    background: #222226;
}

/* Gönder Butonu */
.btn-randevu-gonder {
    background: #ff9500;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 16px 35px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 4px 20px rgba(255, 149, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-randevu-gonder:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 149, 0, 0.5);
}

/* Sağ Bilgi Kartı */
.randevu-sag-bilgi-kartı {
    background: #141416;
    border: 1px solid #232326;
    border-radius: 24px;
    padding: 35px;
}

.kurumsal-bilgi-kutusu h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 25px 0;
    border-bottom: 1px solid #232326;
    padding-bottom: 15px;
}

.bilgi-madde {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.bilgi-madde i {
    font-size: 20px;
    color: #ff9500;
    background: rgba(255, 149, 0, 0.08);
    padding: 12px;
    border-radius: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bilgi-madde h4 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.bilgi-madde p {
    color: #8e8e93;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* Başarılı Mesaj Kutusu */
.randevu-basarili {
    background: rgba(48, 209, 88, 0.1);
    border: 1px solid #30d158;
    color: #30d158;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.randevu-basarili i {
    font-size: 24px;
}

/* Mobil Uyum Kırılmaları */
@media (max-width: 992px) {
    .randevu-izgara-yapisi { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .form-satir-ikili { grid-template-columns: 1fr; gap: 0; }
}

.kart-gorsel-link {
    text-decoration: none;
    display: block;
    width: 100%;
}
.kart-baslik-link {
    color: inherit; /* Kartın kendi başlık rengini korur */
    text-decoration: none; /* Alt çizgiyi kaldırır */
    transition: color 0.3s ease;
}
.kart-baslik-link:hover {
    color: #af52de; /* Üzerine gelince tatlı bir parlama efekti (isteğe bağlı) */
}

/* ==========================================================================
   HİZMET KARTLARI HOVER RENK OPTİMİZASYONU
   ========================================================================== */

/* Genel Başlık Link Ayarı */
.kart-baslik-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Her Kartın Kendi Neon Renginde Parlaması */

/* Mavi Kart (Yazılım) */
.kart-mavi:hover .kart-baslik-link {
    color: #007aff !important; /* Canlı Neon Mavi */
}

/* Mor Kart (Motion Graphics) */
.kart-mor:hover .kart-baslik-link {
    color: #af52de !important; /* Kreatif Mor */
}

/* Turuncu Kart (Grafik Tasarım) */
.kart-turuncu:hover .kart-baslik-link {
    color: #ff9500 !important; /* Dijital Turuncu */
}

/* Kırmızı Kart (Pazaryeri) */
.kart-kirmizi:hover .kart-baslik-link {
    color: #ff3b30 !important; /* E-Ticaret Kırmızısı */
}

/* Sarı Kart (Dijital Reklam) */
.kart-sari:hover .kart-baslik-link {
    color: #ffcc00 !important; /* Performans Sarısı */
}