/* İSTEK İLANLAR ÖZEL CSS DOSYASI - ÇAKIŞMASIZ */

/* ========== İSTEK İLANLAR BREADCRUMB ========== */
.istek-breadcrumb {
    background-color: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.istek-breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.istek-breadcrumb__link {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s;
}

.istek-breadcrumb__link:hover {
    color: #dc3545;
}

.istek-breadcrumb__separator {
    color: #6c757d;
}

.istek-breadcrumb__active {
    color: #333;
    font-weight: 500;
}

/* ========== İSTEK HERO SECTION ========== */
.istek-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.istek-hero__content {
    max-width: 800px;
    margin: 0 auto;
}

.istek-hero__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.istek-hero__subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.istek-hero__stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.istek-stat {
    text-align: center;
}

.istek-stat__number {
    font-size: 42px;
    font-weight: 700;
    color: #ff6b6b;
}

.istek-stat__label {
    font-size: 16px;
    opacity: 0.9;
}

/* ========== İSTEK ANA İÇERİK ========== */
.istek-main {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.istek-main__grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.istek-main__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ========== İSTEK FİLTRELER ========== */
.istek-filters {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.istek-filters__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.istek-filters__title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
}

.istek-filters__new-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.istek-filters__new-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.istek-filters__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.istek-filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.istek-filter-group__label {
    font-size: 13px;
    color: #6c757d;
    font-weight: 500;
}

.istek-filter-group__select {
    padding: 10px 12px;
    border: 2px solid #e8ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    background-color: #f8f9fa;
    width: 100%;
    box-sizing: border-box;
}

.istek-filter-group__select:focus {
    outline: none;
    border-color: #dc3545;
    background-color: white;
}

/* ========== İSTEK KARTLARI ========== */
.istek-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.istek-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.istek-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.istek-card:hover::before {
    transform: scaleY(1);
}

.istek-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: rgba(220, 53, 69, 0.1);
}

.istek-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.istek-card__user {
    display: flex;
    gap: 15px;
}

.istek-card__avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
    flex-shrink: 0;
}

.istek-card__user-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.istek-card__user-name {
    font-size: 18px;
    color: #2c3e50;
    margin: 0;
}

.istek-card__user-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #6c757d;
}

.istek-card__user-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.istek-card__user-meta i {
    font-size: 12px;
}

.istek-card__badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.istek-badge {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.istek-badge--urgent {
    background: #dc3545;
    color: white;
}

.istek-badge--cash {
    background: #28a745;
    color: white;
}

.istek-badge--new {
    background: #ffc107;
    color: #333;
}

.istek-card__title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.istek-card__details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.istek-detail {
    text-align: center;
}

.istek-detail__label {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 5px;
}

.istek-detail__value {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.istek-detail__value--price {
    color: #dc3545;
}

.istek-card__description {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.istek-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e8ecef;
}

.istek-card__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.istek-tag {
    background: #e8f4fd;
    color: #0056b3;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
}

.istek-card__actions {
    display: flex;
    gap: 10px;
}

.istek-btn {
    padding: 10px 25px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.istek-btn--contact {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.istek-btn--contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.istek-btn--save {
    background: white;
    color: #6c757d;
    border: 2px solid #e8ecef;
}

.istek-btn--save:hover {
    border-color: #dc3545;
    color: #dc3545;
}

.istek-btn--saved {
    background-color: #28a745;
    color: white;
    border-color: #28a745;
}

/* ========== İSTEK SIDEBAR ========== */
.istek-sidebar {
    position: sticky;
    top: 90px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.istek-widget {
    background: white;
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.istek-widget__title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.istek-widget__text {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.istek-widget__btn {
    background: white;
    color: #ff9800;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.istek-widget__btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Hızlı Arama Form */
.istek-search-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.istek-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.istek-form-group__label {
    font-size: 13px;
    color: #6c757d;
    font-weight: 500;
}

.istek-form-group__select {
    padding: 9px 12px;
    border: 2px solid #e8ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.istek-form-group__select:focus {
    outline: none;
    border-color: #dc3545;
}

.istek-price-range {
    display: flex;
    gap: 8px;
    width: 100%;
}

.istek-price-range__input {
    flex: 1;
    min-width: 0;
    padding: 9px 10px;
    border: 2px solid #e8ecef;
    border-radius: 8px;
    font-size: 13px;
    transition: all 0.3s;
    box-sizing: border-box;
}

.istek-price-range__input::placeholder {
    font-size: 12px;
    color: #adb5bd;
}

.istek-price-range__input::-webkit-inner-spin-button,
.istek-price-range__input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.istek-price-range__input[type="number"] {
    -moz-appearance: textfield;
}

.istek-price-range__input:focus {
    outline: none;
    border-color: #dc3545;
}

.istek-search-form__submit {
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.istek-search-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

/* Popüler Aramalar */
.istek-popular-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.istek-popular-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
}

.istek-popular-item:hover {
    background: #fff3cd;
    transform: translateX(5px);
}

.istek-popular-item__text {
    font-size: 14px;
    color: #4a5568;
}

.istek-popular-item__count {
    background: #dc3545;
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

/* Premium Widget */
.istek-widget--premium {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: white;
    text-align: center;
}

.istek-widget--premium .istek-widget__title {
    color: white;
}

/* ========== İSTEK SAYFALAMA ========== */
.istek-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.istek-pagination__item {
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    background: white;
    color: #6c757d;
    border: 2px solid #e8ecef;
}

.istek-pagination__item:hover {
    border-color: #dc3545;
    color: #dc3545;
}

.istek-pagination__item--active {
    background: #dc3545;
    color: white;
    border: 2px solid #dc3545;
}

.istek-pagination__dots {
    color: #6c757d;
    padding: 0 5px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .istek-main__grid {
        grid-template-columns: 1fr 310px;
    }
    
    .istek-filters__row {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .istek-card__details {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .istek-main__grid {
        grid-template-columns: 1fr;
    }
    
    .istek-sidebar {
        position: static;
        margin-top: 30px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .istek-widget--premium {
        grid-column: span 2;
    }
    
    .istek-filters__row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .istek-hero__stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .istek-filters__header {
        flex-direction: column;
        gap: 15px;
    }
    
    .istek-filters__new-btn {
        width: 100%;
        justify-content: center;
    }
    
    .istek-filters__row {
        grid-template-columns: 1fr;
    }
    
    .istek-card__details {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .istek-card__footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .istek-card__actions {
        width: 100%;
    }
    
    .istek-btn {
        flex: 1;
    }
    
    .istek-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .istek-hero__title {
        font-size: 28px;
    }
    
    .istek-stat__number {
        font-size: 32px;
    }
    
    .istek-card {
        padding: 20px;
    }
    
    .istek-card__avatar {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .istek-card__title {
        font-size: 18px;
    }
    
    .istek-card__badges {
        position: static;
        margin-bottom: 10px;
    }
    
    .istek-pagination {
        flex-wrap: wrap;
    }
}