/* Service Pricing Cards Styling */
.service-cards-row {
    margin-top: 50px;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

.service-cards-row > [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}

.service-pricing-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.featured-card {
    border: 3px solid #ff8d1b;
    box-shadow: 0 15px 50px rgba(255, 141, 27, 0.2);
}

.featured-card:hover {
    box-shadow: 0 25px 70px rgba(255, 141, 27, 0.3);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #ff8d1b 0%, #E27712 100%);
    color: white;
    padding: 8px 40px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(255, 141, 27, 0.3);
    z-index: 10;
    letter-spacing: 1px;
}

.service-card-header {
    padding: 25px 35px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 3px solid #e9ecef;
}

.rent-up-header {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-bottom-color: #90caf9;
}

.management-header {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-bottom-color: #ffb74d;
}

.service-card-header .prosp-icon {
    max-width: 80px;
    margin-bottom: 20px;
}

.service-title {
    font-family: Raleway, sans-serif;
    font-size: 36px;
    font-weight: 800;
    margin: 0;
    color: #1f223e;
}

.service-subtitle {
    font-size: 17px;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.service-card-body {
    padding: 45px 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pricing-section {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 30px;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 15px;
}

.price-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 10px 0;
}

.currency {
    font-size: 32px;
    font-weight: 700;
    color: #1f223e;
    margin-right: 5px;
    margin-top: 10px;
}

.price {
    font-family: Raleway, sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: #1f223e;
    line-height: 1;
}

.price-percent {
    font-size: 48px;
    font-weight: 800;
    color: #1f223e;
    margin-left: 5px;
    margin-top: 10px;
}

.price-note {
    display: block;
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}

.features-section {
    flex-grow: 1;
}

.features-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f223e;
    margin: 0 0 20px 0;
    text-align: left;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 12px 0;
    font-size: 15px;
    color: #555;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
    border-bottom: 1px solid #f5f5f5;
}

.features-list li.feature-item {
    display: block;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.features-list li.feature-item:hover {
    background-color: #f9f9f9;
    padding-left: 10px;
    margin-left: -10px;
    padding-right: 10px;
    margin-right: -10px;
}

.feature-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.feature-header i.fa-check-circle {
    margin-right: 12px;
    flex-shrink: 0;
}

.expand-icon {
    color: #999 !important;
    font-size: 14px !important;
    margin-left: auto;
    margin-right: 0 !important;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.feature-item.expanded .expand-icon {
    transform: rotate(180deg);
}

.feature-description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    padding-left: 30px;
}

.feature-item.expanded .feature-description {
    max-height: 200px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li i {
    color: #5bb750;
    margin-right: 12px;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.featured-card .features-list li i {
    color: #ff8d1b;
}

/* Responsive Design */
@media (max-width: 991px) {
    .service-cards-row {
        flex-direction: column;
    }
    
    .service-pricing-card {
        margin-bottom: 30px;
    }
    
    .service-title {
        font-size: 28px;
    }
    
    .price {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    .service-card-header {
        padding: 30px 20px 20px;
    }
    
    .service-card-body {
        padding: 30px 20px;
    }
    
    .service-title {
        font-size: 26px;
    }
    
    .price {
        font-size: 56px;
    }
    
    .currency {
        font-size: 28px;
    }
    
    .price-percent {
        font-size: 40px;
    }
    
    .featured-badge {
        font-size: 12px;
        padding: 6px 35px;
        right: -38px;
    }
}

@media (max-width: 480px) {
    .service-title {
        font-size: 24px;
    }
    
    .price {
        font-size: 48px;
    }
    
    .features-list li {
        font-size: 14px;
        padding: 10px 0;
    }
}
