/* ═══════════════════════════════════════════════════════════════
   PREMIUM ESCORT - LIGHT THEME CSS
   Modern, Profesyonel ve SEO Dostu Tasarım
   ═══════════════════════════════════════════════════════════════ */

/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f8f9fa;
    color: #2d3436;
    line-height: 1.7;
    min-height: 100%;
    font-size: 16px;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ─────────────────────────────────────────────────────────────────
   YAŞ DOĞRULAMA MODAL
   ───────────────────────────────────────────────────────────────── */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
    backdrop-filter: blur(20px);
}

.age-modal.hidden {
    display: none;
}

.age-modal-content {
    background: #ffffff;
    padding: 60px 50px;
    border-radius: 24px;
    text-align: center;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e0e0;
}

.age-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e91e63, #c2185b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.age-icon i {
    font-size: 36px;
    color: #fff;
}

.age-modal-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.age-modal-content p {
    color: #666;
    margin-bottom: 12px;
    font-size: 16px;
}

.age-warning {
    color: #e91e63 !important;
    font-weight: 600;
    font-size: 17px !important;
}

.age-modal-content p strong {
    color: #333;
}

.age-buttons {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.age-buttons button {
    padding: 18px 35px;
    font-size: 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-yes {
    background: linear-gradient(135deg, #e91e63, #c2185b);
    color: #fff;
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.3);
}

.btn-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.4);
}

.btn-no {
    background: #f5f5f5;
    color: #666;
    border: 2px solid #e0e0e0 !important;
}

.btn-no:hover {
    background: #eee;
    color: #333;
}

/* Blur Efekti */
.blurred {
    filter: blur(30px);
    pointer-events: none;
    user-select: none;
}

/* ─────────────────────────────────────────────────────────────────
   HEADER
   ───────────────────────────────────────────────────────────────── */
header {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.header-brand {
    text-decoration: none;
}

.brand-text {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #e91e63, #c2185b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.header-ilan-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e91e63, #c2185b);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.header-ilan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.header-ilan-btn i {
    font-size: 12px;
}

.header-slogan {
    font-size: 13px;
    color: #888;
    letter-spacing: 1px;
}

/* ─────────────────────────────────────────────────────────────────
   ANA İÇERİK
   ───────────────────────────────────────────────────────────────── */
main {
    padding: 40px 0 60px;
    flex: 1;
    margin-top: 10px;
}

/* ─────────────────────────────────────────────────────────────────
   İLAN GRID
   ───────────────────────────────────────────────────────────────── */
.ilanlar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* İlan Kartı */
.ilan-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.ilan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.12);
    border-color: #e91e63;
}

.ilan-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

.ilan-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    
    pointer-events: none;
}

.ilan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ilan-card:hover .ilan-image img {
    transform: scale(1.08);
}

/* Thumbnail Wrapper - WhatsApp Badge ve Daha Fazla Fotoğraf */
.thumbnail-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.thumbnail-wrapper > img.single-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Multi Thumbnail Layouts */
.multi-thumb {
    display: flex;
    width: 100%;
    height: 100%;
    gap: 0;
}

/* 2 resim yan yana */
.multi-thumb.two-imgs .thumb-left,
.multi-thumb.two-imgs .thumb-right {
    flex: 1;
    overflow: hidden;
}

.multi-thumb.two-imgs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 3 resim yan yana */
.multi-thumb.three-imgs {
    display: flex;
}

.multi-thumb.three-imgs .thumb-col {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.multi-thumb.three-imgs .thumb-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Daha fazla fotoğraf overlay */
.more-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

/* WhatsApp Badge - Sol Üst */
.whatsapp-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-badge i {
    color: #fff;
    font-size: 20px;
}

.ilan-card:hover .whatsapp-badge {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Daha Fazla Fotoğraf Badge - Sağ Alt */
.more-photos-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.more-photos-badge i {
    font-size: 11px;
}

/* Combined Thumbnail (2-3 resim birleşik) */
.combined-thumbnail {
    position: relative;
}

/* Birleşik thumbnail için WhatsApp badge - API tarafından ekleniyor */
.ilan-image .combined-thumbnail + .whatsapp-badge-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
}

.no-image {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #fce4ec, #f8bbd9);
    color: #e91e63;
    font-size: 50px;
}

.ilan-info {
    padding: 20px;
}

.ilan-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 600;
}

