/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #0f0f0f;
    --secondary-black: #1a1a1a;
    --accent-red: #ff6b35;
    --light-red: #ff8c42;
    --accent-blue: #4a90e2;
    --accent-green: #2ecc71;
    --white: #ffffff;
    --gray: #8b8b8b;
    --light-gray: #f3f4f6;
    --border: #2a2a2a;
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --gradient-secondary: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    --shadow-primary: 0 10px 30px rgba(255, 107, 53, 0.3);
    --shadow-secondary: 0 5px 15px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

/* Bölge Seçim Section */
.region-selection {
    padding: 6rem 0;
    background: var(--dark-bg);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.selection-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.selection-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.selection-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.selection-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-select {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--secondary-black);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.form-select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.search-button, .show-all-button {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 180px;
    justify-content: center;
}

.search-button {
    background: linear-gradient(135deg, var(--primary-orange), #e94e1b);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.search-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.search-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.show-all-button {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.show-all-button:hover {
    background: var(--white);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* Mobil uyumluluk - Bölge Seçimi */
@media (max-width: 768px) {
    .region-selection .selection-title {
        font-size: 2rem;
    }
    
    .region-selection .selection-form {
        padding: 1.5rem;
    }
    
    .region-selection .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .region-selection .form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .region-selection .search-button, 
    .region-selection .show-all-button {
        width: 100%;
        max-width: 280px;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--primary-black);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid var(--accent-red);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.logo:hover {
    text-decoration: none;
    color: inherit;
    transform: scale(1.02);
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.logo-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.5);
}

.logo h1 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    from {
        text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 107, 53, 0.6);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.admin-link {
    background: var(--accent-red);
    padding: 8px 16px;
    border-radius: 6px;
    color: var(--white) !important;
}

.admin-link:hover {
    background: var(--light-red);
    color: var(--white) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Top İlan Banner */
.top-ilan-banner {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    padding: 1.5rem 0 1rem 0;
    position: relative;
    width: 100%;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    margin-top: 70px;
}

.top-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-title-wrapper {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    margin-bottom: 0 !important;
}

.banner-title-text {
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1000 !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;
}

/* Mobil için küçük font */
@media (max-width: 768px) {
    .banner-title-text {
        font-size: 1.1rem !important;
        white-space: normal !important;
    }
}

@media (max-width: 480px) {
    .banner-title-text {
        font-size: 0.95rem !important;
    }
}


.top-banner-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.top-banner-button:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #128c7e 0%, #0d6b5f 100%);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    color: var(--white);
}

.top-banner-button i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.top-banner-button:hover i {
    transform: scale(1.1);
}

/* Mobil Banner Responsive */
@media (max-width: 768px) {
    .top-ilan-banner {
        padding: 1.5rem 0 1rem 0;
        margin-top: 85px;
    }
    
    .top-banner-content {
        gap: 0.8rem;
        padding: 0 15px;
    }
    
    .top-banner-button {
        padding: 10px 18px;
        font-size: 0.85rem;
        gap: 8px;
    }
    
    .hero {
        padding-top: 100px;
    }
}

@media (max-width: 480px) {
    .top-ilan-banner {
        padding: 1.2rem 0 1rem 0;
        margin-top: 80px;
    }
    
    .top-banner-content {
        gap: 0.6rem;
        padding: 0 10px;
    }
    
    .top-banner-button {
        padding: 8px 16px;
        font-size: 0.8rem;
        gap: 6px;
        white-space: nowrap;
    }
    
    .hero {
        padding-top: 90px;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 50%, #0a0a0a 100%);
    padding-top: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(74, 144, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Arka Plan İlan Loop - Sonsuz Kesintisiz Animasyon */
.background-ilan-loop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.ilan-loop-container {
    display: flex;
    animation: ilanLoopInfinite 60s linear infinite;
    gap: 3rem;
    padding: 3rem 0;
    align-items: center;
    width: max-content;
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

.ilan-loop-item {
    flex-shrink: 0;
    width: 380px;
    height: 280px;
    background: var(--primary-black);
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0.9;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(255, 107, 53, 0.1);
    will-change: transform, opacity;
    transform: translateZ(0);
    pointer-events: none; /* Tıklanabilirliği devre dışı bırak */
}

.ilan-loop-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    animation: rotate 4s linear infinite;
    z-index: -1;
}

.ilan-loop-item::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 15px;
    z-index: -1;
}

.ilan-loop-item:hover {
    opacity: 1;
    transform: scale(1.03);
    background: var(--primary-black);
    border-color: rgba(255, 107, 53, 0.8);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.4),
        0 4px 12px rgba(255, 107, 53, 0.2);
    z-index: 10;
}

.ilan-loop-image {
    position: relative;
    width: 100%;
    height: 180px;
    background: var(--secondary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.ilan-loop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: none;
    z-index: 2;
    position: relative;
}

.ilan-loop-item:hover .ilan-loop-image img {
    transform: scale(1.05);
    filter: none;
}

/* Arka plan loop overlay */
.ilan-loop-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1rem;
    color: var(--white);
    z-index: 3;
}

.ilan-loop-name {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.3px;
}

.ilan-loop-age {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(255, 107, 53, 0.9);
    padding: 0.25rem 0.6rem;
    border-radius: 15px;
    display: inline-block;
    border: 1px solid rgba(255, 107, 53, 0.6);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.ilan-loop-item:hover .ilan-loop-age {
    background: rgba(255, 107, 53, 1);
    transform: scale(1.05);
}

.ilan-loop-item:hover .ilan-loop-image {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(255, 107, 53, 0.8);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.ilan-loop-content {
    padding: 1.2rem;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-black);
    border-radius: 0 0 20px 20px;
}

.ilan-loop-content p {
    color: var(--white);
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: center;
    margin: 0;
    opacity: 0.95;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.ilan-loop-description {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* VIP Badge Sistemi */
.ilan-loop-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    color: var(--white);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 10;
    animation: pulse 2s infinite;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.ilan-loop-item:hover .ilan-loop-badge {
    transform: scale(1.1);
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* VIP Seviyeleri */
.ilan-loop-badge.vip {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff6b35 100%);
    box-shadow: 
        0 4px 12px rgba(255, 107, 53, 0.4),
        0 0 20px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.6);
}

.ilan-loop-badge.premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    box-shadow: 
        0 4px 12px rgba(102, 126, 234, 0.4),
        0 0 20px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.6);
}

.ilan-loop-badge.plat {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 50%, #4facfe 100%);
    box-shadow: 
        0 4px 12px rgba(79, 172, 254, 0.4),
        0 0 20px rgba(79, 172, 254, 0.2);
    border-color: rgba(79, 172, 254, 0.6);
}

.ilan-loop-badge.gold {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #f093fb 100%);
    box-shadow: 
        0 4px 12px rgba(240, 147, 251, 0.4),
        0 0 20px rgba(240, 147, 251, 0.2);
    border-color: rgba(240, 147, 251, 0.6);
}

.ilan-loop-badge.bronz {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 50%, #4ecdc4 100%);
    box-shadow: 
        0 4px 12px rgba(78, 205, 196, 0.4),
        0 0 20px rgba(78, 205, 196, 0.2);
    border-color: rgba(78, 205, 196, 0.6);
}

/* Ana sayfa ilan kartları için VIP badge'leri */
.ilan-card .vip-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 20;
}

.ilan-card .vip-badge.vip {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.4);
}

.ilan-card .vip-badge.premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.4);
}

