/**
 * FerdiSoft Web Ajans Scripti - Özel CSS Tasarım Mimarisi
 * Renk Paleti: #6c5ffc (Ana Mor/Mavi Vurgular), #4338ca (Derin İndigo), #0f172a (Koyu Tema)
 * FerdiSoft.Com.TR
 */

:root {
    --fs-primary: #6c5ffc;
    --fs-primary-hover: #594bdb;
    --fs-primary-light: rgba(108, 95, 252, 0.1);
    --fs-primary-gradient: linear-gradient(135deg, #6c5ffc 0%, #4e54c8 100%);
    --fs-secondary-gradient: linear-gradient(135deg, #7c4dff 0%, #2196f3 100%);
    --fs-cta-gradient: linear-gradient(135deg, #6c5ffc 0%, #3730a3 100%);
    --fs-dark: #0f172a;
    --fs-dark-surface: #1e293b;
    --fs-card-border: rgba(108, 95, 252, 0.12);
    --fs-shadow-sm: 0 4px 12px rgba(108, 95, 252, 0.08);
    --fs-shadow-md: 0 10px 30px rgba(108, 95, 252, 0.12);
    --fs-shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.15);
    --fs-radius-sm: 8px;
    --fs-radius-md: 14px;
    --fs-radius-lg: 20px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #334155;
    background-color: #f8fafc;
    overflow-x: hidden;
}

/* -------------------------------------------------------------
   1. Tipografi ve Genel Bileşenler
------------------------------------------------------------- */
a {
    color: var(--fs-primary);
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

a:hover {
    color: var(--fs-primary-hover);
}

.text-fs-primary {
    color: var(--fs-primary) !important;
}

.bg-fs-primary {
    background-color: var(--fs-primary) !important;
}

.bg-fs-gradient {
    background: var(--fs-primary-gradient) !important;
}

.btn-fs-primary {
    background: var(--fs-primary-gradient);
    border: none;
    color: #ffffff;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--fs-radius-md);
    box-shadow: 0 6px 20px rgba(108, 95, 252, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-fs-primary:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(108, 95, 252, 0.5);
    background: linear-gradient(135deg, #594bdb 0%, #4338ca 100%);
}

.btn-fs-outline {
    background: transparent;
    border: 2px solid var(--fs-primary);
    color: var(--fs-primary);
    font-weight: 600;
    padding: 11px 24px;
    border-radius: var(--fs-radius-md);
    transition: all 0.3s ease;
}

.btn-fs-outline:hover {
    background: var(--fs-primary);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(108, 95, 252, 0.25);
    transform: translateY(-2px);
}

/* -------------------------------------------------------------
   2. Modern Navbar & Header
------------------------------------------------------------- */
.navbar-custom {
    background: #ffffff;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    transition: all 0.3s ease;
}

.navbar-brand .brand-logo-text {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: var(--fs-primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    font-weight: 500;
    color: #475569;
    padding: 8px 16px !important;
    border-radius: var(--fs-radius-sm);
    transition: all 0.2s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--fs-primary) !important;
    background: var(--fs-primary-light);
}

/* -------------------------------------------------------------
   3. Hero Bar & Canlı Alan Adı Sorgulama
------------------------------------------------------------- */
.hero-section {
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    padding: 45px 0 35px 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}

.hero-badge {
    background: var(--fs-primary-light);
    color: var(--fs-primary);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
}

.hero-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.7px;
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 680px;
    line-height: 1.6;
}

/* Canlı Alan Adı Arama Kutusu */
.domain-search-card {
    background: #ffffff;
    border-radius: var(--fs-radius-md);
    padding: 12px 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    border: 2px solid var(--fs-card-border);
    transition: all 0.3s ease;
}

.domain-search-card:focus-within {
    border-color: var(--fs-primary);
    box-shadow: 0 12px 35px rgba(108, 95, 252, 0.18);
}

.domain-search-input {
    border: none;
    outline: none;
    box-shadow: none !important;
    font-size: 1rem;
    font-weight: 500;
    color: #1e293b;
    padding: 8px 12px;
}

.domain-search-input::placeholder {
    color: #94a3b8;
}

/* -------------------------------------------------------------
   4. Cihaz Mockup Bloğu (3 Katmanlı Responsive Sunum)
------------------------------------------------------------- */
.device-mockup-wrapper {
    position: relative;
    padding: 30px 15px 40px 15px;
    margin-bottom: 30px;
    background: radial-gradient(circle at center, rgba(108, 95, 252, 0.08) 0%, transparent 70%);
    border-radius: var(--fs-radius-lg);
}

.mockup-container {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    perspective: 1200px;
}

/* Laptop Mockup (Arka/Ana Katman) */
.laptop-mockup {
    position: relative;
    background: #1e293b;
    border-radius: 16px 16px 4px 4px;
    padding: 12px 12px 0 12px;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    border: 3px solid #334155;
    z-index: 1;
}

.laptop-screen-header {
    background: #0f172a;
    padding: 8px 14px;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot-red { background: #ef4444; }
.dot-yellow { background: #eab308; }
.dot-green { background: #22c55e; }

.browser-address-bar {
    background: #1e293b;
    color: #94a3b8;
    font-size: 0.75rem;
    padding: 3px 14px;
    border-radius: 20px;
    flex-grow: 1;
    max-width: 320px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.laptop-screen-body {
    background: #0b0f19;
    border-radius: 0 0 4px 4px;
    overflow: hidden;
    height: 320px;
    position: relative;
}

.laptop-screen-body img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 6s ease-in-out;
}

.laptop-mockup:hover .laptop-screen-body img {
    transform: translateY(-25%);
}

.laptop-base {
    background: #475569;
    height: 14px;
    width: 110%;
    margin-left: -5%;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    position: relative;
}

.laptop-base-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 5px;
    background: #64748b;
    border-radius: 0 0 6px 6px;
}

/* Tablet Mockup (Sol Ön Katman) */
.tablet-mockup {
    position: absolute;
    bottom: -15px;
    left: -20px;
    width: 220px;
    background: #0f172a;
    border-radius: 20px;
    padding: 8px;
    border: 3px solid #334155;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    z-index: 2;
    transition: transform 0.4s ease;
}

.tablet-mockup:hover {
    transform: translateY(-8px) scale(1.03);
}

.tablet-screen {
    background: #1e293b;
    height: 230px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.tablet-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobil Mockup (Sağ Ön Katman) */
.mobile-mockup {
    position: absolute;
    bottom: -25px;
    right: -15px;
    width: 145px;
    background: #0f172a;
    border-radius: 24px;
    padding: 6px;
    border: 3px solid #475569;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4);
    z-index: 3;
    transition: transform 0.4s ease;
}

.mobile-mockup:hover {
    transform: translateY(-8px) scale(1.04);
}

.mobile-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 8px;
    background: #0f172a;
    border-radius: 10px;
    z-index: 4;
}

.mobile-screen {
    background: #1e293b;
    height: 220px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

.mobile-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* -------------------------------------------------------------
   5. Sol Sticky Sidebar (Fiyat Hesaplama & Özellikler)
------------------------------------------------------------- */
.sticky-sidebar-wrapper {
    position: sticky;
    top: 25px;
    z-index: 10;
}

.pricing-card {
    background: #ffffff;
    border-radius: var(--fs-radius-lg);
    border: 1px solid var(--fs-card-border);
    box-shadow: var(--fs-shadow-md);
    overflow: hidden;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    box-shadow: var(--fs-shadow-lg);
}

/* Canlı Önizleme Butonu & Görsel Efekti */
.preview-thumbnail-box {
    position: relative;
    height: 170px;
    overflow: hidden;
    background: #1e1b4b;
}

.preview-thumbnail-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.preview-thumbnail-box:hover img {
    transform: scale(1.08);
    opacity: 0.65;
}

.preview-overlay-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
}

.preview-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* Fiyat Hesaplama Alanı */
.pricing-calculator-body {
    padding: 24px;
}

.form-label-custom {
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.select-custom {
    border: 2px solid #e2e8f0;
    border-radius: var(--fs-radius-md);
    padding: 12px 14px;
    font-weight: 600;
    color: #1e293b;
    background-color: #f8fafc;
    transition: all 0.2s ease;
}

.select-custom:focus {
    border-color: var(--fs-primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(108, 95, 252, 0.15);
}

/* Ek Hizmetler Checkbox */
.addon-check-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--fs-radius-sm);
    padding: 12px 14px;
    margin-bottom: 10px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.addon-check-box:hover {
    border-color: var(--fs-primary);
    background: var(--fs-primary-light);
}

.addon-check-box .form-check-input {
    width: 1.25em;
    height: 1.25em;
    margin-top: 0.15em;
    cursor: pointer;
}

.addon-check-box .form-check-input:checked {
    background-color: var(--fs-primary);
    border-color: var(--fs-primary);
}

/* Hesaplama Çıktı Kutusu */
.calc-summary-card {
    background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px dashed #cbd5e1;
    border-radius: var(--fs-radius-md);
    padding: 16px;
    margin: 18px 0;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 8px;
}

.calc-row.total-row {
    border-top: 2px solid #e2e8f0;
    padding-top: 12px;
    margin-top: 10px;
    margin-bottom: 0;
    color: #0f172a;
}

.calc-price-main {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--fs-primary);
    letter-spacing: -0.5px;
}

/* Fiyat darbe animasyonu */
@keyframes pricePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); color: #4338ca; }
    100% { transform: scale(1); }
}

.price-pulse {
    animation: pricePulse 0.35s ease-in-out;
}

/* Teknik Özellikler Kartı */
.specs-card {
    background: #ffffff;
    border-radius: var(--fs-radius-lg);
    border: 1px solid var(--fs-card-border);
    box-shadow: var(--fs-shadow-sm);
    padding: 24px;
}

.specs-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
}

.spec-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
}

.spec-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.spec-label {
    color: #64748b;
    font-weight: 500;
}

.spec-value {
    color: #0f172a;
    font-weight: 700;
}

.rating-stars-gold {
    color: #f59e0b;
}

/* -------------------------------------------------------------
   6. Sekme (Tab) Tasarımı ve İçerikler
------------------------------------------------------------- */
.custom-nav-tabs {
    border-bottom: 2px solid #e2e8f0;
    gap: 10px;
    margin-bottom: 28px;
}

.custom-nav-tabs .nav-link {
    border: none;
    background: transparent;
    color: #64748b;
    font-size: 1.02rem;
    font-weight: 600;
    padding: 14px 22px !important;
    border-radius: var(--fs-radius-md) var(--fs-radius-md) 0 0;
    position: relative;
    transition: all 0.2s ease;
}

.custom-nav-tabs .nav-link:hover {
    color: var(--fs-primary);
    background: #f8fafc;
}

.custom-nav-tabs .nav-link.active {
    color: var(--fs-primary) !important;
    background: #ffffff !important;
    border-bottom: 3px solid var(--fs-primary);
}

.details-tab-content {
    background: #ffffff;
    border-radius: var(--fs-radius-lg);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    padding: 32px;
}

/* -------------------------------------------------------------
   7. Entegrasyonlar Grid (3x3 Kart Yapısı)
------------------------------------------------------------- */
.integration-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--fs-radius-md);
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.integration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--fs-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-5px);
    border-color: var(--fs-card-border);
    box-shadow: var(--fs-shadow-md);
}

