body {
    font-family: Arial, sans-serif;
}

.filter-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    border: 1px solid rgba(254, 161, 22, 0.1);
}

.filter-section h4 {
    color: #01206f;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.filter-section .form-group {
    margin-bottom: 0;
}

.filter-section .form-group select {
    border-radius: 12px;
    background: linear-gradient(135deg, #fea116 0%, #ff8c00 100%);
    color: #ffffff;
    border: 2px solid transparent;
    padding: 12px 15px;
    height: auto;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(254, 161, 22, 0.2);
}

.filter-section .form-group select:focus {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #01206f;
    border-color: #fea116;
    outline: none;
    box-shadow: 0 0 0 3px rgba(254, 161, 22, 0.2);
    transform: translateY(-2px);
}

.filter-section .form-group select:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 161, 22, 0.3);
}

.filter-section .form-group select option {
    background: #ffffff;
    color: #01206f;
    padding: 10px;
}

.room-container {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    padding: 0;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    border: none;
    position: relative;
}

.room-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.room-container.active {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(254, 161, 22, 0.3);
    border: 2px solid #fea116;
}

.room-container .col-md-4:first-child {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.cover-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.4s ease;
}

.room-container:hover .cover-image {
    transform: scale(1.05);
}

.room-container .col-md-4:first-child::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(254, 161, 22, 0.1), rgba(1, 32, 111, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-container:hover .col-md-4:first-child::after {
    opacity: 1;
}

.room-details {
    display: none;
    padding: 10px;
}

.room-category {
    margin-bottom: 10px;
}

.room-category img {
    max-width: 100%;
    height: 200px;
    margin-top: 5px;
}


.business-details {
    display: none;
    padding: 10px;
}

.business-category {
    margin-bottom: 10px;
}

.business-category img {
    max-width: 100%;
    height: auto;
    margin-top: 5px;
}


.summary-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.summary-details h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #01206f;
    margin-bottom: 12px;
    line-height: 1.2;
}

.summary-details p {
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

.summary-details p:first-of-type {
    color: #333;
    font-style: italic;
    margin-bottom: 15px;
}

/* Fiyat özel stili */
.summary-details p:nth-of-type(2) {
    background: linear-gradient(45deg, #fea116, #ff8c00);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    display: inline-block;
    font-weight: 600;
    font-size: 1rem;
    margin: 10px 0;
    box-shadow: 0 3px 10px rgba(254, 161, 22, 0.3);
}

/* Konum özel stili */
.summary-details p:nth-of-type(3) {
    background: rgba(1, 32, 111, 0.1);
    color: #01206f;
    padding: 6px 12px;
    border-radius: 15px;
    display: inline-block;
    font-size: 0.9rem;
    margin-top: 8px;
    border-left: 3px solid #fea116;
}


/* Harita bölümü styling */
.room-container .col-md-4:last-child {
    padding: 15px;
    background: linear-gradient(135deg, #f1f3f4 0%, #e8eaed 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-container .col-md-4:last-child iframe {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.room-container:hover .col-md-4:last-child iframe {
    transform: scale(1.02);
}

/* Detay bölümü iyileştirmeleri */
.room-details {
    background: linear-gradient(135deg, #f8fafe 0%, #ffffff 100%);
    border-radius: 0 0 15px 15px;
    margin-top: -15px;
    padding: 40px 25px;
    box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.03);
    border-top: 3px solid #fea116;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Resim galerisi bölümü */
.room-category:first-child {
    margin-bottom: 35px;
}

.room-category:first-child h3 {
    color: #01206f;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.room-category:first-child h3::before {
    content: '📸';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

.room-category:first-child h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20px;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #fea116, #ff8c00);
    border-radius: 2px;
}

/* Resim galerisi grid */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 180px);
    gap: 12px;
    margin-top: 25px;
    padding: 15px;
    background: rgba(248, 249, 250, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(254, 161, 22, 0.1);
}

/* Ana resim - ilk resim büyük */
.room-category img:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

/* Diğer resimler */
.room-category img:not(:first-child) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Hover efektleri */
.room-category img:first-child:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.room-category img:not(:first-child):hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Resim overlay efekti */
.room-category img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(254, 161, 22, 0.1), rgba(1, 32, 111, 0.1));
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.room-category img:hover::after {
    opacity: 1;
}

/* Resim numaraları */
.room-category img:not(:first-child)::before {
    content: attr(data-index);
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(254, 161, 22, 0.9);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

/* Alt bölüm container */
.details-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 0.8fr;
    gap: 25px;
    margin-top: 30px;
}

/* Genel kategori başlıkları */
.room-category h3 {
    color: #01206f;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 18px;
    padding: 12px 18px;
    background: linear-gradient(135deg, rgba(254, 161, 22, 0.1) 0%, rgba(254, 161, 22, 0.05) 100%);
    border-radius: 8px;
    border-left: 4px solid #fea116;
    position: relative;
}

/* Detaylı açıklama */
.detail-description {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(254, 161, 22, 0.1);
}

.detail-description h3::before {
    content: '📝';
    margin-right: 8px;
}

.detail-description p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Özellikler */
.features-section {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(254, 161, 22, 0.1);
}

.features-section h3::before {
    content: '⭐';
    margin-right: 8px;
}

.room-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.room-category li {
    background: linear-gradient(135deg, rgba(254, 161, 22, 0.1) 0%, rgba(254, 161, 22, 0.05) 100%);
    color: #01206f;
    padding: 12px 16px;
    margin: 8px 0;
    border-radius: 25px;
    border-left: 3px solid #fea116;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.room-category li::before {
    content: '✓';
    color: #fea116;
    font-weight: bold;
    margin-right: 8px;
}

.room-category li:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, rgba(254, 161, 22, 0.15) 0%, rgba(254, 161, 22, 0.08) 100%);
    box-shadow: 0 3px 10px rgba(254, 161, 22, 0.2);
}

