﻿/* --- PREMIUM DESIGN TOKENS --- */
:root {
    --premium-blue: #0d6efd;
    --premium-blue-dark: #004dc7;
    --premium-glass: rgba(255, 255, 255, 0.85);
    --premium-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --premium-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
    --premium-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Glassmorphism Utility */
.glass-panel {
    background: var(--premium-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* SEO Main Title */
.seo-main-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: -0.2px;
    border-left: 5px solid var(--premium-blue);
    padding-left: 15px;
    line-height: 1.2;
}

/* --- BRAND FAST FILTER --- */
.section-brand-filter {
    position: relative;
    z-index: 10;
}

/* Desktop Frame Wrapper */
@media (min-width: 992px) {
    .brand-filter-wrapper {
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 20px;
        padding: 20px 25px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    }
}

.brand-filter-header {
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.brand-filter-header i {
    font-size: 18px;
}

.brand-filter-header span {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.2px;
}

/* Dark Mode */
[data-theme="dark"] .brand-filter-wrapper {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .brand-filter-header {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .brand-filter-header span {
    color: #e2e8f0;
}


.brand-filter-container {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    padding: 15px 0;
    overflow-x: auto;
    scrollbar-width: none;
    /* Hide for Firefox */
    -ms-overflow-style: none;
    /* Hide for IE/Edge */
}

.brand-filter-container::-webkit-scrollbar {
    display: none;
    /* Hide for Chrome/Safari */
}

.brand-filter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
    transition: var(--premium-transition);
    min-width: 90px;
    padding: 10px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.brand-filter-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--premium-shadow-hover);
    border-color: var(--premium-blue);
    background: var(--premium-blue);
}

.brand-logo-wrap {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 6px;
    transition: var(--premium-transition);
}

.brand-filter-item:hover .brand-logo-wrap {
    background: #fff;
}

.brand-logo-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.8;
    transition: var(--premium-transition);
}

.brand-filter-item:hover .brand-logo-wrap img {
    filter: grayscale(0);
    opacity: 1;
}

.brand-name-text {
    font-size: 0.7rem;
    font-weight: 800;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--premium-transition);
}

.brand-filter-item:hover .brand-name-text {
    color: #fff;
}

/* Dark Mode Support */
[data-theme="dark"] .brand-filter-item {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

[data-theme="dark"] .brand-logo-wrap {
    background: rgba(15, 23, 42, 0.5);
}

[data-theme="dark"] .brand-name-text {
    color: #cbd5e1;
}

[data-theme="dark"] .brand-filter-item:hover {
    background: var(--premium-blue);
}

[data-theme="dark"] .brand-filter-item:hover .brand-logo-wrap {
    background: rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .brand-logo-wrap img {
    filter: invert(1) brightness(2);
    opacity: 0.9;
}

[data-theme="dark"] .brand-filter-item:hover .brand-logo-wrap img {
    filter: none;
    opacity: 1;
}

/* --- İSTATİSTİK BANNERI --- */
.stats-counter-banner {
    margin-top: -20px;
    position: relative;
    z-index: 5;
}

.stats-counter-banner .card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--premium-shadow);
    border-radius: 20px !important;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bg-primary-soft {
    background-color: rgba(13, 110, 253, 0.1);
}

.bg-success-soft {
    background-color: rgba(25, 135, 84, 0.1);
}

.bg-info-soft {
    background-color: rgba(13, 202, 240, 0.1);
}

@media (min-width: 768px) {
    .border-end-md {
        border-right: 1px solid rgba(0, 0, 0, 0.08) !important;
    }
}

@media (max-width: 767px) {
    .stats-counter-banner .col-md-4 {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .stats-counter-banner .col-md-4:last-child {
        border-bottom: 0;
    }
}

.stats-counter-banner h3 {
    font-size: 1.5rem;
    color: #212529;
    font-weight: 800 !important;
}

.stats-counter-banner p {
    letter-spacing: 0.5px;
    font-size: 0.75rem;
    font-weight: 700 !important;
}

/* Version: 2026-01-30-v10 - New Features (Body Type, Badges, Advisor) */

/* ==========================================
   ANNOUNCEMENT BANNER (Premium Modern Design)
   ========================================== */
.announcement-banner-container {
    background: #ffffff;
    padding: 0;
    margin-bottom: 15px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
    z-index: 100;
}

.announcement-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 50px;
}

.announcement-carousel {
    flex-grow: 1;
    position: relative;
    min-height: 50px;
    overflow: hidden;
}

.announcement-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(10px);
}

.announcement-item.active {
    opacity: 1;
    position: relative;
    transform: translateY(0);
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #444;
}

/* FA Icons Replacement for Emojis */
.announcement-content::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
    display: inline-block;
    flex-shrink: 0;
}