.integration-card:hover::before {
    opacity: 1;
}

.integration-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    margin-bottom: 14px;
}

.integration-icon-wrap img {
    max-width: 36px;
    max-height: 36px;
    object-fit: contain;
}

.integration-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.integration-subtitle {
    font-size: 0.82rem;
    color: #64748b;
    margin-bottom: 12px;
}

/* -------------------------------------------------------------
   8. Sürüm Geçmişi (Changelog) Timeline
------------------------------------------------------------- */
.changelog-timeline {
    position: relative;
    padding-left: 28px;
}

.changelog-timeline::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 8px;
    width: 2px;
    height: calc(100% - 20px);
    background: #e2e8f0;
}

.changelog-item {
    position: relative;
    margin-bottom: 28px;
}

.changelog-dot {
    position: absolute;
    left: -28px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid var(--fs-primary);
    box-shadow: 0 0 0 4px rgba(108, 95, 252, 0.15);
}

.changelog-badge {
    background: var(--fs-primary);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}

.changelog-date {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 500;
}

.changelog-content-box {
    background: #f8fafc;
    border-radius: var(--fs-radius-md);
    padding: 16px 20px;
    margin-top: 10px;
    border: 1px solid #e2e8f0;
}

.changelog-content-box ul {
    margin-bottom: 0;
    padding-left: 20px;
}

