/* WhatsApp Floating Button */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background-color: #25D366;
    color: #fff !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.whatsapp-floating-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
}

/* Phone Floating Button */
.phone-floating-btn {
    position: fixed;
    bottom: 30px; /* Sol alt köşe */
    left: 30px;
    z-index: 9999;
    background-color: #0d6efd; /* Ana Renk */
    color: #fff !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.phone-floating-btn:hover {
    background-color: #0a58ca; /* Koyu Ana Renk */
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
}

/* Scroll to Top (Yukarı Çık) Butonu */
.scroll-top-btn {
    position: fixed;
    bottom: 100px; /* WhatsApp butonunun üstünde */
    right: 35px;
    z-index: 9998;
    background-color: #333;
    color: #fff !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    text-decoration: none !important;
}
.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}
.scroll-top-btn:hover {
    background-color: #0d6efd;
    transform: translateY(-3px);
}

/* --- Hero Slider & Animasyonlar --- */
.hero-section {
    transition: background-color 1s ease; /* Arka plan renk geçiş hızı */
}

/* Tema Renkleri */
.hero-theme-1 { background-color: #0f172a; } /* Koyu Mavi (Varsayılan) */
.hero-theme-2 { background-color: #064e3b; } /* Koyu Yeşil (SEO) */
.hero-theme-3 { background-color: #4c1d95; } /* Koyu Mor (E-Ticaret) */
.hero-theme-4 { background-color: #7f1d1d; } /* Koyu Kırmızı */
.hero-theme-5 { background-color: #7c2d12; } /* Koyu Turuncu */
.hero-theme-6 { background-color: #164e63; } /* Koyu Camgöbeği */
.hero-theme-7 { background-color: #831843; } /* Koyu Pembe */

/* İçerik Animasyonları */
.hero-animate-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

/* Aktif Slayt Animasyon Tetikleyicileri */
.swiper-slide-active .hero-animate-element {
    opacity: 1;
    transform: translateY(0);
}

/* Gecikme Süreleri (Sırayla gelmesi için) */
.swiper-slide-active .hero-animate-element:nth-child(1) { transition-delay: 0.1s; } /* Badge */
.swiper-slide-active .hero-animate-element:nth-child(2) { transition-delay: 0.3s; } /* Başlık */
.swiper-slide-active .hero-animate-element:nth-child(3) { transition-delay: 0.5s; } /* Açıklama */
.swiper-slide-active .hero-animate-element:nth-child(4) { transition-delay: 0.7s; } /* Butonlar */

/* Pagination Özelleştirme */
.hero-pagination .swiper-pagination-bullet {
    background: rgba(255,255,255,0.5);
    opacity: 1;
    width: 12px;
    height: 12px;
    transition: all 0.3s;
}
.hero-pagination .swiper-pagination-bullet-active {
    background: #fff;
    width: 30px;
    border-radius: 6px;
}

/* Swiper Fade Effect Interaction Fix */
.heroSwiper .swiper-slide {
    pointer-events: none;
    z-index: 1;
}
.heroSwiper .swiper-slide-active {
    pointer-events: auto;
    z-index: 10;
}

/* --- Hizmet Kartları (Service Cards) Animasyonları --- */
.service-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-bottom: 4px solid transparent; /* Alt çizgi için yer ayır */
    position: relative;
    top: 0;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.1) !important;
}

/* Renk varyasyonları: Hover durumunda alt çizgi rengi */
.service-card-primary:hover { border-bottom-color: #0d6efd; }
.service-card-success:hover { border-bottom-color: #198754; }
.service-card-warning:hover { border-bottom-color: #ffc107; }

/* İkon Kutusu Efekti */
.service-card .icon-box {
    transition: all 0.4s ease;
}
.service-card:hover .icon-box {
    transform: scale(1.15) rotate(5deg);
}

/* Link Oku Efekti */
.service-card a i {
    transition: transform 0.3s ease;
}
.service-card:hover a i {
    transform: translateX(11px);
    transition: all 0.5s ease;
}

/* --- Neden Biz (Why Choose Us) Bölümü --- */
.feature-item {
    transition: all 0.3s ease;
    cursor: default;
    border: 1px solid transparent;
}

.feature-item:hover {
    background-color: #fff;
    box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.08);
    transform: translateX(10px);
    border-color: rgba(13, 110, 253, 0.1);
}

.feature-item .icon-box {
    transition: all 0.5s ease;
}

.feature-item:hover .icon-box {
    background-color: #0d6efd !important;
    color: #fff !important;
    transform: rotateY(180deg);
}

/* Sağ Taraf Floating (Süzülme) Animasyonu */
@keyframes float-y {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.floating-animate {
    animation: float-y 6s ease-in-out infinite;
}

/* --- Gelişmiş CTA (Call to Action) Bölümü --- */
.cta-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    position: relative;
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1), transparent 60%),
                radial-gradient(circle at bottom left, rgba(0,0,0,0.2), transparent 60%);
    z-index: 0;
}

.cta-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Hafif noktalı desen */
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 35 35' to='-360 35 35' dur='12s' repeatCount='indefinite'/%3E%3C/path%3E%3Cpath d='M36 4V0h-2v4h-4v2h4v4h2V6h4V4h-4z'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 35 5' to='-360 35 5' dur='12s' repeatCount='indefinite'/%3E%3C/path%3E%3Cpath d='M6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6z'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 5 35' to='-360 5 35' dur='12s' repeatCount='indefinite'/%3E%3C/path%3E%3Cpath d='M6 4V0H4v4H0v2h4v4h2V6h4V4H6z'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 5 5' to='-360 5 5' dur='12s' repeatCount='indefinite'/%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.backdrop-blur {
    backdrop-filter: blur(5px);
}

.hover-underline:hover {
    text-decoration: underline !important;
}

/* --- Footer (Alt Kısım) Styles --- */
.footer-section {
    background-color: #111827;
    position: relative;
    overflow: hidden;
}

.footer-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 10%, rgba(13, 110, 253, 0.08), transparent 40%),
                radial-gradient(circle at 10% 90%, rgba(25, 135, 84, 0.08), transparent 40%);
    z-index: 0;
}

.footer-link {
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    padding-left: 5px;
    color: #0d6efd !important;
}

.social-icon-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.social-icon-btn:hover {
    background: #0d6efd;
    transform: translateY(-3px);
    color: #fff !important;
}

.newsletter-input {
    background-color: #ffffff !important;
    border: 1px solid #ffffff;
    color: #333333 !important;
}

.newsletter-input:focus {
    background-color: #ffffff !important;
    border-color: #0d6efd;
    color: #333333 !important;
    box-shadow: none;
}

/* --- Sayfa Başlıkları (Page Header) --- */
.page-header {
    background-color: #0f172a;
    background-image: radial-gradient(circle at top right, rgba(37, 99, 235, 0.1), transparent 40%),
                      radial-gradient(circle at bottom left, rgba(236, 72, 153, 0.05), transparent 40%);
}

/* --- Detaylı Hizmet Kartları --- */
.service-detail-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}
.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.08) !important;
    border-color: rgba(13, 110, 253, 0.3);
}
.icon-box-lg {
    width: 80px;
    height: 80px;
    transition: all 0.4s ease;
}
.service-detail-card:hover .icon-box-lg {
    background-color: #0d6efd !important;
    color: #fff !important;
    transform: rotateY(180deg);
}

