/* --- PORTFOLYO & PROCESS CSS --- */
.section-header { margin-bottom: 50px; }
.portfolio { padding: 100px 0; }

.portfolio-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
    margin-bottom: 60px;
}

.portfolio-item { 
    position: relative; 
    border-radius: 20px; 
    overflow: hidden; 
    height: 300px;
    background: #000;
}

.portfolio-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    opacity: 0.8; 
    transition: 0.5s; 
}

.portfolio-info { 
    position: absolute; 
    bottom: -100%; 
    left: 0; 
    width: 100%; 
    padding: 30px; 
    background: linear-gradient(transparent, rgba(10, 15, 29, 0.9)); 
    transition: 0.4s;
    color: white;
}

.portfolio-item:hover img { transform: scale(1.1); opacity: 0.5; }
.portfolio-item:hover .portfolio-info { bottom: 0; }

/* --- SONSUZ KAYAN LOGO SİSTEMİ --- */
.logo-slider {
    width: 100%;
    height: 150px; /* Slider yüksekliği */
    overflow: hidden;
    position: relative;
    background: transparent;
    display: flex;
    align-items: center;
}

.logo-track {
    display: flex;
    width: max-content; /* İçerik kadar uzasın */
    animation: scrollInfinite 20s linear infinite; /* Hızı buradan ayarla */
}

.logo-item {
    width: 300px; /* Her logonun kapladığı genişlik */
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px; /* Logolar arası boşluk */
}

.logo-item img {
    height: 100px; /* LOGO BOYUTU - BURAYI İSTEDİĞİN KADAR BÜYÜTEBİLİRSİN */
    width: auto;
    object-fit: contain;
    filter: none; /* Renkli kalsın */
    transition: transform 0.3s ease;
}

.logo-item img:hover {
    transform: scale(1.1);
}

/* YÜZDE HESABIYLA KAYMA (HİÇBİR ZAMAN PATLAMAZ) */
@keyframes scrollInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        /* İçerik iki katı olduğu için tam %50 kaydırınca başa kusursuz döner */
        transform: translateX(-50%);
    }
}

/* Mobilde logolar çok büyük gelirse diye */
@media (max-width: 768px) {
    .logo-item { width: 200px; padding: 0 20px; }
    .logo-item img { height: 70px; }
}

/* Process Step */
.process { padding: 100px 0; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 50px; }
.process-step { background: white; padding: 40px; border-radius: 20px; border: 1px solid var(--border); text-align: left; }
.step-num { font-size: 3rem; font-weight: 800; color: rgba(255, 107, 0, 0.1); margin-bottom: -30px; }
.process-step h4 { font-size: 1.2rem; margin-bottom: 10px; color: var(--navy); }
.process-step p { font-size: 0.9rem; color: var(--text-sub); }

/* Responsive */
@media (max-width: 900px) {
    .portfolio-grid, .process-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .portfolio-grid, .process-grid { grid-template-columns: 1fr; }
}

/* --- PROCESS MODERN CSS --- */
.process-modern { padding: 120px 0; background: var(--white); }
.section-desc { max-width: 600px; margin: 15px auto 0; color: var(--text-sub); font-size: 1.1rem; }

.process-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 80px;
    position: relative;
}

.step-card {
    position: relative;
    padding: 40px 30px;
    background: var(--light-bg);
    border-radius: 30px;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.step-card:hover {
    background: var(--navy);
    transform: translateY(-15px);
    border-color: var(--orange);
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.step-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px var(--orange);
    opacity: 0.4;
    line-height: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.step-card:hover .step-icon {
    background: var(--orange);
    color: var(--white);
}

.step-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
    transition: 0.3s;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-sub);
    line-height: 1.6;
    transition: 0.3s;
}

.step-card:hover h4 { color: var(--white); }
.step-card:hover p { color: rgba(255,255,255,0.7); }
.step-card:hover .step-number { opacity: 0.8; -webkit-text-stroke: 1px var(--orange); }

