/* assets/css/style.css */

/* Temel Kurumsal Renkler (Derin Lacivert, Temiz Beyaz ve Enerjik Mavi Accent) */
:root {
    --primary-color: #0F172A; /* Slate 900 - Çok Koyu Lacivert */
    --secondary-color: #1E293B; /* Slate 800 */
    --accent-color: #38BDF8; /* Sky 400 - Canlı Açık Mavi */
    --text-main: #F1F5F9; /* Slate 100 */
    --text-muted: #94A3B8; /* Slate 400 */
    --bg-light: #F8FAFC; /* Slate 50 */
    --font-family: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-family);
    background-color: #FFFFFF;
    color: #1E293B;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary-color);
}

/* Navigasyon */
.navbar-custom {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
    padding: 1rem 0;
}

.navbar-custom .navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.navbar-custom .navbar-brand span {
    color: var(--accent-color);
}

.navbar-custom .nav-link {
    color: var(--secondary-color);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-custom .nav-link:hover {
    color: var(--accent-color);
}

.navbar-custom .btn-get-started {
    background-color: var(--primary-color);
    color: #FFFFFF;
    border-radius: 50px;
    padding: 0.6rem 1.8rem;
    font-weight: 600;
    border: 2px solid var(--primary-color);
}

.navbar-custom .btn-get-started:hover {
    background-color: #FFFFFF;
    color: var(--primary-color);
}

/* Kurumsal Slider */
#heroCarousel {
    background-color: var(--primary-color);
}

#heroCarousel .carousel-item {
    height: 80vh; /* Ekranın %80'i */
    min-height: 500px;
}

#heroCarousel .carousel-caption {
    bottom: 25%;
    text-align: left;
    max-width: 650px;
    left: 10%;
}

#heroCarousel h1 {
    font-size: 3.5rem;
    color: #FFFFFF;
    line-height: 1.2;
}

#heroCarousel h1 span {
    color: var(--accent-color);
}

#heroCarousel p {
    color: var(--text-muted);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Modern Ürün Kartları */
.section-title {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 3rem;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.software-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background-color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05); /* Yumuşak kurumsal gölge */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.software-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.software-card .card-body {
    padding: 2rem;
}

.software-card .product-tag {
    background-color: rgba(56, 189, 248, 0.1);
    color: var(--accent-color);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.software-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Koyu Footer Stilleri */
footer.corporate-footer {
    background-color: #0F172A !important; /* Çok koyu lacivert/siyah tonu */
    color: #94A3B8; /* Slate 400 - Yazı rengi */
    padding: 80px 0 30px;
    border-top: 4px solid #38BDF8; /* En üstte ince bir accent (vurgu) rengi */
}

footer.corporate-footer h5 {
    color: #FFFFFF !important; /* Başlıklar bembeyaz */
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer.corporate-footer .nav-link-custom {
    color: #94A3B8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 4px 0;
}

footer.corporate-footer .nav-link-custom:hover {
    color: #38BDF8 !important; /* Üzerine gelince canlı mavi */
    padding-left: 8px;
}

footer.corporate-footer .social-box a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #FFFFFF;
    transition: 0.3s;
    margin-right: 10px;
}

footer.corporate-footer .social-box a:hover {
    background: #38BDF8;
    transform: translateY(-5px);
}

.footer-bottom {
    background-color: #020617; /* En alt telif hakkı kısmı daha da koyu */
    padding: 20px 0;
}

/* Slider & Arama Alanı Modernizasyonu */
.hero-search-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px;
    max-width: 600px;
    margin: 2rem auto 0;
    display: flex;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hero-search-input {
    background: transparent;
    border: none;
    color: white;
    padding: 12px 25px;
    flex-grow: 1;
    font-size: 1.1rem;
    outline: none;
}

.hero-search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.hero-search-btn {
    background: var(--accent-color);
    border: none;
    color: var(--primary-color);
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.3s;
}

.hero-search-btn:hover {
    background: white;
    transform: scale(1.05);
}

/* Slider Katman Efekti */
.carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.4));
}