.announcement-item[data-type="info"] .announcement-content::before {
    content: "\f05a";
    /* info-circle */
    color: #0d6efd;
}

.announcement-item[data-type="warning"] .announcement-content::before {
    content: "\f071";
    /* exclamation-triangle */
    color: #f59e0b;
}

.announcement-item[data-type="success"] .announcement-content::before {
    content: "\f058";
    /* check-circle */
    color: #10b981;
}

.announcement-item[data-type="announcement"] .announcement-content::before {
    content: "\f0a1";
    /* megaphone */
    color: #ef4444;
}

.announcement-item a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1.5px solid transparent;
    transition: all 0.2s;
}

.announcement-item a:hover {
    color: #0a58ca;
    border-bottom-color: #0a58ca;
}

.announcement-indicators {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

.announcement-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e2e8f0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.announcement-dot.active {
    background: #0d6efd;
    transform: scale(1.4);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.announcement-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: #f8fafc;
    color: #94a3b8;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-close:hover {
    background: #fee2e2;
    color: #ef4444;
    border-color: #fecaca;
    transform: translateY(-50%) rotate(90deg);
}

@media (max-width: 991px) {
    .announcement-indicators {
        display: none;
    }

    .announcement-item {
        font-size: 13px;
        padding: 12px 40px;
    }
}

/* --- GENEL STİLLER --- */
.filter-widget {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: 0;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* İlan Kartları */
.listing-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--premium-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.listing-card:hover {
    box-shadow: var(--premium-shadow-hover);
    transform: translateY(-8px);
    border-color: rgba(13, 110, 253, 0.15);
}

.card-img-wrapper {
    position: relative;
    height: 240px;
    background: #f8f9fa;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.listing-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.lot-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(13, 110, 253, 0.2);
    color: #0d6efd;
    font-weight: 800;
    border-radius: 10px;
    padding: 4px 12px;
    font-size: 12px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.brand-title {
    font-size: 17px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 6px;
    min-height: 44px;
    /* Space for 2 lines */
    line-height: 1.3;
    letter-spacing: -0.3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trim-title {
    font-size: 14px;
    color: #888;
    font-weight: 500;
    margin-bottom: 20px;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
    height: 21px !important;
}

/* Clickable title hover effects */
.card-content>a {
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-content>a:hover .brand-title {
    color: #0d6efd;
}

.card-content>a:hover .trim-title {
    color: #495057;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #555;
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    height: 76px !important;
    max-height: 76px !important;
    overflow: hidden !important;
    align-items: stretch !important;
}

[data-theme="dark"] .specs-grid {
    background: rgba(15, 23, 42, 0.4) !important;
    border-color: rgba(255, 255, 255, 0.05) !important;
    color: #94a3b8;
    box-shadow: none;
}

.spec-item {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-height: 32px !important;
    display: flex;
    align-items: center;
    background: #ffffff;
    /* Default for light mode */
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid #eee;
}

[data-theme="dark"] .spec-item {
    background: rgba(15, 23, 42, 0.6) !important;
    border-color: rgba(255, 255, 255, 0.05) !important;
    color: #94a3b8 !important;
}

.spec-item i {
    width: 18px;
    color: #777;
    margin-right: 5px;
    text-align: center;
}

[data-theme="dark"] .spec-item i {
    color: #64748b !important;
}

.card-footer-custom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
    height: 80px !important;
    overflow: visible !important;
}

.price-val {
    font-size: 20px;
    font-weight: 900;
    color: #0d6efd;
    letter-spacing: -0.5px;
}

/* Rozetler */
.badge-dynamic {
    font-size: 11px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 6px;
    display: inline-block;
    margin-right: auto;
    text-transform: uppercase;
}

.badge-kdv {
    background: #e8f5e9;
    color: #1b5e20;
}

.badge-firsat {
    background: #ffebee;
    color: #b71c1c;
}

.badge-acil {
    background: #fff3e0;
    color: #e65100;
}

.badge-kredi {
    background: #e3f2fd;
    color: #0d47a1;
}

.badge-default {
    background: #f5f5f5;
    color: #616161;
}

/* Modern Action Buttons - Badge Style */
.fav-btn {
    position: relative;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fff;
    color: #9e9e9e;
    font-size: 17px;
    cursor: pointer;
    transition: var(--premium-transition);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.fav-btn:hover {
    color: #e91e63;
    background: #fff;
    border-color: #f48fb1;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.15);
}

.fav-btn.active {
    color: #e91e63 !important;
    background: #fff5f8 !important;
    border-color: #e91e63 !important;
    animation: heartBeat 0.6s ease;
}

.fav-btn.active i {
    font-weight: 900;
}

/* Tooltip */
.fav-btn::after {
    content: 'Favorilere Ekle';
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--premium-transition);
    z-index: 1000;
}

.fav-btn.active::after {
    content: 'Favorilerden Çıkar';
}

.fav-btn:hover::after {
    opacity: 1;
}

/* Compare Button */
.compare-btn {
    position: relative;
    width: 38px;
    height: 38px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fff;
    color: #9e9e9e;
    font-size: 15px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    cursor: pointer;
    transition: var(--premium-transition);
}

.compare-btn:hover {
    background: #fff;
    color: #0d6efd;
    border-color: #90caf9;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.15);
}

.compare-btn.active {
    background: #0d6efd !important;
    color: white !important;
    border-color: #0d6efd !important;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

/* Tooltip */
.compare-btn::after {
    content: 'Karşılaştır';
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--premium-transition);
    z-index: 1000;
}

.compare-btn.active::after {
    content: 'Karşılaştırmadan Çıkar';
}

.compare-btn:hover::after {
    opacity: 1;
}

/* Heart Beat Animation */
@keyframes heartBeat {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.3);
    }

    50% {
        transform: scale(1.1);
    }

    75% {
        transform: scale(1.2);
    }
}

/* Hizmet Kutuları */
.feature-box {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 15px;
    height: 100%;
    border: 1px solid #eee;
    transition: 0.3s;
}

.feature-box:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
    border-color: white;
}

.feature-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: #e7f1ff;
    color: #0d6efd;
    border-radius: 50%;
    font-size: 28px;
    margin: 0 auto 20px;
}

