/* single-property.css - Single property/transport detail page styles */

/* =============================================
   SINGLE PROPERTY
   ============================================= */
.single-property .main-image img {
    float: none;
}

.single-property .main-content h4 {
    font-size: 25px;
    margin-top: 25px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.single-property .main-content span.category {
    background-color: #fbd9cf;
    font-weight: 500;
    border-radius: 5px;
    font-size: 14px;
    color: #1e1e1e;
    padding: 5px 12px;
    display: inline-block;
    margin-top: 40px;
}

.single-property .accordion {
    margin-top: 60px;
    margin-left: 0px;
    margin-right: 0px;
    --bs-accordion-border-radius: 10px;
    --bs-accordion-inner-border-radius: 10px;
    --bs-accordion-bg: #fafafa;
    --bs-accordion-border-color: none;
    border: none !important;
}

.single-property .accordion-header {
    border-bottom: 1px solid #eaeaea;
}

.single-property .accordion-button {
    box-shadow: none;
    font-size: 17px;
    font-weight: 500;
    color: #1e1e1e;
}

.single-property .accordion-button:not(.collapsed) {
    color: #f35525;
    background-color: #fafafa;
    outline: none;
}

.single-property .accordion-button::after {
    display: none;
}

.single-property #headingThree {
    border-bottom: none;
}

.single-property .accordion-item:last-of-type .accordion-collapse {
    border-top: 1px solid #eaeaea;
}

.single-property .info-table {
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    padding: 35px 30px;
    margin-left: 60px;
}

.single-property .info-table ul li {
    display: block;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #eee;
}

.single-property .info-table ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.single-property .info-table ul li img {
    float: left;
    margin-right: 25px;
}

.single-property .info-table ul li h4 {
    font-size: 22px;
    font-weight: 600;
}

.single-property .info-table ul li h4 span {
    font-size: 15px;
    color: #aaa;
    font-weight: 400;
}

/* =============================================
   IMAGE CONTAINER AND OVERLAY
   ============================================= */
.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
}

.image-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.transport-item .item h4 {
    height: 50px;
}

.image-overlay .category {
    background: linear-gradient(135deg, #f35525, #ff7849);
    color: #fff;
    font-weight: 600;
    border-radius: 25px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    box-shadow: 0 4px 15px rgba(243, 85, 37, 0.3);
    backdrop-filter: blur(10px);
}

/* =============================================
   FEATURE ITEMS
   ============================================= */
.features-grid {
    margin: 25px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 12px 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(243, 85, 37, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 85, 37, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    background: rgba(243, 85, 37, 0.05);
    transform: translateY(-2px);
    border-color: rgba(243, 85, 37, 0.2);
}

.feature-item .transport-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    flex-shrink: 0;
}

.feature-item .feature-label {
    font-size: 11px;
    color: #666;
    flex-grow: 1;
    font-weight: 500;
}

.feature-item .status-check,
.feature-item .status-x {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-left: auto;
}

/* =============================================
   ENHANCED INFO TABLE
   ============================================= */
.info-table h4 {
    color: #f35525 !important;
}

.info-table ul li {
    transition: all 0.3s ease;
}