#heroCarousel .carousel-caption {
    z-index: 10;
    text-align: center;
    left: 15%;
    right: 15%;
    bottom: 30%;
}

/* Hover Efektleri */
.transition-hover {
    transition: all 0.3s ease;
}

.transition-hover:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color) !important;
}

.shadow-hover {
    transition: 0.3s ease;
}

.shadow-hover:hover {
    box-shadow: 0 1rem 3rem rgba(15, 23, 42, 0.15) !important;
}

/* Grayscale Filtresi */
.grayscale img {
    filter: grayscale(100%);
    opacity: 0.5;
    transition: 0.4s;
}

.grayscale img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Başlık Alt Çizgi Düzenlemesi */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: var(--accent-color);
    bottom: 0;
    left: 25%;
    border-radius: 2px;
}

.text-start.section-title::after {
    left: 0;
    width: 60px;
}

/* Hosting Kart Efektleri */
#hosting .card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-width: 2px;
}

#hosting .card:hover {
    transform: scale(1.05);
}

#hosting .list-unstyled li {
    font-size: 0.9rem;
}

#hosting .bg-primary {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%) !important;
}

#hosting .btn-light:hover {
    background-color: var(--accent-color);
    color: white !important;
    border-color: var(--accent-color);
}

/* Koyu Top Header Stilleri */
.top-header {
    background-color: #020617; /* Footer'ın en alt barı ile aynı çok koyu ton */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6px 0;
    font-size: 0.82rem;
}

.top-header .nav-link {
    color: #94A3B8 !important; /* Slate 400 - Hafif gri yazı */
    font-weight: 500;
    padding: 0 12px !important;
    transition: all 0.3s ease;
}

.top-header .nav-link:hover {
    color: #38BDF8 !important; /* Üzerine gelince neon mavi */
}

.top-header .nav-link i {
    font-size: 0.85rem;
    opacity: 0.8;
}

.top-header .divider {
    width: 1px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    display: inline-block;
    margin: 0 4px;
    vertical-align: middle;
}

/* Koyu Temada Sepet Butonu */
.top-header .btn-cart {
    background-color: rgba(56, 189, 248, 0.1); /* Mavi şeffaf doku */
    color: #38BDF8 !important;/* Header Genişletme ve Profesyonel Detaylar */
.navbar-custom {
    transition: all 0.3s ease;
    background-color: var(--card-bg);
}

/* Nav Linkleri Hover Efekti (Alt Çizgi Animasyonu) */
.navbar-custom .nav-link {
    position: relative;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.navbar-custom .nav-item .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-custom .nav-item:hover .nav-link::after {
    width: 20px;
}

.navbar-custom .nav-item:hover .nav-link {
    color: var(--accent-color) !important;
}

/* Mega Menü Detayları */
.dropdown-mega {
    position: static;
}

.dropdown-mega .dropdown-menu {
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.dropdown-item {
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--bg-light) !important;
    transform: translateX(5px);
}

.icon-sm {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* Buton Parlama Efekti */
.btn-primary {
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 189, 248, 0.4);
    background-color: var(--accent-color);
}
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 50px;
    padding: 3px 15px !important;
    margin-left: 10px;
    font-weight: 600;
}

.top-header .btn-cart:hover {
    background-color: #38BDF8;
    color: #020617 !important;
}

.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Banka Hesapları Sayfası Özel Stilleri */
.bank-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05) !important;
}

.bank-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12) !important;
}

.bank-logo-circle {
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.1);
}

.iban-area h4 {
    letter-spacing: 1px;
    font-size: 1.15rem;
}

/* Koyu Mod Uyumu için kart üst ve altını düzenleyelim */
[data-bs-theme="dark"] .bank-card .bg-white,
[data-bs-theme="dark"] .bank-card .bg-light {
    background-color: #1e293b !important;
    color: #f1f5f9 !important;
}