/* CTA Banner */
.cta-section {
    background: linear-gradient(45deg, #1a1a1a, #333);
    border-radius: 20px;
    padding: 50px;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05));
    transform: skewX(-20deg);
}

/* İstatistikler */
.stats-section {
    background: #0d6efd;
    color: white;
    padding: 60px 0;
    margin-bottom: 50px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 50%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Marka vitrini - Minimal Elegant */
#brandShowcaseTabs {
    border-bottom: 3px solid #e9ecef;
    padding-bottom: 0;
    margin-bottom: 30px;
}

#brandShowcaseTabs .nav-link {
    background: transparent;
    color: #6c757d;
    border: none;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    margin: 0 15px;
    padding: 15px 5px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
}

#brandShowcaseTabs .nav-link:hover {
    color: #0d6efd;
    border-bottom-color: rgba(13, 110, 253, 0.3);
}

#brandShowcaseTabs .nav-link.active {
    color: #0d6efd;
    background: transparent;
    border-bottom-color: #0d6efd;
    font-weight: 700;
}

.empty-state-message {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.empty-state-message i {
    opacity: 0.3;
}

/* E-Bülten */
.newsletter-box {
    background: #212529;
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-input {
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 1rem;
}

.newsletter-btn {
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- PREMIUM CATEGORY (BODY TYPE) CHIPS --- */
.category-strip-wrapper {
    margin: 25px 0 0 0;
    padding: 10px 0;
    width: 100%;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.category-strip-wrapper::-webkit-scrollbar {
    display: none;
}

.category-strip {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    padding: 5px 0;
}

.category-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 12px 22px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 12px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.category-item i {
    font-size: 20px;
    color: #475569;
    transition: all 0.3s ease;
}

.category-name {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.category-item:hover {
    background: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.1);
}

.category-item:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.category-item:hover .category-name {
    color: var(--primary-color);
}

/* DARK MODE INTEGRATION */
[data-theme="dark"] .category-item {
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

[data-theme="dark"] .category-item i {
    color: #94a3b8;
}

[data-theme="dark"] .category-name {
    color: #e2e8f0;
}

[data-theme="dark"] .category-item:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}


.badge-popularity {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 5px;
}

.badge-pop-hot {
    background: #ef4444;
    color: #fff;
}

.section-recently-viewed {
    background: transparent;
    padding: 15px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.recent-item-minimal {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    background: var(--bg-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 100px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.recent-item-minimal:hover {
    background: var(--primary-light);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.recent-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-main);
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.recent-price {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-color);
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.suggestion-item {
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.suggestion-item:hover {
    background: #f8f9fa;
    color: #0d6efd;
}

/* --- PREMIUM WHATSAPP ADVISOR --- */
.wa-advisor-box {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.wa-close-btn {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 22px;
    height: 22px;
    background: #ff4d4d;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.wa-advisor-box:hover .wa-close-btn {
    opacity: 1;
    visibility: visible;
}

.wa-close-btn:hover {
    background: #e60000;
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .wa-advisor-box {
        bottom: 110px;
        /* Alttaki menü ile çakışmaması için yukarı aldık */
        right: 20px;
    }

    .wa-advisor-bubble {
        display: none;
        /* Mobilde yer kaplamasın sadece simge görünsün */
    }
}

.wa-main-btn-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-main-btn {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid #fff;
    z-index: 2;
}

.wa-advisor-box:hover .wa-main-btn {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.wa-status-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 15px;
    height: 15px;
    background: #25d366;
    border: 2px solid #fff;
    border-radius: 50%;
    z-index: 3;
    animation: status-pulse 2s infinite;
}

.wa-advisor-bubble {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 12px 20px;
    border-radius: 20px 20px 0 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    min-width: 180px;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.wa-advisor-bubble.show {
    opacity: 1;
    transform: translateX(0);
}

.wa-advisor-info {
    display: flex;
    flex-direction: column;
    margin-bottom: 4px;
}

.wa-advisor-title {
    font-size: 10px;
    font-weight: 800;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.wa-advisor-name {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
}

.wa-advisor-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #25d366;
}

.status-online {
    width: 8px;
    height: 8px;
    background: #25d366;
    border-radius: 50%;
    animation: status-pulse 1.5s infinite;
}

@keyframes status-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* DARK MODE INTEGRATION */
[data-theme="dark"] .wa-advisor-bubble {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .wa-advisor-name {
    color: #f8fafc;
}

[data-theme="dark"] .wa-main-btn {
    border-color: #1e293b;
}

[data-theme="dark"] .wa-status-dot {
    border-color: #1e293b;
}

.expert-box {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.online-pulse {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 14px;
    height: 14px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid #1e293b;
}

/* Image Placeholder (used in home.php) */
.img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #e9ecef;
    color: #adb5bd;
    font-weight: bold;
    flex-direction: column;
}

/* --- YENİ: MODERN BAŞLIK TASARIMI (Butonlu) --- */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.section-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    position: relative;
    padding-left: 15px;
    border-left: 5px solid #0d6efd;
}

/* --- BLOG KARTI (YENİ STİL) --- */
.blog-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border-color: #b0b0b0;
}

.blog-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0d6efd;
    background: rgba(13, 110, 253, 0.05);
    /* Added light background for light mode */
    margin-bottom: 12px;
    letter-spacing: 1px;
    display: inline-block;
    width: fit-content;
    /* Force width to content */
    align-self: flex-start;
    /* Prevent flex stretching */
    padding: 4px 10px;
    border-radius: 6px;
}

.blog-title {
    font-size: 16px;
    font-weight: 800;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    height: 44px;
    overflow: hidden;
}

.blog-meta {
    font-size: 12px;
    color: #888;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.blog-excerpt {
    font-size: 13px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
    flex-grow: 1;
    height: 63px;
    overflow: hidden;
}

.blog-btn {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    text-decoration: none;
    border-top: 1px solid #eee;
    padding-top: 15px;
    display: block;
    transition: color 0.2s;
}

.blog-btn:hover {
    color: #0d6efd;
}

/* Image Switch on Mouse Move */
.card-img-wrapper {
    position: relative;
    overflow: hidden;
    user-select: none;
    touch-action: pan-y pinch-zoom;
}

.card-img-wrapper img {
    transition: opacity 0.2s ease;
}

.image-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.card-img-wrapper:hover .image-indicator {
    opacity: 1;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.indicator-dot.active {
    background: #0d6efd;
    border-color: #ffffff;
    transform: scale(1.3);
}

/* Insurance Banner */
.insurance-banner {
    animation: fadeInUp 0.8s ease;
}

.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseBar {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* --- MOBİL RESPONSIVE --- */
@media (max-width: 768px) {
    .filter-widget {
        margin-top: -60px;
        padding: 15px;
    }

    .filter-widget label {
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 1.2rem;
        padding-left: 10px;
        border-left-width: 3px;
    }

    .image-indicator {
        opacity: 1 !important;
    }

    .card-img-wrapper {
        height: 280px;
    }

    .specs-grid {
        gap: 8px;
        padding: 10px;
        font-size: 12px;
    }

    .blog-img-wrapper {
        height: 180px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .brand-showcase-section {
        display: none !important;
    }

    .insurance-banner h2 {
        font-size: 1.3rem !important;
    }

    .insurance-banner p {
        font-size: 0.9rem;
    }

    .insurance-banner .btn {
        font-size: 0.9rem;
        padding: 12px 30px !important;
    }
}

@media (max-width: 576px) {
    .filter-widget {
        margin-top: -40px;
    }

    .section-title {
        font-size: 1rem;
    }
}

/* ==========================================
   PREMIUM HERO SLIDER - v2.4 (UI/UX Pro Max)
   Bento Grid + Glassmorphism + Aurora UI
   ========================================== */

.premium-hero-slider {
    position: relative;
    width: 100%;
    min-height: 500px;
    /* Increased height for better visual impact */
    height: 450px;
    /* Reduced from 500px for a more compact look */
    margin: 15px auto 40px auto;
    /* Slightly more space at the top */
    overflow: hidden;
    background: #f8f9fa;
    background: linear-gradient(135deg, #f8f9fa 0%, #eef2f7 100%);
    border-radius: 30px;
    /* More modern rounding */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

/* Aurora Effect Background Background */
.premium-hero-slider::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(13, 110, 253, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(13, 110, 253, 0.03) 0%, transparent 40%);
    animation: auroraFlow 15s ease infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes auroraFlow {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(2%, 3%) scale(1.05);
    }

    66% {
        transform: translate(-1%, 2%) scale(1.02);
    }
}

.premium-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.premium-slide.active {
    opacity: 1;
    z-index: 2;
}

/* --- Left Area: Visuals (Single Image) --- */
.slide-visual-area {
    width: 60%;
    /* Balanced split for single image */
    height: 100%;
    position: relative;
    z-index: 1;
}

/* Bento Grid Styles Replaced with Single Image Layout */

.single-slide-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 30px 0 0 30px;
}

.single-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Right Area: Info (Glassmorphism) --- */
.slide-info-area {
    width: 40%;
    height: 100%;
    display: flex;
    align-items: stretch;
    /* Stretch to fill height */
    justify-content: center;
    padding: 0;
    /* Zero gaps */
    position: relative;
    z-index: 5;
}

.info-glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 40px 30px 60px 30px;
    /* Increased bottom padding for dot space */
    /* Internal content padding */
    border-radius: 0 30px 30px 0;
    /* Round only the right side to match slider */
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    /* Shadow on the left edge */
    width: 100%;
    height: 100%;
    /* Full height to zero gaps */
    margin: 0;
    transition: all 0.5s ease;
}

.premium-slide.active .info-glass-card {
    transform: translateX(0);
    opacity: 1;
}

.premium-slide:not(.active) .info-glass-card {
    transform: translateX(30px);
    opacity: 0;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #0d6efd 0%, #0052cc 100%);
    color: white;
    font-size: 10px;
    font-weight: 800;
    border-radius: 50px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
}

.premium-badge.silver {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.2);
}

.badge-logo-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.brand-logo-circle {
    width: 76px;
    /* Significantly increased for better visibility */
    height: 76px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    margin-top: -15px;
}

.brand-logo-circle img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.slide-title {
    font-size: 28px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.slide-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 12px;
    /* Reduced from 25px */
    line-height: 1.6;
}

.marketing-promo-banner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(13, 110, 253, 0.05);
    border-radius: 12px;
    margin-bottom: 0;
    border: 1px dashed rgba(13, 110, 253, 0.2);
}

.marketing-promo-banner i {
    color: #0d6efd;
    font-size: 14px;
}

.marketing-promo-banner span {
    font-size: 11px;
    font-weight: 700;
    color: #0d6efd;
    letter-spacing: 0.5px;
}

.slide-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.spec-node {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
}

.spec-node i {
    color: #0d6efd;
    font-size: 14px;
}

.slide-action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.slide-price-tag {
    font-size: 24px;
    font-weight: 900;
    color: #0d6efd;
    letter-spacing: -1px;
}

.slide-price-tag small {
    font-size: 14px;
    font-weight: 700;
    margin-left: 2px;
}

.premium-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 25px;
    background: #1a1a1a;
    color: white;
    font-weight: 800;
    font-size: 13px;
    border-radius: 14px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.premium-btn:hover {
    background: #0d6efd;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.25);
}

.premium-btn.secondary {
    background: #0d6efd;
}

.premium-btn.secondary:hover {
    background: #0a58ca;
}

.promo-img {
    max-height: 80px;
    width: auto;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.05));
}

/* Blog Slider Specifics */
.blog-badge {
    background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.25);
}

.blog-meta-slider {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    font-size: 11px;
    color: #64748b;
}

.blog-cat-tag {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    padding: 3px 10px;
    border-radius: 6px;
    font-weight: 700;
}

.blog-stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-stat-item i {
    color: #94a3b8;
}

.blog-excerpt-slider {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 25px;
}

.blog-slider-btn {
    background: #0d6efd;
}

.blog-slider-btn:hover {
    background: #0b5ed7;
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.3);
}

/* Dots Navigation */
.premium-dots {
    position: absolute;
    bottom: 20px;
    right: 35px;
    display: flex;
    gap: 10px;
    z-index: 100;
}

.dot-item {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
}

.dot-item:hover {
    background: rgba(0, 0, 0, 0.3);
}

.dot-item.active {
    background: #0d6efd;
    width: 24px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
}

/* --- YETKİ BELGELERİ TASARIMI (REVİZE 2 - NEDEN BİZ STİLİ) --- */
.auth-docs-light-wrapper {
    background: #f8faff;
    background-image:
        radial-gradient(at 0% 0%, rgba(13, 110, 253, 0.03) 0, transparent 50%),
        radial-gradient(at 100% 0%, rgba(245, 158, 11, 0.03) 0, transparent 50%);
    padding: 80px 0;
    margin-bottom: 50px;
    border-radius: 30px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    z-index: 1;
}

.auth-box {
    text-align: center;
    padding: 40px 30px;
    background: #ffffff !important;
    border-radius: 20px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.auth-box:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-8px);
    border-color: #0d6efd;
}

.auth-badge-text {
    width: 80px;
    height: 80px;
    background: #f0f7ff;
    color: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 4px solid #ffffff;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.1);
    transition: all 0.3s ease;
}

.auth-box:hover .auth-badge-text {
    background: #0d6efd;
    color: #ffffff;
    transform: scale(1.1);
}

.auth-box h5 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #212529;
    margin-bottom: 15px;
}

.auth-box p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.auth-btn-minimal {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0d6efd;
    text-decoration: none;
    border-top: 1px solid #f1f1f1;
    padding-top: 20px;
    display: block;
    width: 100%;
    transition: all 0.2s;
}

.auth-box:hover .auth-btn-minimal {
    color: #0a58ca;
    letter-spacing: 0.5px;
}

/* Coming Soon Premium Badge */
.coming-soon-badge-premium {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.coming-soon-badge-premium i {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.5));
}

.coming-soon-badge-premium span {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-top: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.animate-pulse {
    animation: premium-pulse 2s infinite ease-in-out;
}

@keyframes premium-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* DARK MODE - Night Blue Integration */
[data-theme="dark"] .premium-hero-slider {
    background: var(--bg-body) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .premium-hero-slider::before {
    background: radial-gradient(circle at 30% 30%, rgba(96, 165, 250, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(96, 165, 250, 0.05) 0%, transparent 40%);
}

[data-theme="dark"] .info-glass-card {
    background: var(--glass-bg) !important;
    border-color: rgba(255, 255, 255, 0.05) !important;
    box-shadow: -15px 0 45px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .slide-title {
    color: var(--text-main) !important;
}

[data-theme="dark"] .slide-subtitle {
    color: var(--text-muted) !important;
}

[data-theme="dark"] .spec-node {
    background: rgba(255, 255, 255, 0.03) !important;
    color: var(--text-main) !important;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .spec-node i {
    color: var(--primary-color) !important;
}

[data-theme="dark"] .brand-logo-circle {
    background: var(--bg-card) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .premium-btn {
    background: var(--primary-color);
    box-shadow: 0 10px 20px rgba(96, 165, 250, 0.2);
}

[data-theme="dark"] .marketing-promo-banner {
    background: rgba(96, 165, 250, 0.1);
    border-color: rgba(96, 165, 250, 0.2);
}

[data-theme="dark"] .marketing-promo-banner i,
[data-theme="dark"] .marketing-promo-banner span {
    color: var(--primary-color);
}

[data-theme="dark"] .dot-item {
    background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .dot-item.active {
    background: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-soft);
}

[data-theme="dark"] .btn-outline-dark {
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: #fff !important;
}

[data-theme="dark"] .btn-outline-dark:hover {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}