.ilan-card .vip-badge.plat {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 3px 10px rgba(79, 172, 254, 0.4);
}

.ilan-card .vip-badge.gold {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 3px 10px rgba(240, 147, 251, 0.4);
}

.ilan-card .vip-badge.bronz {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    box-shadow: 0 3px 10px rgba(78, 205, 196, 0.4);
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Sonsuz Kesintisiz Animasyon Keyframes */
@keyframes ilanLoopInfinite {
    0% {
        transform: translateX(100vw);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes ilanLoopInfiniteReverse {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100vw);
    }
}

/* İkinci sıra için ters yönde sonsuz animasyon */
.ilan-loop-container.reverse {
    animation: ilanLoopInfiniteReverse 80s linear infinite;
    margin-top: 250px;
}

/* Üçüncü sıra için farklı hız sonsuz animasyon */
.ilan-loop-container.slow {
    animation: ilanLoopInfinite 100s linear infinite;
    margin-top: 500px;
}

/* Dördüncü sıra - çok yavaş sonsuz animasyon */
.ilan-loop-container.very-slow {
    animation: ilanLoopInfiniteReverse 120s linear infinite;
    margin-top: 750px;
}

/* Mobil için responsive - Arka plan loop */
@media (max-width: 768px) {
    .background-ilan-loop {
        height: 100%;
        overflow-x: hidden;
    }
    
    .ilan-loop-container {
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .ilan-loop-item {
        width: 280px;
        height: 200px;
        padding: 0;
    }
    
    .ilan-loop-image {
        height: 140px;
    }
    
    .ilan-loop-name {
        font-size: 0.95rem;
    }
    
    .ilan-loop-age {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
    
    .ilan-loop-content {
        padding: 0.8rem;
    }
    
    .ilan-loop-content p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .ilan-loop-badge {
        top: 6px;
        right: 6px;
        padding: 0.25rem 0.6rem;
        font-size: 0.65rem;
    }
    
    /* Container margins mobilde daha küçük */
    .ilan-loop-container.reverse {
        margin-top: 200px;
    }
    
    .ilan-loop-container.slow {
        margin-top: 400px;
    }
    
    .ilan-loop-container.very-slow {
        margin-top: 600px;
    }
}

/* Çok küçük ekranlar için arka plan loop optimizasyonu */
@media (max-width: 480px) {
    .ilan-loop-container {
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    
    .ilan-loop-item {
        width: 240px;
        height: 180px;
    }
    
    .ilan-loop-image {
        height: 120px;
    }
    
    .ilan-loop-name {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
    }
    
    .ilan-loop-age {
        font-size: 0.7rem;
        padding: 0.15rem 0.5rem;
    }
    
    .ilan-loop-content {
        padding: 0.6rem;
    }
    
    .ilan-loop-content p {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .ilan-loop-badge {
        top: 4px;
        right: 4px;
        padding: 0.2rem 0.5rem;
        font-size: 0.6rem;
    }
    
    /* Container margins çok küçük ekranlarda daha da küçük */
    .ilan-loop-container.reverse {
        margin-top: 150px;
    }
    
    .ilan-loop-container.slow {
        margin-top: 300px;
    }
    
    .ilan-loop-container.very-slow {
        margin-top: 450px;
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid var(--accent-red);
    padding: 8px 16px;
    border-radius: 25px;
    color: var(--accent-red);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.1;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--gray);
    line-height: 1.6;
    animation: fadeInUp 1s ease;
}

/* İlan Verme Afişi */
.ilan-verme-afis {
    background: rgba(255, 107, 53, 0.15);
    border: 2px solid var(--white);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin: 1rem 0 2rem 0;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
    animation: fadeInUp 0.8s ease;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(10px);
}

.afis-content {
    position: relative;
    z-index: 2;
}

.afis-main-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
}

.afis-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    text-transform: uppercase;
}

.afis-button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #128c7e 0%, #0d6b5f 100%);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    text-decoration: none;
    color: var(--white);
}

.afis-button i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.afis-button:hover i {
    transform: scale(1.1);
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .ilan-verme-afis {
        padding: 0.8rem 1.2rem;
        margin: 0.8rem 0 1.5rem 0;
        max-width: 500px;
    }
    
    .afis-main-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }
    
    .afis-button {
        padding: 8px 16px;
        font-size: 0.8rem;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .ilan-verme-afis {
        padding: 0.7rem 1rem;
        margin: 0.5rem 0 1.2rem 0;
        max-width: 400px;
    }
    
    .afis-main-title {
        font-size: 1.3rem;
        letter-spacing: 0.5px;
        margin-bottom: 0.8rem;
    }
    
    .afis-button {
        padding: 7px 14px;
        font-size: 0.75rem;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1.2s ease;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-primary);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-button.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button.primary:hover::before {
    left: 100%;
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--accent-red);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.cta-button.primary:hover {
    background: var(--light-red);
}

.cta-button.secondary:hover {
    background: var(--accent-red);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    animation: fadeInUp 1.4s ease;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-red);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-red), var(--light-red));
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 20%;
    animation-delay: 4s;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--white);
}