/* Adımlar Arası Bağlantı Çizgisi (Masaüstü için) */
.step-line {
    position: absolute;
    top: 50px;
    right: -45px;
    width: 60px;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--border), var(--border) 5px, transparent 5px, transparent 10px);
    z-index: 1;
}

/* Mobilde çizgileri kaldır */
@media (max-width: 1024px) {
    .process-grid-modern { grid-template-columns: repeat(2, 1fr); }
    .step-line { display: none; }
}

@media (max-width: 600px) {
    .process-grid-modern { grid-template-columns: 1fr; }
}

/* Başlıkları ve içeriği ortalayan genel sınıf */
.text-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; /* Badge ve alt öğeleri dikeyde de merkeze alır */
    justify-content: center;
}

/* Bölüm Başlık Konteyneri */
.section-header {
    margin-bottom: 60px; /* Alttaki kartlarla arasına ferah bir boşluk */
}

/* Rozet (Badge) ayarı - Ortada durması için */
.badge {
    display: inline-block;
    margin-bottom: 15px;
}

/* Bölüm Başlığı (H2) */
.section-header h2 {
    font-size: 3rem; /* Daha vurucu bir boyut */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Açıklama Metni (P) */
.section-desc {
    max-width: 650px; /* Çok uzayıp gitmemesi için sınır */
    margin-left: auto;
    margin-right: auto;
    color: var(--text-sub);
    font-size: 1.15rem;
    line-height: 1.6;
}

/* --- PRICING SECTION CSS --- */
.pricing-section { padding: 100px 0; background-color: var(--white); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.price-card {
    background: var(--light-bg);
    padding: 50px 40px;
    border-radius: 30px;
    border: 1px solid var(--border);
    text-align: center;
    transition: 0.4s;
    position: relative;
}

/* Öne Çıkan Paket (Ortadaki) */
.price-card.featured {
    background: var(--navy);
    color: white;
    transform: scale(1.05); /* Diğerlerinden hafif büyük */
    border-color: var(--orange);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.price-header h4 { font-size: 1.6rem; margin-bottom: 10px; }
.price-header p { font-size: 0.9rem; color: var(--text-sub); margin-bottom: 30px; }
.featured .price-header p { color: #A1A1AA; }

.price-features { list-style: none; text-align: left; margin-bottom: 40px; }
.price-features li { margin-bottom: 15px; font-size: 0.95rem; display: flex; align-items: center; gap: 12px; }
.price-features li i.fa-check { color: var(--orange); }
.price-features li.disabled { opacity: 0.4; }

.price-btn {
    display: block;
    padding: 15px;
    border: 2px solid var(--orange);
    border-radius: 12px;
    color: var(--orange);
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.price-btn:hover { background: var(--orange); color: white; }

.featured-btn {
    background: var(--orange);
    color: white;
    border: none;
}
.featured-btn:hover { background: #e65c00; transform: translateY(-3px); }

/* Mobil Ayarı */
@media (max-width: 992px) {
    .pricing-grid { grid-template-columns: 1fr; gap: 50px; }
    .price-card.featured { transform: scale(1); }
}

/* --- CONTACT SECTION --- */
.contact-section { padding: 100px 0; background-color: var(--light-bg); }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.contact-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 30px;
    border: 1px solid var(--border);
    text-align: center;
    text-decoration: none;
    color: var(--text-main);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.contact-icon {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 25px;
}

.contact-card h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--navy); }
.contact-card p { color: var(--text-sub); font-size: 0.95rem; margin-bottom: 20px; }

.contact-link {
    font-weight: 700;
    color: var(--orange);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- FOOTER --- */
.site-footer { background: var(--navy); color: white; padding: 80px 0 40px; }

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.footer-logo { font-size: 1.8rem; font-weight: 800; letter-spacing: -1.5px; }
.footer-logo span { color: var(--orange); }
.footer-logo p { font-size: 0.8rem; font-weight: 400; color: #94A3B8; letter-spacing: 0; margin-top: 5px; }

.footer-nav a { color: #CBD5E1; text-decoration: none; margin-left: 30px; font-weight: 600; font-size: 0.9rem; transition: 0.3s; }
.footer-nav a:hover { color: var(--orange); }

.footer-social a { color: white; font-size: 1.2rem; margin-left: 20px; transition: 0.3s; }
.footer-social a:hover { color: var(--orange); transform: translateY(-3px); }

.footer-divider { height: 1px; background: rgba(255,255,255,0.1); margin-bottom: 30px; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #64748B;
}

/* Mobil Ayarı */
@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; }
    .footer-top { flex-direction: column; gap: 40px; text-align: center; }
    .footer-nav { display: flex; flex-direction: column; gap: 15px; }
    .footer-nav a { margin-left: 0; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* --- MODERN FLOATING FOOTER CSS --- */
.footer-container {
    padding: 60px 0 30px; /* Alttan biraz boşluk ki yüzen etki netleşsin */
    background-color: var(--light-bg);
}

.floating-footer {
    background: var(--navy);
    color: white;
    padding: 80px 60px 40px;
    border-radius: 50px; /* İşte o meşhur yumuşak köşeler */
    box-shadow: 0 20px 50px rgba(10, 15, 29, 0.2);
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo { font-size: 2rem; font-weight: 800; letter-spacing: -1.5px; margin-bottom: 15px; }
.footer-logo span { color: var(--orange); }
.footer-brand p { color: #94A3B8; font-size: 0.95rem; line-height: 1.6; max-width: 300px; }

.footer-column h5, .footer-contact-info h5 {
    color: var(--orange);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-grid { display: flex; gap: 60px; }
.footer-column { display: flex; flex-direction: column; gap: 12px; }
.footer-column a { color: #CBD5E1; text-decoration: none; font-size: 0.95rem; transition: 0.3s; }
.footer-column a:hover { color: var(--white); transform: translateX(5px); }

.footer-contact-info p { color: #CBD5E1; margin-bottom: 15px; font-size: 0.95rem; display: flex; align-items: center; gap: 10px; }
.footer-cta-small { 
    display: inline-block; 
    margin-top: 10px; 
    color: var(--orange); 
    text-decoration: none; 
    font-weight: 700; 
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}
.footer-cta-small:hover { border-bottom-color: var(--orange); }

/* Sosyal Medya İkonları */
.footer-social-modern { display: flex; gap: 15px; margin-top: 25px; }
.footer-social-modern a { 
    width: 40px; height: 40px; background: rgba(255,255,255,0.05); 
    display: flex; align-items: center; justify-content: center; 
    border-radius: 12px; color: white; text-decoration: none; transition: 0.3s; 
}
.footer-social-modern a:hover { background: var(--orange); transform: translateY(-3px); }

/* Alt Bar */
.footer-bottom-bar {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #64748B;
}
.footer-legal a { color: #64748B; text-decoration: none; margin-left: 20px; }

/* Mobil Uyum */
@media (max-width: 992px) {
    .footer-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-brand p { margin: 0 auto; }
    .footer-social-modern, .footer-links-grid { justify-content: center; }
    .floating-footer { padding: 60px 30px 30px; border-radius: 30px; }
    .footer-bottom-bar { flex-direction: column; gap: 15px; }
}

/* 1. Sayfa Kaydırma Yumuşaklığı */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Navbar'ın üstü kapatmaması için boşluk */
}

/* 2. Bölüm Belirme Animasyonu (Reveal) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1); /* Apple tarzı yumuşak ivme */
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* 3. Menü Linkleri İçin Hover Animasyonu */
.nav-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--orange);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* --- WHATSAPP FLOAT BUTTON --- */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 2000; /* Her şeyin üstünde durması için */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: wa-pulse 2s infinite; /* Dikkat çekici hafif parlama */
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #20ba5a;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

/* Üzerine gelince çıkan küçük yazı (Tooltip) */
.wa-tooltip {
    position: absolute;
    right: 80px;
    background: #1e293b;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Hafif Dalgalanma Animasyonu */
@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobilde Butonu Biraz Küçültelim */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 25px;
        right: 25px;
        font-size: 30px;
    }
    .wa-tooltip { display: none; } /* Mobilde yazıyı gizle, kalabalık yapmasın */
}

/* --- SSS ANA STİLLER --- */
.sss-bolumu {
    padding: 100px 0;
    position: relative;
    z-index: 100; /* Arka planın önüne çıkarır */
}

.sss-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

.sss-baslik {
    text-align: center;
    margin-bottom: 50px;
}

.sss-baslik h2 {
    font-size: 2.8rem;
    color: #0A0F1D; /* Koyu Lacivert */
    margin: 15px 0;
}

.sss-baslik p {
    color: #64748B;
    font-size: 1.1rem;
}

.sss-badge {
    color: #FF6B00;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* --- AKORDİYON MEKANİZMASI --- */
.sss-item {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    overflow: hidden;
}

.sss-input {
    display: none; /* Gizli kutucuk */
}

.sss-soru {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 35px;
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
}

.sss-soru h4 {
    font-size: 1.15rem;
    color: #0A0F1D;
    font-weight: 700;
    margin: 0;
}

.sss-soru i {
    color: #FF6B00;
    transition: 0.4s;
}

/* Cevap Alanı */
.sss-cevap {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0, 1, 0, 1);
    background: #F8FAFC;
}

.cevap-iceri {
    padding: 25px 35px;
    border-top: 1px solid #F1F5F9;
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
}

/* --- TIKLANDIĞINDA ÇALIŞACAK MANTIK (JS GEREKTİRMEZ) --- */
.sss-input:checked ~ .sss-cevap {
    max-height: 500px;
    transition: all 0.4s cubic-bezier(1, 0, 1, 0);
}

.sss-input:checked ~ .sss-soru {
    background: #FFF7F2;
}

.sss-input:checked ~ .sss-soru i {
    transform: rotate(45deg); /* Artıyı çarpı yapar */
}

/* Arka plandaki noktaların tıklamayı engellememesi için ŞART */
#bg-canvas {
    pointer-events: none !important;
}

/* Tüm sitede yazı seçimini kapat */
body {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10+ */
    user-select: none; /* Standart */
}

/* Eğer kullanıcı bir yere bir şey yazacaksa (inputlar) orayı hariç tut */
input, textarea {
    user-select: text !important;
}

/* --- BLOG / DİJİTAL REHBER CSS --- */
.blog-section {
    padding: 100px 0;
    background: var(--light-bg); /* Hafif gri/mavi arka plan */
    position: relative;
    z-index: 10;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.blog-card:hover {
    transform: translateY(-12px);
    border-color: var(--orange);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Görsel Alanı */
.blog-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.blog-card:hover .blog-img {
    transform: scale(1.1); /* Resim yumuşakça yakınlaşır */
}

/* Kategori Etiketi */
.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--orange);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
}

/* İçerik Alanı */
.blog-content {
    padding: 35px 30px;
}

.blog-date {
    font-size: 0.85rem;
    color: #94A3B8;
    margin-bottom: 12px;
    display: block;
    font-weight: 600;
}

.blog-title {
    font-size: 1.3rem;
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--orange);
}

.blog-desc {
    color: var(--text-sub);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Devamını Oku Linki */
.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-weight: 800;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.blog-link i {
    color: var(--orange);
    transition: transform 0.3s ease;
}

.blog-link:hover {
    color: var(--orange);
}

.blog-link:hover i {
    transform: translateX(6px); /* Ok sağa kayar */
}

/* Mobil Uyum */
@media (max-width: 992px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-img-wrapper { height: 200px; }
}

/* SSS Bölümü - Alt boşluğu daraltıyoruz */
.sss-bolumu {
    padding: 80px 0 40px 0 !important; /* Üst 80px, Alt 40px */
    position: relative;
    z-index: 100;
}

/* Dijital Rehber / Blog Bölümü - Üst boşluğu daraltıyoruz */
.blog-section {
    padding: 40px 0 80px 0 !important; /* Üst 40px, Alt 80px */
    background: var(--light-bg); 
    position: relative;
    z-index: 10;
}

/* Sadece Blog bölümünün başlık mesafesini ayarlar */
.blog-section .section-header {
    margin-top: -20px;
}