/* Rezervasyon durumu */
.availability-section {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(40, 167, 69, 0.2);
    text-align: center;
}

.availability-section h3 {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 15px !important;
}

.availability-section h3::before {
    content: '📅';
    margin-right: 8px;
}

.availability-section p {
    color: #155724;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    border: 2px solid #28a745;
}

/* Konum bilgisi */
.location-section {
    background: linear-gradient(135deg, rgba(1, 32, 111, 0.1) 0%, rgba(1, 32, 111, 0.05) 100%);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(1, 32, 111, 0.1);
    text-align: center;
}

.location-section h3 {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 15px !important;
}

.location-section h3::before {
    content: '📍';
    margin-right: 8px;
}

.location-section p {
    color: #01206f;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    border: 2px solid #01206f;
}

/* Responsive Design */
@media (max-width: 768px) {
    .room-container {
        margin: 15px 0;
    }
    
    .room-container .col-md-4 {
        padding: 0 !important;
    }

    .cover-image {
        height: 200px;
    }

    .summary-details {
        padding: 20px 15px;
    }
    
    .summary-details h2 {
        font-size: 1.3rem;
    }

    .room-container .col-md-4:last-child {
        padding: 15px;
    }
    
    .room-details {
        padding: 25px 15px;
    }
    
    /* Detay bölümü mobile */
    .details-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 140px 100px 100px;
        gap: 8px;
        padding: 12px;
    }
    
    .room-category img:first-child {
        grid-column: 1 / 3;
        grid-row: 1;
    }
    
    .room-category img:not(:first-child) {
        border-radius: 8px;
    }
    
    .detail-description,
    .features-section,
    .availability-section,
    .location-section {
        padding: 20px;
    }
    
    .room-category h3 {
        font-size: 1.1rem;
        padding: 10px 15px;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    /* Tablet için resim galerisi */
    .image-gallery {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 150px 120px;
        gap: 10px;
    }
    
    .details-container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .detail-description {
        grid-column: 1 / 3;
    }
}

@media (max-width: 576px) {
    .summary-details p:nth-of-type(2) {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    .summary-details p:nth-of-type(3) {
        font-size: 0.85rem;
        padding: 5px 10px;
    }
    
    /* Çok küçük ekranlar için */
    .image-gallery {
        grid-template-rows: 120px 80px 80px;
    }
}