/* İlanlar Section */
.ilanlar {
    padding: 5rem 0;
    background: var(--secondary-black);
}

.ilanlar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.ilan-card {
    background: var(--primary-black);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.ilan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 16px;
}

.ilan-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-red);
    box-shadow: var(--shadow-primary);
}

.ilan-card:hover::before {
    opacity: 0.1;
}

/* İlan kartı resim üzeri overlay - İsim ve yaş bilgisi */
.ilan-image {
    position: relative;
    width: 100%;
    height: 250px;
    background: var(--secondary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ilan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    /* Telefon fotoğrafları için özel ayarlar */
    max-width: 100%;
    max-height: 100%;
}

.ilan-image:hover img {
    transform: scale(1.05);
}

/* Çoklu Fotoğraf Slider Sistemi */
.image-slider {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.slider-container {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slider-slide {
    flex: 0 0 100%;
    position: relative;
    overflow: hidden;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    /* Telefon fotoğrafları için özel ayarlar */
    max-width: 100%;
    max-height: 100%;
}

.slider-slide:hover img {
    transform: scale(1.05);
}

/* Slider Kontrolleri */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 10;
}

.image-slider:hover .slider-controls {
    opacity: 1;
}

.slider-controls:hover {
    background: rgba(255, 107, 53, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

/* Slider Dots (İndikatörler) */
.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.slider-dot.active {
    background: var(--accent-red);
    transform: scale(1.2);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Fotoğraf Sayısı Göstergesi */
.image-counter {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

/* Tek fotoğraf için basit görünüm */
.single-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

/* İlan Detay Modal Fotoğrafları */
.ilan-detail-images {
    position: relative;
    width: 100%;
    height: 400px;
    background: var(--secondary-black);
    overflow: hidden;
}

.ilan-detail-images .single-image,
.ilan-detail-images .image-slider {
    height: 100%;
    border-radius: 0;
}

.ilan-detail-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Telefon fotoğrafları için özel ayarlar */
    max-width: 100%;
    max-height: 100%;
}

.single-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    /* Telefon fotoğrafları için özel ayarlar */
    max-width: 100%;
    max-height: 100%;
}

.single-image:hover img {
    transform: scale(1.05);
}

/* Mobil responsive */
@media (max-width: 768px) {
    .slider-controls {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .slider-prev {
        left: 5px;
    }
    
    .slider-next {
        right: 5px;
    }
    
    .slider-dots {
        bottom: 8px;
        gap: 4px;
    }
    
    .slider-dot {
        width: 6px;
        height: 6px;
    }
    
    .image-counter {
        top: 8px;
        right: 8px;
        padding: 3px 6px;
        font-size: 0.7rem;
    }
    
    /* İlan kartları mobilde daha küçük */
    .ilan-image,
    .image-slider,
    .single-image {
        height: 200px;
    }
    
    /* Modal fotoğrafları mobilde daha küçük */
    .ilan-detail-images {
        height: 300px;
    }
}

/* Resim üzeri overlay */
.ilan-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1.5rem;
    color: var(--white);
    z-index: 2;
}

.ilan-name {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.ilan-age {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .ilan-overlay {
        padding: 1rem;
    }
    
    .ilan-name {
        font-size: 1.1rem;
    }
    
    .ilan-age {
        font-size: 0.9rem;
        padding: 0.2rem 0.6rem;
    }
}

.ilan-image {
    width: 100%;
    height: 250px;
    background: var(--secondary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.ilan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.ilan-image img[style*="display: none"] + .image-placeholder {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: var(--secondary-black);
    color: var(--gray);
    font-size: 1rem;
}

.ilan-image::before {
    content: '';
    position: absolute;
    color: var(--gray);
    font-size: 1rem;
}

.ilan-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ilan-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.ilan-description {
    color: var(--gray);
    flex: 1;
}



.whatsapp-button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.whatsapp-button:hover::before {
    left: 100%;
}

.whatsapp-button:hover {
    background: linear-gradient(135deg, #128c7e 0%, #0d6b5f 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-button:hover i {
    transform: scale(1.1);
    animation: whatsappPulse 0.6s ease-in-out;
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1.1); }
    50% { transform: scale(1.3); }
}

/* İletişim Section */
.iletisim {
    padding: 5rem 0;
    background: var(--primary-black);
}

.iletisim-content {
    max-width: 800px;
    margin: 0 auto;
}

.iletisim-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.iletisim-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--secondary-black);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.iletisim-item i {
    font-size: 2rem;
    color: var(--accent-red);
    width: 50px;
}

.iletisim-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.iletisim-item p {
    color: var(--gray);
}

/* Footer */
.footer {
    background: var(--primary-black);
    border-top: 2px solid var(--accent-red);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-red);
}

.footer-section p {
    color: var(--gray);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-red);
}


.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        border-top: 2px solid var(--accent-red);
        z-index: 9999;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-stats {
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }

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

    .ilanlar-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    /* İlan kartları mobilde daha kompakt */
    .ilan-card {
        margin-bottom: 1rem;
    }
    
    /* Modal mobilde tam ekran */
    .ilan-detail-modal {
        padding: 1rem 0 !important;
    }
    
    .ilan-detail-content {
        margin: 0 1rem !important;
        max-width: calc(100% - 2rem) !important;
    }

    .iletisim-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Hero section mobile fixes */
    .hero {
        padding-top: 120px;
        min-height: 90vh;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .decoration-circle {
        display: none;
    }

    .logo h1 {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .logo-icon {
        width: 30px;
        height: 30px;
    }

    .ilan-card {
        margin: 0 5px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
    
    .hero {
        padding-top: 110px;
        min-height: 85vh;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 80px;
}

/* Ana Sayfa Merkezi Bölge Seçimi */
.hero-selection-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    text-align: center;
    animation: fadeInUp 1.2s ease;
    position: relative;
    z-index: 10;
}

/* Bölge Seçim Çerçevesi - Daha Hafif */
.hero-selection-main::before {
    content: '';
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 4rem);
    max-width: 800px;
    height: calc(100% + 6rem);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.selection-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.selection-form-main {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    max-width: 600px;
    width: 100%;
}

.form-row-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.form-group-main {
    display: flex;
    flex-direction: column;
}

.form-select-main {
    padding: 1.2rem 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-select-main:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.5);
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-2px);
}

.form-select-main:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(0, 0, 0, 0.3);
}

.form-actions-main {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.search-button-main, .show-all-button-main {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 200px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-button-main {
    background: linear-gradient(135deg, var(--primary-orange), #e94e1b);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.search-button-main:hover:not(:disabled) {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

.search-button-main:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.show-all-button-main {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.show-all-button-main:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

/* Mobil Uyumluluk - Ana Bölge Seçimi */
@media (max-width: 768px) {
    .hero-selection-main {
        min-height: 60vh;
        padding: 2rem 0;
    }
    
    .hero-selection-main .selection-main-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
        line-height: 1.2;
    }
    
    .hero-selection-main .selection-form-main {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        border-radius: 20px;
        max-width: 500px;
    }
    
    .hero-selection-main .form-row-main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .hero-selection-main .form-select-main {
        padding: 1rem 1.2rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .hero-selection-main .form-actions-main {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-selection-main .search-button-main, 
    .hero-selection-main .show-all-button-main {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: auto;
        border-radius: 25px;
    }
}

/* Bölge Seçim Butonları */
.region-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    position: relative;
    z-index: 2;
}

.region-button {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.region-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.region-button:hover::before {
    left: 100%;
}

.region-button:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--accent-red);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
}

.avrupa-button:hover {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.2), rgba(255, 255, 255, 0.1));
}

.anadolu-button:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 255, 255, 0.1));
}

.region-button-icon {
    font-size: 2.5rem;
    margin-right: 1.5rem;
    color: var(--accent-red);
    flex-shrink: 0;
}

.avrupa-button .region-button-icon {
    color: #4a90e2;
}

.anadolu-button .region-button-icon {
    color: var(--accent-red);
}

.region-button-content {
    flex: 1;
}

.region-button-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.region-button-content p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

.region-button-arrow {
    font-size: 1.5rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.region-button:hover .region-button-arrow {
    opacity: 1;
    transform: translateX(10px);
}

.all-ilanlar-link {
    text-align: center;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-selection-main::before {
        top: -2rem;
        width: calc(100% + 2rem);
        height: calc(100% + 4rem);
        border-radius: 25px;
    }
    
    .region-buttons-container {
        gap: 1rem;
        max-width: 500px;
    }
    
    .region-button {
        padding: 1.5rem;
    }
    
    .region-button-icon {
        font-size: 2rem;
        margin-right: 1rem;
    }
    
    .region-button-content h3 {
        font-size: 1.2rem;
    }
    
    .region-button-content p {
        font-size: 0.9rem;
    }
    
    .region-button-arrow {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-selection-main {
        min-height: 55vh;
        padding: 1.5rem 0;
    }
    
    .hero-selection-main::before {
        top: -1.5rem;
        width: calc(100% + 1rem);
        height: calc(100% + 3rem);
        border-radius: 20px;
        backdrop-filter: blur(15px);
    }
    
    .hero-selection-main .selection-main-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
        line-height: 1.1;
    }
    
    .region-buttons-container {
        gap: 1rem;
        margin: 0 1rem 2rem 1rem;
        max-width: 400px;
    }
    
    .region-button {
        padding: 1.2rem;
        border-radius: 15px;
    }
    
    .region-button-icon {
        font-size: 1.8rem;
        margin-right: 0.8rem;
    }
    
    .region-button-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .region-button-content p {
        font-size: 0.85rem;
    }
    
    .region-button-arrow {
        font-size: 1rem;
    }
    
    /* Çok küçük ekranlarda fotoğraflar daha da küçük */
    .ilan-image,
    .image-slider,
    .single-image {
        height: 180px;
    }
    
    /* Modal fotoğrafları çok küçük ekranlarda */
    .ilan-detail-images {
        height: 250px;
    }
    
    /* Slider kontrolleri daha küçük */
    .slider-controls {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    /* Modal çok küçük ekranlarda daha kompakt */
    .ilan-detail-content {
        margin: 0 0.5rem !important;
        max-width: calc(100% - 1rem) !important;
    }
}