[data-bs-theme="dark"] .bank-card .text-dark {
    color: #f1f5f9 !important;
}

/* Ödeme Bildirimi Stepper ve Form Stilleri */
.step-dot {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.step-line {
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-theme);
    z-index: 1;
}

.shadow-pulse {
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.4);
    animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(56, 189, 248, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); }
}

#paymentForm .input-group-text {
    color: var(--text-muted);
}

#paymentForm .form-control:focus, #paymentForm .form-select:focus {
    box-shadow: none;
    background-color: #fff !important;
    border: 1px solid var(--accent-color) !important;
}

.bg-card {
    background-color: var(--card-bg);
}

/* Koyu Mod Uyumu */
[data-bs-theme="dark"] #paymentForm .bg-light {
    background-color: #121a2f !important;
    color: #fff;
}

/* İletişim Sayfası Özel Tasarımları */
.icon-circle {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.shadow-info { box-shadow: 0 10px 20px rgba(56, 189, 248, 0.3); }
.shadow-success { box-shadow: 0 10px 20px rgba(34, 197, 94, 0.2); }
.shadow-primary { box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2); }

.form-floating > .form-control {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-floating > label {
    padding: 1rem 1.5rem;
}

.form-bg-dot {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(var(--accent-color) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.1;
    z-index: 0;
}

.btn-hover-grow {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-hover-grow:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.social-links-contact .btn-light {
    width: 45px;
    height: 45px;
    padding: 0;
    line-height: 45px;
    color: var(--text-muted);
}

.social-links-contact .btn-light:hover {
    background: var(--accent-color);
    color: white;
}

/* Koyu Mod Uyumu */
[data-bs-theme="dark"] .bg-white {
    background-color: var(--card-bg) !important;
    border-color: var(--border-theme) !important;
}

[data-bs-theme="dark"] .bg-light {
    background-color: #121a2f !important;
}

/* Hakkımızda Apex Tasarım Stilleri */
.fw-800 { font-weight: 800; }

.about-image-stack {
    position: relative;
    padding-bottom: 50px;
}

.main-img-wrapper {
    border-radius: 3rem;
    overflow: hidden;
    transform: rotate(2deg);
    transition: 0.5s;
}

.main-img-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

.floating-badge {
    position: absolute;
    bottom: 0;
    right: -20px;
    z-index: 10;
    border: 1px solid var(--border-theme);
    background: var(--card-bg) !important;
}

.gallery-card img {
    transition: 0.7s;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.shadow-blue-lg {
    box-shadow: 0 20px 50px rgba(56, 189, 248, 0.4);
}

.btn-white {
    background-color: #fff;
    color: var(--primary-color) !important;
}

.btn-outline-white {
    border: 2px solid #fff;
    color: #fff !important;
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--accent-color) !important;
}

.circle-blur {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

/* Koyu Mod Uyumu */
[data-bs-theme="dark"] .floating-badge {
    background-color: var(--secondary-color) !important;
}

/* Hakkımızda Sayfası Premium Dokunuşlar */
.fw-800 { font-weight: 800; }

/* Yumuşak Kenarlar ve Gölgeler */
.rounded-custom { border-radius: 3.5rem !important; }
.rounded-5 { border-radius: 2.5rem !important; }

.shadow-blue-lg {
    box-shadow: 0 25px 60px -12px rgba(56, 189, 248, 0.25) !important;
}

.shadow-sm-soft {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
}

/* Hero İmaj Yığını */
.about-hero-img-stack {
    position: relative;
    padding-bottom: 40px;
    padding-right: 40px;
}

.about-hero-img-stack .exp-box {
    position: absolute;
    bottom: 0;
    right: 0;
    min-width: 180px;
    z-index: 10;
    transform: rotate(-2deg);
}

/* İkon Kutuları */
.icon-box-lg {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

/* CTA Banner Dekorasyonu */
.premium-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
}

.cta-circle {
    width: 350px;
    height: 350px;
    background: var(--accent-color);
    border-radius: 50%;
    filter: blur(80px);
}

/* Geçiş Efekti */
.transition-hover {
    transition: all 0.4s ease;
}

.transition-hover:hover {
    transform: translateY(-12px);
    border-color: var(--accent-color) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

/* Giriş ve Kayıt Sayfası Modern Dokunuşlar */
.shadow-premium {
    box-shadow: 0 25px 70px -15px rgba(0, 0, 0, 0.1) !important;
}

.input-group-custom {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.input-group-custom:focus-within {
    background-color: var(--bg-body) !important;
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(56, 189, 248, 0.1);
}

/* Dark Mode Uyumu */
[data-bs-theme="dark"] .input-group-custom {
    background-color: #121a2f !important;
}

/* Avatar Grubu */
.avatar-group img {
    border: 2px solid #020617;
    transition: transform 0.3s ease;
}

.avatar-group img:hover {
    transform: translateY(-5px);
    z-index: 10;
}

/* Auth Buton Efekti */
.shadow-blue-lg {
    box-shadow: 0 10px 25px -5px rgba(56, 189, 248, 0.4) !important;
}

/* Auth Sayfası Özel Tasarımı */
.auth-wrapper {
    background-color: var(--bg-body);
}

/* Arkaplan Balonları (Blobs) */
.blob-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
    top: -200px; right: -100px;
}
.blob-2 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.05) 0%, transparent 70%);
    bottom: -250px; left: -150px;
}

/* Şık Giriş Kartı */
.auth-card {
    background: var(--card-bg) !important;
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-theme) !important;
    transition: transform 0.3s ease;
}

/* Modern Inputlar */
.auth-input {
    background-color: var(--bg-light) !important;
    border: 2px solid transparent !important;
    border-radius: 15px !important;
    padding-top: 1.625rem !important;
    padding-bottom: 0.625rem !important;
    color: var(--text-main) !important;
}

.auth-input:focus {
    border-color: var(--accent-color) !important;
    background-color: var(--bg-body) !important;
}

/* Logo Kutusu */
.auth-logo-box {
    width: 60px; height: 60px;
    background: #020617;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    transform: rotate(10deg);
}

/* Ayırıcı Çizgi */
.divider-text {
    position: relative;
    text-align: center;
}
.divider-text::before {
    content: "";
    position: absolute; top: 50%; left: 0; width: 100%; height: 1px;
    background: var(--border-theme);
    z-index: 1;
}
.divider-text span {
    position: relative; z-index: 2; background: var(--card-bg);
}

/* Dark Mode Uyumu */
[data-bs-theme="dark"] .auth-logo-box {
    background: var(--accent-color);
}
[data-bs-theme="dark"] .auth-logo-box i {
    color: #020617 !important;
}

/* Paddingleri daraltılmış input yapısı */
.auth-input {
    height: 55px !important; /* Yüksekliği sabitledik */
    padding-top: 1.2rem !important;
    padding-bottom: 0.5rem !important;
    font-size: 0.9rem !important;
}

/* Floating label'ın konumunu input daraldığı için ayarlıyoruz */
.form-floating > label {
    padding: 1rem 0.75rem;
    font-size: 0.85rem;
}

/* Logo kutusunu küçülttük */
.auth-logo-box {
    width: 50px; 
    height: 50px;
    border-radius: 14px;
}

/* Arkaplan balonlarını daha saydam yaptık ki gözü yormasın */
.blob-1 {
    width: 400px; height: 400px;
    opacity: 0.1;
}
.blob-2 {
    width: 500px; height: 500px;
    opacity: 0.05;
}

/* Colorlib Style Split Layout */
.half-layout {
    min-height: 100vh;
}

.half-layout .bg {
    width: 50%;
    background-size: cover;
    background-position: center;
}

@media (max-width: 991.98px) {
    .half-layout .bg {
        display: none; /* Mobilde görseli gizle */
    }
}

.half-layout .contents {
    width: 50%;
}

@media (max-width: 991.98px) {
    .half-layout .contents {
        width: 100%;
    }
}

.half-layout .form-block {
    max-width: 400px;
}

/* Form Tasarım Detayları */
.form-group {
    border: 1px solid #efefef;
    padding: 10px 15px;
    background: #f8f9fa;
    transition: 0.3s;
}

.form-group.first {
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.form-group.last {
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    border-top: none;
}

.form-group input {
    background: transparent;
    border: none;
    padding-left: 0;
    font-size: 0.9rem;
}

.form-group input:focus {
    background: transparent;
    box-shadow: none;
    border: none;
}

.form-group:focus-within {
    background: #fff;
    border-color: var(--accent-color);
}

/* Custom Checkbox (Colorlib Style) */
.control {
    display: block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 14px;
}
.control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.control__indicator {
    position: absolute;
    top: 2px; left: 0;
    height: 20px; width: 20px;
    background: #e6e6e6;
    border-radius: 4px;
}
.control input:checked ~ .control__indicator {
    background: var(--accent-color);
}
.control__indicator:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px; top: 3px;
    width: 6px; height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.control input:checked ~ .control__indicator:after {
    display: block;
}

/* Ürün Detay Sayfası Özel Stilleri */
.product-preview-card {
    transition: transform 0.5s ease;
}
.product-preview-card:hover {
    transform: scale(1.02);
}

.floating-badge-price {
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    line-height: 1;
    z-index: 10;
}

.feature-item {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.feature-item:hover {
    background-color: #fff !important;
    border-color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

/* Koyu Mod Uyumu */
[data-bs-theme="dark"] .bg-white {
    background-color: var(--secondary-color) !important;
    border-color: rgba(255,255,255,0.05) !important;
}

/* Hizmet Detay Sayfası Tasarımı */
.service-icon-box {
    width: 250px;
    height: 250px;
}

.animate-spin-slow {
    animation: spin 10s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.shadow-glow {
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.3) !important;
}

.step-num {
    font-size: 2rem;
    line-height: 1;
    opacity: 0.3;
}

.list-group-item-action:hover {
    background-color: var(--accent-color) !important;
    color: #fff !important;
}

/* Koyu Mod İçin Küçük Düzeltme */
[data-bs-theme="dark"] .bg-white {
    background-color: var(--card-bg) !important;
}

/* Dashboard Modern Navigasyon */
.dash-nav .nav-link {
    padding: 12px 15px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.dash-nav .nav-link:hover {
    background: rgba(13, 110, 253, 0.05);
    color: var(--primary-color) !important;
    transform: translateX(5px);
}

.dash-nav .nav-link.active {
    background: var(--primary-color);
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

/* İstatistik Widget İkonları */
.icon-shape {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-info-subtle { background-color: #e0f2fe !important; }
.bg-warning-subtle { background-color: #fef3c7 !important; }
.bg-success-subtle { background-color: #dcfce7 !important; }

/* Premium Gölgeler */
.shadow-premium {
    box-shadow: 0 15px 50px -10px rgba(0, 0, 0, 0.08) !important;
}

/* Kartlarda Geçiş Efekti */
.transition-hover {
    transition: all 0.3s ease;
}

.transition-hover:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 189, 248, 0.3) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

/* Buton Düzenlemesi */
.btn-white {
    background: #fff;
}

/* Portfolyo Kart Tasarımı */
.portfolio-card {
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.02) !important;
}

.portfolio-img-wrapper {
    height: 240px;
    overflow: hidden;
}

.portfolio-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.portfolio-card:hover .portfolio-img-wrapper img {
    transform: scale(1.1);
}

/* Hover Overlay (Üzerine gelince buton çıkması) */
.portfolio-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.7); /* Koyu Slate tonu */
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(4px);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
}

/* Grayscale Filtresi (Logolar için) */
.grayscale-filter i {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.grayscale-filter i:hover {
    filter: grayscale(0%);
}

.btn-white {
    background: #fff;
    color: var(--primary-color);
}