 
        body {
            font-family: 'Poppins', Arial, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }
  
        .page-header {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 2rem;
            margin: 2rem 0;
            color: white;
            text-align: center;
        }
        
        .stats-row {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 1rem;
            margin: 1rem 0;
        }
        
        .analysis-card {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 1.5rem;
            margin: 1rem 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .ilan-card {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .ilan-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .breadcrumb {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 12px;
        }
        
        .breadcrumb-item a {
            color: white;
            text-decoration: none;
        }
        
        .breadcrumb-item.active {
            color: white;
        }
        
        .trend-up {
            color: #28a745;
        }
        
        .trend-down {
            color: #dc3545;
        }
        
        .trend-equal {
            color: #6c757d;
        }
        
        .stat-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
            margin-bottom: 1rem;
        }
        
        .stat-card h3 {
            margin: 0;
            font-size: 2rem;
            font-weight: 700;
        }
        
        .stat-card small {
            opacity: 0.8;
        }
        
        .chart-container {
            position: relative;
            height: 300px;
            margin: 1rem 0;
        }
        
        
   
    
   .section-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .section-header h1 {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .scrolling-announcement {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 1rem 0;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            border-radius: 10px;
            margin: 2rem auto;
            
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .scrolling-announcement:hover {
            animation-play-state: paused;
            cursor: pointer;
        }

        .scrolling-content {
            display: inline-block;
            animation: scroll-left 150s linear infinite;
        }

        .city-item {
            display: inline-block;
            margin-right: 3rem;
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            text-decoration: none;
            color: white;
        }

        .city-item:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: scale(1.05);
            color: white;
        }

        .city-name {
            font-weight: 500;
            margin-right: 0.5rem;
        }

        .city-count {
            background: rgba(255, 255, 255, 0.2);
            padding: 0.2rem 0.5rem;
            border-radius: 10px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .city-icon {
            margin-right: 0.3rem;
            font-size: 0.9rem;
        }

        @keyframes scroll-left {
            0% {
                transform: translateX(0%);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        /* Pause on hover */
        .scrolling-announcement:hover .scrolling-content {
            animation-play-state: paused;
        }

        .info-text {
            text-align: center;
            margin-top: 2rem;
            color: #666;
            font-style: italic;
        }

        /* Alternative colors for variety */
        .scrolling-announcement.alt-color {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .scrolling-announcement.alt-color2 {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .scrolling-announcement.alt-color3 {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
        }

        @media (max-width: 768px) {
            .scrolling-content {
                animation-duration: 150s;
            }
            
            .city-item {
                margin-right: 2rem;
                padding: 0.4rem 0.8rem;
                font-size: 0.9rem;
            }
        }
 
    
.ilan-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border: 1px solid #e8ecf4;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ilan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ilan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.ilan-card:hover::before {
    opacity: 1;
}

/* Firma Başlığı */
.ilan-card h5.text-primary {
    color: #2c3e50 !important;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ilan-card h5.text-primary::before {
    content: '🏢';
    font-size: 1.1rem;
}

/* İlan Başlığı */
.ilan-card .text-muted.mb-2 {
    color: #34495e !important;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px !important;
    line-height: 1.4;
}

/* İlan Metni Container */
.ilan-metin-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    margin: 16px 0;
    position: relative;
    max-height: 200px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.ilan-metin-box.expanded {
    max-height: none;
}

.ilan-metin-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, #f8f9fa);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.ilan-metin-box.expanded::after {
    opacity: 0;
}

/* Paragraf Stilleri */
.paragraf {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #2c3e50;
    font-size: 0.95rem;
    text-align: justify;
}

.paragraf:last-child {
    margin-bottom: 0;
}

/* Daha Fazla Göster Butonu */
.metin-toggle-btn {
    position: absolute;
    bottom: 8px;
    right: 12px;
    background: #667eea;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.metin-toggle-btn:hover {
    background: #5a67d8;
    transform: scale(1.05);
}

/* Mahkeme ve Dosya Bilgileri */
.small.text-secondary {
    background: #e8f2ff;
    padding: 12px 16px;
    border-radius: 10px;
    color: #495057 !important;
    font-weight: 500;
    border-left: 4px solid #667eea;
    margin: 16px 0;
}

.small.text-secondary i {
    color: #667eea;
    margin-right: 6px;
    width: 16px;
}

.small.text-secondary .mx-2 {
    color: #adb5bd;
    font-weight: 300;
}

/* Tarih ve Buton Alanı */
.col-md-4.text-end {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    min-height: 80px;
}

/* Tarih Gösterimi */
.col-md-4 .mb-2 small {
    background: #f1f3f4;
    padding: 6px 12px;
    border-radius: 20px;
    color: #5f6368 !important;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.col-md-4 .mb-2 small i {
    color: #667eea;
}

/* Detay Butonu */
.btn-outline-primary {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-outline-primary i {
    transition: transform 0.2s ease;
}

.btn-outline-primary:hover i {
    transform: scale(1.1);
}

/* Boş İlan Durumu */
.ilan-card.text-center {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    padding: 60px 40px;
}

.ilan-card.text-center h3 {
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 16px;
}

.ilan-card.text-center .text-muted {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.ilan-card.text-center .btn-primary {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ilan-card.text-center .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .ilan-card {
        padding: 20px;
        margin-bottom: 16px;
    }
    
    .col-md-4.text-end {
        margin-top: 16px;
        align-items: flex-start;
        text-align: left !important;
    }
    
    .ilan-metin-box {
        max-height: 150px;
    }
    
    .ilan-card h5.text-primary {
        font-size: 1.2rem;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ilan-card {
    animation: fadeInUp 0.6s ease forwards;
}

.ilan-card:nth-child(even) {
    animation-delay: 0.1s;
}

.ilan-card:nth-child(odd) {
    animation-delay: 0.2s;
}
<style>

/* Premium Sayfalama Stilleri */
.pagination-container {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination-nav {
    position: relative;
}

.pagination {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.05);
    margin: 0;
    gap: 4px;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
}

.pagination::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    pointer-events: none;
}

.page-item {
    margin: 0;
    border: none;
    background: transparent;
}

.page-link {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    color: #4a5568;
    padding: 12px 16px;
    margin: 0 2px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    min-width: 44px;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.page-link:hover::before {
    left: 100%;
}

.page-link:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 3px 10px rgba(0, 0, 0, 0.1);
    color: #2d3748;
}

.page-link:focus {
    box-shadow: 
        0 8px 25px rgba(102, 126, 234, 0.25),
        0 0 0 3px rgba(102, 126, 234, 0.3);
    outline: none;
}

/* Aktif Sayfa */
.page-item.active .page-link,
.page-item.current-page .page-link {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    font-weight: 700;
    transform: scale(1.1);
    box-shadow: 
        0 6px 20px rgba(72, 187, 120, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: none;
}

.page-item.active .page-link::after,
.page-item.current-page .page-link::after {
    display: none;
}

/* Önceki/Sonraki Butonları */
.prev-page .page-link,
.next-page .page-link {
    padding: 12px 20px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.prev-page .page-link {
    border-radius: 25px 12px 12px 25px;
}

.next-page .page-link {
    border-radius: 12px 25px 25px 12px;
}

.prev-page .page-link:hover,
.next-page .page-link:hover {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    color: white;
    transform: translateY(-2px) scale(1.05);
}

.prev-page .page-link i,
.next-page .page-link i {
    transition: transform 0.3s ease;
}

.prev-page .page-link:hover i {
    transform: translateX(-3px);
}

.next-page .page-link:hover i {
    transform: translateX(3px);
}

/* Sayfa Numaraları */
.page-number .page-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
}

.page-number:not(.active):not(.current-page) .page-link:hover {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    color: white;
    transform: translateY(-3px) scale(1.1);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .pagination {
        padding: 6px;
        border-radius: 40px;
        flex-wrap: wrap;
        gap: 2px;
    }
    
    .page-link {
        padding: 10px 12px;
        font-size: 13px;
        min-width: 38px;
    }
    
    .page-number .page-link {
        width: 38px;
        height: 38px;
    }
    
    .prev-page .page-link,
    .next-page .page-link {
        padding: 10px 16px;
    }
    
    /* Mobilde sadece gerekli sayfaları göster */
    .page-item:not(.active):not(.current-page):not(.prev-page):not(.next-page) {
        display: none;
    }
    
    .page-item.active,
    .page-item.current-page,
    .page-item.prev-page,
    .page-item.next-page {
        display: flex;
    }
}

@media (max-width: 480px) {
    .pagination-container {
        margin: 30px 0;
    }
    
    .pagination {
        padding: 4px;
        gap: 1px;
    }
    
    .page-link {
        padding: 8px 10px;
        font-size: 12px;
        min-width: 34px;
    }
    
    .page-number .page-link {
        width: 34px;
        height: 34px;
    }
    
    .prev-page .page-link span,
    .next-page .page-link span {
        display: none;
    }
    
    .prev-page .page-link,
    .next-page .page-link {
        padding: 8px 12px;
    }
}

/* Animasyonlar */
@keyframes pageSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pagination-container {
    animation: pageSlideIn 0.6s ease-out;
}

.page-item {
    animation: pageSlideIn 0.4s ease-out;
}

.page-item:nth-child(1) { animation-delay: 0.1s; }
.page-item:nth-child(2) { animation-delay: 0.15s; }
.page-item:nth-child(3) { animation-delay: 0.2s; }
.page-item:nth-child(4) { animation-delay: 0.25s; }
.page-item:nth-child(5) { animation-delay: 0.3s; }

/* Hover Efektleri */
.pagination:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Dark Mode Desteği */
@media (prefers-color-scheme: dark) {
    .pagination {
        background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    }
    
    .page-link {
        background: rgba(255, 255, 255, 0.1);
        color: #e2e8f0;
        backdrop-filter: blur(20px);
    }
    
    .page-link:hover {
        background: rgba(255, 255, 255, 0.2);
        color: #667eea;
    }
    
    .page-item.active .page-link,
    .page-item.current-page .page-link {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
    }
}

/* Özel Efektler */
.pagination::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #e2e8f0, #cbd5e0, #e2e8f0);
    border-radius: 52px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pagination:hover::after {
    opacity: 0.3;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.info-separator {
    color: #adb5bd;
    font-weight: 300;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kisa-metin::after {
    display: none;
}

.kisa-metin .metin-toggle-btn {
    display: none;
}

@media (max-width: 768px) {
    .action-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .info-item {
        font-size: 0.8rem;
    }
    
    .info-separator {
        display: none;
    }
    
    .small.text-secondary .d-flex {
        flex-direction: column;
        gap: 8px !important;
    }
}

@media (max-width: 768px) {
    .action-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .info-item {
        font-size: 0.8rem;
    }
    
    .info-separator {
        display: none;
    }
    
    .small.text-secondary .d-flex {
        flex-direction: column;
        gap: 8px !important;
    }
}

  .navbar-modern {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding: 0.8rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.4rem;
            color: white !important;
            text-decoration: none;
        }
        
        .navbar-brand i {
            background: rgba(255,255,255,0.2);
            padding: 8px;
            border-radius: 8px;
            margin-right: 10px;
        }
        
        .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            padding: 0.6rem 0.7rem !important;
            border-radius: 8px;
            margin: 0 0.1rem;
            transition: all 0.3s ease;
            position: relative;
            font-size: 0.9rem;
            white-space: nowrap;
        }
        
        .nav-link:hover {
            background: rgba(255,255,255,0.15);
            color: white !important;
            transform: translateY(-2px);
        }
        
        .nav-link.active {
            background: rgba(255,255,255,0.2);
            color: white !important;
        }
        
        .badge {
            font-size: 0.7rem;
            padding: 0.3rem 0.5rem;
            margin-left: 0.4rem;
        }
        
        .dropdown-menu {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 12px;
            padding: 0.5rem;
            margin-top: 0.5rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        }
        
        .dropdown-item {
            border-radius: 8px;
            padding: 0.6rem 1rem;
            margin: 0.1rem 0;
            transition: all 0.2s ease;
        }
        
        .dropdown-item:hover {
            background: rgba(102,126,234,0.1);
            transform: translateX(5px);
        }
        
        .search-box {
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 25px;
            color: white;
            padding: 0.5rem 1rem;
            backdrop-filter: blur(10px);
        }
        
        .search-box::placeholder {
            color: rgba(255,255,255,0.7);
        }
        
        .search-box:focus {
            background: rgba(255,255,255,0.25);
            border-color: rgba(255,255,255,0.5);
            color: white;
            box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.25);
        }
        
        .btn-search {
            background: rgba(255,255,255,0.2);
            border: 1px solid rgba(255,255,255,0.3);
            color: white;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 0.5rem;
            transition: all 0.3s ease;
        }
        
        .btn-search:hover {
            background: rgba(255,255,255,0.3);
            color: white;
            transform: scale(1.1);
        }
        
        .profile-btn {
            background: rgba(255,255,255,0.2);
            border: 1px solid rgba(255,255,255,0.3);
            color: white;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 0.5rem;
        }
        
        .navbar-toggler {
            border: 1px solid rgba(255,255,255,0.3);
            padding: 0.5rem;
        }
        
        .dropdown:hover .dropdown-menu {
            display: block;
            animation: fadeInDown 0.3s ease;
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (min-width: 992px) {
            .nav-link {
                padding: 0.6rem 0.8rem !important;
                font-size: 0.85rem;
            }
            
            .navbar-brand {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.1);
                backdrop-filter: blur(10px);
                border-radius: 12px;
                margin-top: 1rem;
                padding: 1rem;
            }
        }


 .search-features-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
            padding: 2.5rem 0;
            overflow: hidden;
        }
        
        .search-features-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }
        
        .search-features-section .container {
            position: relative;
            z-index: 2;
        }
        
        .section-title {
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        .section-subtitle {
            color: rgba(255,255,255,0.9);
            font-size: 1rem;
            margin-bottom: 2rem;
            font-weight: 300;
        }
        
        .feature-card {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 15px;
            padding: 1.5rem 1rem;
            height: 100%;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            margin-bottom: 1rem;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
            opacity: 0;
        }
        
        .feature-card:hover::before {
            opacity: 1;
            transform: rotate(45deg) translate(50%, 50%);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.25);
            border-color: rgba(255,255,255,0.4);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.3rem;
            color: white;
            transition: all 0.4s ease;
            position: relative;
            z-index: 3;
        }
        
        .feature-card:hover .feature-icon {
            background: rgba(255,255,255,0.3);
            transform: scale(1.1) rotate(5deg);
        }
        
        .feature-title {
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 3;
        }
        
        .feature-description {
            color: rgba(255,255,255,0.9);
            font-size: 0.85rem;
            line-height: 1.5;
            position: relative;
            z-index: 3;
        }
        
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }
        
        .floating-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            animation: float 6s ease-in-out infinite;
        }
        
        .floating-circle:nth-child(1) {
            width: 60px;
            height: 60px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .floating-circle:nth-child(2) {
            width: 40px;
            height: 40px;
            top: 20%;
            right: 15%;
            animation-delay: 2s;
        }
        
        .floating-circle:nth-child(3) {
            width: 80px;
            height: 80px;
            bottom: 20%;
            left: 15%;
            animation-delay: 4s;
        }
        
        .floating-circle:nth-child(4) {
            width: 50px;
            height: 50px;
            bottom: 10%;
            right: 10%;
            animation-delay: 1s;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0.7;
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
                opacity: 1;
            }
        }
        
        .search-form-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .search-form {
            width: 100%;
        }
        
        .search-input-wrapper {
            display: flex;
            background: rgba(255,255,255,0.2);
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 50px;
            overflow: hidden;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .search-input-wrapper:focus-within {
            border-color: rgba(255,255,255,0.6);
            background: rgba(255,255,255,0.25);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .search-input {
            border: none;
            background: transparent;
            color: white;
            padding: 1rem 1.5rem;
            font-size: 1rem;
            flex: 1;
            outline: none;
        }
        
        .search-input::placeholder {
            color: rgba(255,255,255,0.8);
            font-size: 0.9rem;
        }
        
        .search-input:focus {
            background: transparent;
            border: none;
            box-shadow: none;
            color: white;
        }
        
        .search-btn {
            background: rgba(255,255,255,0.2);
            border: none;
            color: white;
            padding: 1rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .search-btn:hover {
            background: rgba(255,255,255,0.3);
            color: white;
            transform: scale(1.05);
        }
        
        .cta-section {
            margin-top: 1.5rem;
            text-align: center;
        }
        
        .cta-button {
            background: rgba(255,255,255,0.2);
            border: 2px solid rgba(255,255,255,0.3);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .cta-button:hover {
            background: rgba(255,255,255,0.3);
            border-color: rgba(255,255,255,0.5);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.5rem;
            }
            
            .feature-card {
                padding: 1rem 0.8rem;
            }
            
            .feature-icon {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }
            
            .search-input {
                padding: 0.8rem 1rem;
                font-size: 0.9rem;
            }
            
            .search-btn {
                padding: 0.8rem 1.5rem;
            }
            
            .search-btn span {
                display: none;
            }
        }