/* --- Çalışma Süreci (Process) --- */
.process-card {
    position: relative;
}
.process-number {
    width: 60px;
    height: 60px;
    background: #fff;
    color: #0d6efd;
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.process-card:hover .process-number {
    background: #0d6efd;
    color: #fff;
    transform: scale(1.1);
}

/* --- Hakkımızda Sayfası Timeline --- */
.timeline-section {
    position: relative;
    padding: 2rem 0;
}
.timeline-section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
    transform: translateX(-50%);
}
.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    transform: translateX(-50%);
    border: 4px solid #0d6efd;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.2);
}
.timeline-content {
    width: 45%;
    padding: 2rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.05);
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
}
.timeline-item:nth-child(odd) .timeline-content { margin-left: auto; }
.timeline-item:nth-child(even) .timeline-content { margin-right: auto; text-align: right; }

@media (max-width: 768px) {
    .timeline-section::before { left: 20px; }
    .timeline-dot { left: 20px; }
    .timeline-content { width: calc(100% - 60px); margin-left: 60px !important; text-align: left !important; }
}

/* --- Genel Yardımcı Sınıflar --- */
.hover-primary:hover {
    color: #0d6efd !important;
}

/* --- Modern & Özgün Navbar Styles --- */
.custom-navbar {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-top: 1rem;
    padding-bottom: 1rem;
    transition: all 0.3s ease;
    z-index: 1030;
}