.changelog-content-box li {
    font-size: 0.92rem;
    color: #334155;
    margin-bottom: 6px;
}
.changelog-content-box li:last-child {
    margin-bottom: 0;
}

/* -------------------------------------------------------------
   9. Yönetim Paneli Vitrini (Admin Features Grid)
------------------------------------------------------------- */
.admin-feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--fs-radius-md);
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.admin-feature-card:hover {
    border-color: var(--fs-primary);
    box-shadow: var(--fs-shadow-sm);
    transform: translateY(-3px);
}

.admin-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 1.25rem;
}

/* -------------------------------------------------------------
   10. Alt CTA Banner (Öne Çıkan Özellikler)
------------------------------------------------------------- */
.cta-banner-section {
    background: var(--fs-cta-gradient);
    border-radius: var(--fs-radius-lg);
    padding: 50px 40px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(67, 56, 202, 0.25);
    margin: 50px 0;
}

.cta-banner-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner-title {
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.cta-banner-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.cta-feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-feature-list li {
    font-size: 0.98rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-feature-list li i {
    color: #4ade80;
    font-size: 1.1rem;
}

.cta-mockup-img {
    max-width: 100%;
    border-radius: var(--fs-radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

/* -------------------------------------------------------------
   11. Koyu Tema Footer (4 Sütunlu Düzen)
------------------------------------------------------------- */
.footer-dark {
    background-color: var(--fs-dark);
    color: #94a3b8;
    padding-top: 65px;
    padding-bottom: 30px;
    border-top: 1px solid #1e293b;
}

.footer-dark .footer-heading {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-dark .footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--fs-primary);
}

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

.footer-dark ul li {
    margin-bottom: 11px;
}

.footer-dark ul li a {
    color: #94a3b8;
    font-size: 0.92rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-dark ul li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-bottom-bar {
    border-top: 1px solid #1e293b;
    margin-top: 50px;
    padding-top: 25px;
    font-size: 0.88rem;
    color: #64748b;
}

/* -------------------------------------------------------------
   12. Responsive Ayarlamaları
------------------------------------------------------------- */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 1.85rem;
    }
    .sticky-sidebar-wrapper {
        position: static;
        margin-top: 30px;
    }
    .laptop-screen-body {
        height: 220px;
    }
    .tablet-mockup {
        width: 170px;
        bottom: -10px;
        left: -10px;
    }
    .tablet-screen {
        height: 160px;
    }
    .mobile-mockup {
        width: 110px;
        bottom: -15px;
        right: -10px;
    }
    .mobile-screen {
        height: 150px;
    }
    .cta-banner-section {
        padding: 35px 25px;
        text-align: center;
    }
    .cta-feature-list {
        align-items: flex-start;
        display: inline-flex;
        text-align: left;
    }
}

@media (max-width: 575.98px) {
    .tablet-mockup, .mobile-mockup {
        display: none;
    }
    .laptop-mockup {
        width: 100%;
    }
    .laptop-screen-body {
        height: 180px;
    }
    .custom-nav-tabs .nav-link {
        padding: 10px 14px !important;
        font-size: 0.9rem;
    }
    .details-tab-content {
        padding: 20px 16px;
    }
}

/* -------------------------------------------------------------
   13. ANA SAYFA (INDEX) ÖZEL BİLEŞEN VE STİLLERİ
------------------------------------------------------------- */
.home-hero-banner {
    position: relative;
    background: linear-gradient(135deg, rgba(108, 95, 252, 0.92) 0%, rgba(67, 56, 202, 0.94) 100%), url('../images/banner1.webp') center/cover no-repeat;
    padding: 85px 0 65px 0;
    color: #ffffff;
    overflow: hidden;
}

.home-hero-badge {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
}

.home-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin-bottom: 12px;
}

.home-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 640px;
    margin: 0 auto 28px auto;
}