.ilan-detay {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.ilan-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.tiklanma {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888;
    font-size: 14px;
    font-weight: 500;
}

.tiklanma i {
    color: #e91e63;
}

/* Boş İlan Durumu */
.no-ilanlar {
    text-align: center;
    padding: 120px 20px;
    color: #999;
}

.no-ilanlar i {
    font-size: 100px;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.no-ilanlar p {
    font-size: 20px;
}

/* ─────────────────────────────────────────────────────────────────
   İLAN DETAY SAYFASI - BÜYÜK VE ETKİLEYİCİ
   ───────────────────────────────────────────────────────────────── */
.ilan-detay-page {
    padding: 40px 0 80px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #e91e63;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 40px;
    transition: all 0.3s ease;
    font-size: 16px;
    padding: 12px 24px;
    background: #fce4ec;
    border-radius: 50px;
}

.back-btn:hover {
    background: #f8bbd9;
    gap: 18px;
}

.ilan-detay-container {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

/* Galeri - Büyük */
.ilan-galeri {
    width: 100%;
    position: relative;
}

.galeri-main {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #f5f5f5;
}

.galeri-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fafafa;
}

.galeri-thumbs {
    display: flex;
    gap: 15px;
    padding: 25px;
    overflow-x: auto;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.galeri-thumbs::-webkit-scrollbar {
    height: 8px;
}

.galeri-thumbs::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 4px;
}

.galeri-thumbs::-webkit-scrollbar-thumb {
    background: #e91e63;
    border-radius: 4px;
}

.galeri-thumb {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.galeri-thumb.active,
.galeri-thumb:hover {
    opacity: 1;
    border-color: #e91e63;
    transform: scale(1.05);
}

.galeri-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* İlan İçerik - Büyük ve Okunabilir */
.ilan-content {
    padding: 60px 80px;
}

.ilan-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
}

.ilan-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    color: #888;
    font-size: 16px;
}

.ilan-meta span {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 10px 20px;
    border-radius: 50px;
}

.ilan-meta i {
    color: #e91e63;
    font-size: 18px;
}

.ilan-aciklama {
    color: #444;
    font-size: 18px;
    line-height: 2;
    margin-bottom: 50px;
    white-space: pre-line;
    padding: 40px;
    background: #fafafa;
    border-radius: 20px;
    border-left: 5px solid #e91e63;
}

/* WhatsApp Butonu - İçerideki */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 22px 50px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 28px;
}

/* ─────────────────────────────────────────────────────────────────
   SABİT WHATSAPP BUTONU (SAĞ ALT)
   ───────────────────────────────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 36px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 50px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }
}

/* ─────────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────────── */
footer {
    background: #1a1a1a;
    color: #999;
    padding: 5px 0;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #e91e63;
    text-transform: uppercase;
}

.footer-desc {
    font-size: 14px;
    color: #666;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.footer-warning {
    font-size: 12px !important;
    color: #555 !important;
    background: rgba(255,255,255,0.05);
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
}