.custom-navbar.navbar-shrink {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.navbar-brand .brand-icon {
    color: #0d6efd;
    font-size: 1.5rem;
}
.navbar-brand .brand-text {
    font-size: 1.4rem;
    letter-spacing: -0.5px;
    color: #111827;
}

/* Menü Linkleri */
.nav-link {
    font-weight: 500;
    color: #4b5563 !important;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.nav-link:hover, .nav-link.active {
    color: #0d6efd !important;
    background-color: rgba(13, 110, 253, 0.05);
}

/* CTA Butonu */
.btn-custom-cta {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-custom-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.25) !important;
}

/* Dropdown Menü */
.dropdown-menu {
    border-radius: 1rem;
    padding: 0.75rem;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    animation: fadeIn 0.3s ease;
    /* Menü ile link arasındaki boşluğu doldurmak için margin yerine padding/border hilesi veya direkt 0 yapıyoruz */
    margin-top: 0 !important;
    /* Görsel olarak biraz aşağıda başlaması için transform kullanabiliriz ama hover kopmaması için margin 0 olmalı */
    /* Eğer boşluk isteniyorsa, nav-item'a padding verilmeli. Şimdilik yapışık olması en sağlıklısı. */
}
.dropdown-item {
    border-radius: 0.5rem;
    padding: 0.6rem 1rem;
    font-weight: 500;
    color: #4b5563;
}
.dropdown-item:hover {
    background-color: #f3f4f6;
    color: #0d6efd;
}

/* Hamburger İkonu Animasyonu */
.hamburger-icon {
    width: 30px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #111827;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.navbar-toggler:focus {
    box-shadow: none;
}

/* Masaüstü Hover Desteği */
@media (min-width: 1200px) {
    .custom-navbar { backdrop-filter: blur(10px); } /* Buzlu cam sadece masaüstünde */
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }
    .offcanvas {
        background: transparent;
        box-shadow: none;
        position: static;
        width: auto;
        height: auto;
        visibility: visible;
        flex-grow: 1;
        transform: none;
        display: flex;
        align-items: center;
    }
    .offcanvas-header {
        display: none;
    }
    .offcanvas-body {
        display: flex;
        flex-grow: 1;
        padding: 0;
        overflow: visible;
        align-items: center;
    }
}

/* Mobil Offcanvas Özelleştirme */
@media (max-width: 1199px) {
    .offcanvas-body {
        padding: 2rem;
        padding-bottom: 4rem;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }
    /* Mobil Logo Boyutlandırma */
    .navbar-brand .logo-svg-wrapper {
        width: 65px !important;
        height: 65px !important;
    }

    /* Mobil Marka Yazısı Boyutlandırma */
    .navbar-brand .brand-text {
        font-size: 1.9rem;
        font-weight: 1200;
        text-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

    /* Offcanvas Yükseklik ve Görünüm Düzeltmesi */
    .offcanvas {
        height: 100vh !important;
        min-height: 100% !important;
        background-color: #fff !important;
        position: fixed !important;
        top: 0 !important;
        bottom: 0 !important;
        z-index: 10600 !important;
        right: 0 !important;
        left: auto !important;
        width: 85vw !important;
        max-width: 400px !important;
    }
    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 0 !important;
        border-bottom: 1px solid rgba(0,0,0,0.03);
        border-radius: 0;
        width: 100%;
        text-align: left;
    }
    .nav-link:hover, .nav-link.active {
        background-color: transparent;
        color: #0d6efd !important;
        padding-left: 0 !important;
    }
    .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 0;
        padding-top: 0;
        margin-top: 0 !important;
        background: transparent;
    }
    .dropdown-item {
        padding-left: 1rem;
        border-left: 2px solid rgba(0,0,0,0.05);
        border-radius: 0;
    }
    .nav-bottom-wrapper {
        margin-top: auto;
        width: 100%;
    }
}