/* Dalga SVG Ayırıcı */
.hero-wave-shape {
    position: relative;
    width: 100%;
    line-height: 0;
    margin-top: -1px;
}

.hero-wave-shape svg {
    display: block;
    width: 100%;
    height: 48px;
}

/* Web Tasarım Kartları (Ana Sayfa) */
.product-showcase-card {
    background: #ffffff;
    border-radius: var(--fs-radius-md);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(108, 95, 252, 0.14);
    border-color: var(--fs-card-border);
}

.product-card-thumb-wrap {
    position: relative;
    height: 190px;
    overflow: hidden;
    background: #0f172a;
}

.product-card-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-showcase-card:hover .product-card-thumb-wrap img {
    transform: scale(1.06);
}

.product-price-badge-overlay {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hosting Paketleri Kartları */
.hosting-card {
    background: #ffffff;
    border-radius: var(--fs-radius-lg);
    border: 1px solid #e2e8f0;
    padding: 32px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.hosting-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(108, 95, 252, 0.15);
}

/* Öne Çıkan Mor Hosting Kartı */
.hosting-card.featured {
    background: linear-gradient(145deg, #6c5ffc 0%, #4f46e5 100%);
    color: #ffffff;
    border-color: #4f46e5;
    box-shadow: 0 15px 35px rgba(108, 95, 252, 0.35);
    transform: scale(1.03);
}

.hosting-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.hosting-card.featured .hosting-category {
    color: #ffffff !important;
}

.hosting-card.featured .hosting-price,
.hosting-card.featured .hosting-period {
    color: #ffffff !important;
}

.hosting-card.featured .hosting-feature-list li {
    color: rgba(255, 255, 255, 0.92) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hosting-card.featured .hosting-feature-list li i {
    color: #4ade80 !important;
}

.hosting-category {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--fs-primary);
    margin-bottom: 12px;
}

.hosting-price-wrap {
    margin-bottom: 20px;
}

.hosting-price {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.hosting-period {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
}

.hosting-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.hosting-feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.88rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hosting-feature-list li i {
    color: var(--fs-primary);
}

/* Ribbons (Çapraz Etiketler) */
.ribbon-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 110px;
    height: 110px;
    overflow: hidden;
    pointer-events: none;
    z-index: 5;
}

.ribbon-top-right {
    position: absolute;
    display: block;
    width: 155px;
    padding: 5px 0;
    background-color: var(--fs-primary);
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-shadow: 0 1px 1px rgba(0,0,0,.2);
    text-transform: uppercase;
    text-align: center;
    left: -15px;
    top: 25px;
    transform: rotate(45deg);
}

.ribbon-top-right.ribbon-white {
    background-color: #ffffff;
    color: var(--fs-primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.ribbon-top-left {
    position: absolute;
    display: block;
    width: 155px;
    padding: 5px 0;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    right: -15px;
    top: 25px;
    transform: rotate(-45deg);
}

.ribbon-bronze { background-color: #ea580c; }
.ribbon-silver { background-color: #64748b; }
.ribbon-gold { background-color: #0284c7; }
.ribbon-platinum { background-color: #10b981; }

/* Bayilik Kartları */
.bayi-card {
    background: #ffffff;
    border-radius: var(--fs-radius-lg);
    border: 1px solid #e2e8f0;
    padding: 28px 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.bayi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(108, 95, 252, 0.12);
    border-color: var(--fs-card-border);
}

.bayi-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.bayi-discount-text {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--fs-primary);
    margin: 8px 0;
}

.bayi-discount-text small {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
}

/* IonCube Şifreleme Kartları */
.ioncube-card {
    background: #ffffff;
    border-radius: var(--fs-radius-lg);
    border: 1px solid #e2e8f0;
    padding: 30px 24px;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.ioncube-card:hover {
    transform: translateY(-6px);
    border-color: #ef4444;
    box-shadow: 0 16px 35px rgba(239, 68, 68, 0.12);
}

.ioncube-logo-wrap {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.ioncube-logo-wrap img, .ioncube-logo-wrap svg {
    max-height: 48px;
    max-width: 220px;
}

/* Sayaç / İstatistik Bloğu */
.stats-counter-banner {
    position: relative;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.95) 100%), url('../images/banner4.webp') center/cover no-repeat;
    border-radius: var(--fs-radius-lg);
    padding: 50px 30px;
    color: #ffffff;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
}

.counter-stat-box {
    text-align: center;
    padding: 10px;
}

.counter-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--fs-primary);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 14px;
    box-shadow: 0 8px 20px rgba(108, 95, 252, 0.4);
    transition: transform 0.3s ease;
}

.counter-stat-box:hover .counter-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.counter-number-val {
    font-size: 2.3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.counter-label-text {
    font-size: 0.95rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Öğrenci/Maskot Görseli */
.cta-student-wrap {
    text-align: center;
    position: relative;
}

.cta-student-wrap img {
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.35));
}

/* -------------------------------------------------------------
   14. ÜRÜN KATALOG & LİSTE GÖRÜNÜMÜ STİLLERİ (MEDIA_1788942166205)
------------------------------------------------------------- */
.product-list-card {
    background: #ffffff;
    border-radius: var(--fs-radius-md);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-list-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(108, 95, 252, 0.12);
    border-color: var(--fs-card-border);
}

.product-list-thumb {
    width: 250px;
    min-width: 250px;
    height: 180px;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

.product-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-list-card:hover .product-list-thumb img {
    transform: scale(1.06);
}

.product-list-body {
    padding: 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-list-meta {
    list-style: none;
    padding: 0;
    margin: 8px 0 12px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.82rem;
    color: #64748b;
}

.product-list-meta li {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.product-list-meta li i {
    color: var(--fs-primary);
}

/* Görünüm Değiştirici Butonlar */
.view-toggle-btn {
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #64748b;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.view-toggle-btn.active, .view-toggle-btn:hover {
    background: var(--fs-primary);
    color: #ffffff;
    border-color: var(--fs-primary);
}

/* Kenar Çubuğu Filtre Kartları */
.sidebar-filter-card {
    background: #ffffff;
    border-radius: var(--fs-radius-md);
    border: 1px solid #e2e8f0;
    padding: 22px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.sidebar-filter-heading {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
}

.category-filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-filter-list li {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-filter-list label {
    font-size: 0.92rem;
    color: #334155;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 767.98px) {
    .product-list-thumb {
        width: 100%;
        min-width: 100%;
        height: 200px;
    }
}

/* -------------------------------------------------------------
   15. ÜST MENÜ & NAVBAR STİLLERİ (MEDIA_1788942412897)
------------------------------------------------------------- */
.header-wrapper-main {
    position: relative;
    z-index: 1050;
    width: 100%;
}

.top-bar-transparent {
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 6px 0;
}

.top-bar-transparent a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s ease;
}

.top-bar-transparent a:hover {
    color: #ffffff;
}

.navbar-main-glass {
    background: rgba(108, 95, 252, 0.4);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px 0;
    transition: all 0.35s ease;
}

.navbar-main-glass.scrolled {
    background: rgba(15, 23, 42, 0.96) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    padding: 10px 0;
}

.brand-logo-white {
    font-size: 1.65rem;
    font-weight: 900;
    letter-spacing: -0.8px;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.brand-logo-white .logo-badge {
    background: #ffffff;
    color: var(--fs-primary);
    font-size: 0.62rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 2px;
}

.nav-link-white {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 8px 14px !important;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link-white:hover,
.nav-link-white.active,
.show > .nav-link-white {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.dropdown-menu-modern {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
    padding: 8px;
    min-width: 230px;
    animation: fadeInDropdown 0.25s ease forwards;
}

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

.dropdown-menu-modern .dropdown-item {
    font-size: 0.9rem;
    font-weight: 500;
    color: #334155;
    padding: 9px 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-menu-modern .dropdown-item i {
    width: 20px;
    text-align: center;
    color: var(--fs-primary);
    font-size: 0.95rem;
}

.dropdown-menu-modern .dropdown-item:hover {
    background: var(--fs-primary-light);
    color: var(--fs-primary);
    transform: translateX(4px);
}