/* ─────────────────────────────────────────────────────────────────
   RESPONSIVE - TABLET
   ───────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .ilanlar-grid {
        gap: 20px;
    }
    
    .ilan-image {
        height: 200px;
    }
    
    .ilan-content {
        padding: 50px 50px;
    }
    
    .ilan-content h1 {
        font-size: 36px;
    }
    
    .galeri-main {
        height: 500px;
    }
}

/* ─────────────────────────────────────────────────────────────────
   RESPONSIVE - MOBILE
   ───────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-top {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .brand-text {
        font-size: 22px;
    }
    
    .header-ilan-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .header-slogan {
        font-size: 11px;
        text-align: center;
    }
    
    .ilanlar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .ilan-image {
        height: 150px;
    }
    
    .ilan-info {
        padding: 12px;
    }
    
    .ilan-info h3 {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .ilan-detay {
        font-size: 12px;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .ilan-stats {
        padding-top: 10px;
    }
    
    .tiklanma {
        font-size: 11px;
    }
    
    .age-modal-content {
        padding: 40px 30px;
    }
    
    .age-modal-content h2 {
        font-size: 22px;
    }
    
    .age-buttons button {
        padding: 16px 25px;
        font-size: 15px;
    }
    
    /* İlan Detay Mobil */
    .galeri-main {
        height: 350px;
    }
    
    .ilan-content {
        padding: 35px 25px;
    }
    
    .ilan-content h1 {
        font-size: 28px;
    }
    
    .ilan-aciklama {
        font-size: 16px;
        padding: 25px;
    }
    
    .whatsapp-btn {
        width: 100%;
        justify-content: center;
        padding: 18px 30px;
        font-size: 16px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 30px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    main {
        padding: 20px 0;
    }
    
    .header-top {
        gap: 10px;
    }
    
    .brand-text {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    .header-ilan-btn {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .ilanlar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .ilan-image {
        height: 130px;
    }
    
    .ilan-info {
        padding: 10px;
    }
    
    .ilan-info h3 {
        font-size: 13px;
    }
    
    .ilan-detay {
        font-size: 11px;
        -webkit-line-clamp: 2;
    }
    
    .tiklanma {
        font-size: 10px;
    }
    
    .galeri-main {
        height: 280px;
    }
    
    .galeri-thumb {
        width: 70px;
        height: 70px;
    }
    
    .ilan-content h1 {
        font-size: 24px;
    }
    
    .ilan-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .back-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 26px;
        bottom: 15px;
        right: 15px;
    }
}

/* ─────────────────────────────────────────────────────────────────
   İSTANBUL İLÇE SEO BÖLÜMÜ
   ───────────────────────────────────────────────────────────────── */
.seo-bolumu {
    margin-top: 60px;
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.seo-bolumu h2 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.seo-bolumu h3 {
    font-size: 20px;
    color: #333;
    margin: 30px 0 15px;
    font-weight: 600;
}

.seo-bolumu h4 {
    font-size: 18px;
    color: #e91e63;
    margin-bottom: 15px;
    font-weight: 600;
}

.ilce-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.ilce-link {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #e91e63, #c2185b);
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ilce-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

.mahalle-info {
    text-align: center;
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
}

.mahalle-toggle {
    text-align: center;
    margin-bottom: 20px;
}

.btn-toggle {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #e91e63;
    border: 2px solid #e91e63;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-toggle:hover {
    background: #e91e63;
    color: #fff;
}

.btn-toggle i {
    margin-right: 8px;
}

.mahalle-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    max-height: 400px;
    overflow-y: auto;
    padding: 15px;
    background: #fafafa;
    border-radius: 12px;
    margin-top: 15px;
}

.mahalle-link {
    display: inline-block;
    padding: 5px 10px;
    background: #fff;
    color: #e91e63;
    text-decoration: none;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid #e91e63;
    transition: all 0.3s ease;
}

.mahalle-link:hover {
    background: #e91e63;
    color: #fff;
}

.seo-text {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.seo-text p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.seo-text strong {
    color: #e91e63;
}

/* SEO Bölümü Responsive */
@media (max-width: 768px) {
    .seo-bolumu {
        padding: 25px 20px;
        margin-top: 40px;
    }
    
    .seo-bolumu h2 {
        font-size: 20px;
    }
    
    .seo-bolumu h3 {
        font-size: 17px;
    }
    
    .ilce-link {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .mahalle-link {
        padding: 5px 10px;
        font-size: 10px;
    }
    
    .seo-text p {
        font-size: 13px;
    }
}

/* ─────────────────────────────────────────────────────────────────
   SCROLLBAR STİLLERİ
   ───────────────────────────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
    background: #e91e63;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c2185b;
}

/* Selection */
::selection {
    background: #e91e63;
    color: #fff;
}

/* ─────────────────────────────────────────────────────────────────
   ANİMASYONLAR
   ───────────────────────────────────────────────────────────────── */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ilan-card {
    animation: fadeIn 0.5s ease forwards;
}

.ilan-card:nth-child(1) { animation-delay: 0.1s; }
.ilan-card:nth-child(2) { animation-delay: 0.2s; }
.ilan-card:nth-child(3) { animation-delay: 0.3s; }
.ilan-card:nth-child(4) { animation-delay: 0.4s; }
.ilan-card:nth-child(5) { animation-delay: 0.5s; }
.ilan-card:nth-child(6) { animation-delay: 0.6s; }