/* Mobil Menü Arka Plan Karartma (Backdrop) Ayarı */
.offcanvas-backdrop {
    z-index: 10599 !important;
    background-color: #000 !important;
}
.offcanvas-backdrop.show {
    opacity: 0.8 !important;
}

/* Mobil Sosyal Medya İkonları */
.mobile-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f3f4f6;
    color: #4b5563;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}
.mobile-social-link:hover {
    background-color: #0d6efd;
    color: #fff;
    transform: translateY(-3px);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Modal Styles --- */
.modal-content {
    border-radius: 1rem;
    overflow: hidden;
}
.modal-header .btn-close {
    background-size: 0.8em;
}
.form-control:focus, .form-select:focus {
    box-shadow: none;
    border: 1px solid #0d6efd !important;
    background-color: #fff !important;
}

/* --- Top Bar Styles --- */
.top-bar {
    font-size: 0.9rem;
    background-color: #111827 !important;
    transition: all 0.3s ease;
}
.hover-opacity:hover {
    opacity: 0.8;
}

/* --- Blog Sayfası Styles --- */
.blog-card {
    transition: all 0.3s ease;
    border: none;
    background: #fff;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.08) !important;
}
.blog-card-img-wrapper {
    overflow: hidden;
    border-radius: 0.5rem 0.5rem 0 0;
    position: relative;
    height: 240px;
}
.blog-card-img-wrapper img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-card:hover .blog-card-img-wrapper img {
    transform: scale(1.1);
}
.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(13, 110, 253, 0.9);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Mobil Menü Scroll Kilitleme --- */
html.menu-open-locked, body.menu-open-locked {
    overflow: hidden !important;
    height: 100vh !important;
    touch-action: none;
}

/* --- Blog Detay Sayfası --- */
.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    overflow-wrap: break-word;
}
.blog-content h3 {
    color: #111827;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.blog-content p {
    margin-bottom: 1.5rem;
}
.blog-content img, .blog-content iframe, .blog-content video {
    max-width: 100%;
    height: auto;
}
.social-share-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none !important;
}
.social-share-btn:hover {
    transform: translateY(-3px);
    color: #fff;
}
.social-share-btn.facebook { background-color: #3b5998; }
.social-share-btn.twitter { background-color: #1da1f2; }
.social-share-btn.linkedin { background-color: #0077b5; }

/* --- Hizmet Detay Sayfası --- */
.service-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    overflow-wrap: break-word;
}
.service-content h2, .service-content h3 {
    color: #111827;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.service-content ul {
    margin-bottom: 1.5rem;
}
.service-content img, .service-content iframe, .service-content video {
    max-width: 100%;
    height: auto;
}
.service-sidebar-link {
    display: block;
    padding: 1rem;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 0.5rem;
    color: #4b5563;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}
.service-sidebar-link:hover, .service-sidebar-link.active {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
    transform: translateX(5px);
}
.service-sidebar-link i {
    width: 25px;
}

/* --- Scroll Animation (Kaydırma Animasyonu) --- */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Tech Stack (Teknolojiler) Kartları --- */
.tech-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-color: #0d6efd;
}
.tech-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* --- Fiyat Hesaplama Aracı --- */
.calculator-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.calculator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.calculator-card.selected {
    border-color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.05);
}
.calculator-card .icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: #0d6efd;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}
.calculator-card.selected .icon-box {
    background-color: #0d6efd;
    color: #fff;
}
.price-display {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0d6efd;
}

/* --- Fiyat Hesaplama Geliştirmeleri --- */
.sticky-summary {
    position: sticky;
    top: 120px;
    transition: all 0.3s ease;
}
.summary-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* --- SEO Analiz Aracı --- */
.seo-loading-overlay {
    display: none;
}
.seo-loading-overlay.active {
    display: block;
}
.analysis-step {
    opacity: 0.5;
    transition: all 0.3s ease;
}
.analysis-step.active {
    opacity: 1;
    font-weight: bold;
    color: #0d6efd;
}
.score-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: conic-gradient(#e9ecef 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    transition: background 1s ease-out;
}
.score-circle::before {
    content: "";
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
}
.score-text {
    position: relative;
    font-size: 3.5rem;
    font-weight: 800;
    color: #111827;
}

/* --- Proje Kartları (Portfolyo) --- */
.project-card .project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 110, 253, 0.85);
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}
.project-card:hover .project-overlay {
    opacity: 1;
}
.project-card img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.project-card:hover img {
    transform: scale(1.1);
}

/* --- Animasyonlar --- */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}
.animate-bounce {
    animation: bounce 2s infinite;
}

/* --- Logo ve Marka Animasyonları --- */
.navbar-brand .logo-svg-wrapper svg {
    overflow: visible;
}

/* 1. Logo Giriş Animasyonu (Çizim Efekti) */
.navbar-brand .logo-svg-wrapper svg path {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawLines 1.5s ease-out forwards;
}

.navbar-brand .logo-svg-wrapper svg text {
    opacity: 0;
    animation: fadeInText 1s ease-out 0.8s forwards;
}

@keyframes drawLines {
    to { stroke-dashoffset: 0; }
}

@keyframes fadeInText {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 2. Logo Hover Efekti (Etkileşim) */
.brand-logo-link:hover .logo-svg-wrapper svg path:nth-child(1) { /* Sol Parantez */
    transform: translateX(-10px);
}
.brand-logo-link:hover .logo-svg-wrapper svg path:nth-child(5) { /* Sağ Parantez */
    transform: translateX(10px);
}
.brand-logo-link:hover .logo-svg-wrapper svg path:nth-child(3) { /* Slash */
    transform: rotate(15deg);
    transform-origin: center;
}

.navbar-brand .logo-svg-wrapper svg path,
.navbar-brand .logo-svg-wrapper svg text {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* 3. Marka İsmi Animasyonu */
.brand-text-highlight {
    background: linear-gradient(120deg, #0d6efd 0%, #0a58ca 40%, #6ea8fe 50%, #0a58ca 60%, #0d6efd 100%);
    background-size: 200% auto;
    color: #0d6efd;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineGradient 4s linear infinite;
}

@keyframes shineGradient {
    to { background-position: 200% center; }
}

.brand-logo-link:hover .brand-text-main {
    letter-spacing: 1px;
    color: #0d6efd;
}

.brand-text-main {
    transition: all 0.3s ease;
}
/* --- Top Bar Hareketli Hizmet Vitrini --- */
.service-ticker-wrapper {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 4px 15px;
    backdrop-filter: blur(4px); /* Buzlu cam efekti */
    min-width: 320px;
    justify-content: center;
}

.service-ticker-container {
    height: 24px;
    position: relative;
    width: 220px;
    overflow: hidden;
}

.service-ticker-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    filter: blur(4px); /* Bulanık başla */
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    white-space: nowrap;
}

.service-ticker-item a {
    display: inline-flex;
    align-items: center;
    color: #ffc107;
    transition: color 0.3s ease;
}

.service-ticker-item i {
    font-size: 1em;
}

.service-ticker-item a:hover {
    color: #ffffff;
}

.service-ticker-item.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    z-index: 2;
}

.service-ticker-item.exit {
    opacity: 0;
    transform: translateY(-20px) scale(1.05);
    filter: blur(4px);
    z-index: 1;
}

/* Mobile Responsive Adjustments for Service Ticker */
@media (max-width: 576px) {
    .service-ticker-wrapper {
        min-width: auto;
        width: 100%;
    }
}

/* --- Toast Notification Styles --- */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10600;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast-notification {
    min-width: 320px;
    background-color: #fff;
    color: #333;
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #6c757d;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-notification.hide {
    transform: translateX(120%);
}

.toast-notification .toast-icon {
    font-size: 1.5rem;
}

.toast-notification .toast-body .toast-title {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #111827;
}

.toast-notification .toast-body .toast-message {
    font-size: 0.9rem;
    color: #4b5563;
}

.toast-notification .toast-close {
    position: absolute;
    top: 5px;
    right: 8px;
    background: none;
    border: none;
    color: #aaa;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s;
}
.toast-notification .toast-close:hover { color: #333; }

.toast-notification .toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    animation: toast-progress-animation 5s linear forwards;
}

/* Toast Types */
.toast-notification.success { border-left-color: #198754; }
.toast-notification.success .toast-icon { color: #198754; }
.toast-notification.success .toast-progress { background-color: #198754; }

.toast-notification.info { border-left-color: #0dcaf0; }
.toast-notification.info .toast-icon { color: #0dcaf0; }
.toast-notification.info .toast-progress { background-color: #0dcaf0; }

.toast-notification.warning { border-left-color: #ffc107; }
.toast-notification.warning .toast-icon { color: #ffc107; }
.toast-notification.warning .toast-progress { background-color: #ffc107; }

.toast-notification.error { border-left-color: #dc3545; }
.toast-notification.error .toast-icon { color: #dc3545; }
.toast-notification.error .toast-progress { background-color: #dc3545; }

@keyframes toast-progress-animation {
    from { width: 100%; }
    to { width: 0%; }
}

/* --- Development Mode Countdown --- */
.countdown-item {
    background: rgba(13, 110, 253, 0.05);
    border: 1px solid rgba(13, 110, 253, 0.1);
    border-radius: 10px;
    padding: 10px;
    min-width: 70px;
    text-align: center;
}

.countdown-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0d6efd;
    line-height: 1.2;
}

.countdown-label {
    display: block;
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Hero Slider Duraklatma Efekti --- */
.heroSwiper.paused .swiper-slide {
    filter: brightness(0.85);
    transition: filter 0.3s ease;
}

/* --- Kategori Menüsü (Scrollable) --- */
.category-scroll-container::-webkit-scrollbar {
    display: none;
}
.category-scroll-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
}
.btn-white {
    background-color: #fff;
    color: #4b5563;
    border-color: #e5e7eb;
}
.btn-white:hover {
    background-color: #f9fafb;
    color: #0d6efd;
    border-color: #0d6efd;
    transform: translateY(-2px);
}

/* --- Kategori Slider (Swiper) --- */
.category-slider-container {
    padding: 0 40px;
}
.categorySwiper .swiper-slide {
    width: auto;
}
.category-swiper-prev,
.category-swiper-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    transition: all 0.2s ease;
}
.category-swiper-prev:hover,
.category-swiper-next:hover {
    background-color: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}
.category-swiper-prev { left: 0; }
.category-swiper-next { right: 0; }
.category-swiper-prev::after,
.category-swiper-next::after {
    font-size: 0.8rem;
    font-weight: bold;
}

/* --- Blog Paylaş Butonu --- */
.share-menu {
    min-width: 160px;
    z-index: 10;
    animation: fadeInShare 0.2s ease-out;
}
.share-menu.show {
    display: flex !important;
}
.share-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.share-icon:hover {
    transform: translateY(-3px);
    background-color: #0d6efd !important;
    color: #fff !important;
}
.share-icon:hover .fa-whatsapp { color: #fff !important; }
@keyframes fadeInShare {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobil Arama Widget Görünümü */
.search-widget-trigger {
    cursor: pointer;
    transition: transform 0.2s ease;
}
.search-widget-trigger:active {
    transform: scale(0.98);
}

/* --- Mobile Price Float (Fiyat Hesaplama) --- */
.mobile-price-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    left: 20px;
    z-index: 1010;
    animation: slideInUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.mobile-price-float .card {
    background: rgba(33, 37, 41, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 576px) {
    .mobile-price-float {
        left: auto;
        width: 350px;
    }
}
@keyframes slideInUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}