/* Premium Estate Pro - Content Module Styles */

/* ============================================================
   PROPERTY SHOWCASE
   ============================================================ */

.premium-estate-pro-property-showcase {
    padding: 40px 0;
}

.premium-estate-pro-property-showcase .showcase-filters {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.premium-estate-pro-property-showcase .filter-btn {
    padding: 10px 24px;
    background: #f3f4f6;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #374151;
}

.premium-estate-pro-property-showcase .filter-btn:hover,
.premium-estate-pro-property-showcase .filter-btn.active {
    background: #5b63ff;
    color: #ffffff;
    border-color: #5b63ff;
}

/* ============================================================
   TESTIMONIALS SLIDER
   ============================================================ */

.premium-estate-pro-testimonials {
    padding: 60px 20px;
    background: #f9fafb;
}

.premium-estate-pro-testimonials .testimonial-item {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    margin: 20px;
}

.premium-estate-pro-testimonials .testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 25px;
    font-style: italic;
}

.premium-estate-pro-testimonials .testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.premium-estate-pro-testimonials .author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.premium-estate-pro-testimonials .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-estate-pro-testimonials .author-info h4 {
    margin: 0;
    font-size: 1.125rem;
    color: #1f2937;
}

.premium-estate-pro-testimonials .author-info p {
    margin: 5px 0 0 0;
    font-size: 0.875rem;
    color: #6b7280;
}

.premium-estate-pro-testimonials .testimonial-rating {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

/* ============================================================
   PRICING TABLE
   ============================================================ */

.premium-estate-pro-pricing {
    padding: 60px 20px;
}

.premium-estate-pro-pricing .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.premium-estate-pro-pricing .pricing-plan {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.premium-estate-pro-pricing .pricing-plan.highlighted {
    border-color: #5b63ff;
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(91,99,255,0.2);
}

.premium-estate-pro-pricing .pricing-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

.premium-estate-pro-pricing .plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #5b63ff;
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.premium-estate-pro-pricing .plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #1f2937;
}

.premium-estate-pro-pricing .plan-price {
    font-size: 3rem;
    font-weight: 700;
    color: #5b63ff;
    margin: 0 0 10px 0;
}

.premium-estate-pro-pricing .plan-period {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 25px;
}

.premium-estate-pro-pricing .plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.premium-estate-pro-pricing .plan-features li {
    padding: 12px 0;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

.premium-estate-pro-pricing .plan-features li:last-child {
    border-bottom: none;
}

.premium-estate-pro-pricing .plan-button {
    display: inline-block;
    padding: 14px 40px;
    background: #5b63ff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.premium-estate-pro-pricing .plan-button:hover {
    background: #4a52cc;
    transform: translateY(-2px);
}

/* ============================================================
   MORTGAGE CALCULATOR
   ============================================================ */

.premium-estate-pro-mortgage-calculator {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    margin: 40px auto;
}

.premium-estate-pro-mortgage-calculator h3 {
    text-align: center;
    margin: 0 0 30px 0;
    color: #1f2937;
    font-size: 1.75rem;
}

.premium-estate-pro-mortgage-calculator .calculator-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.premium-estate-pro-mortgage-calculator .field-group {
    position: relative;
}

.premium-estate-pro-mortgage-calculator .field-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
}

.premium-estate-pro-mortgage-calculator .field-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.premium-estate-pro-mortgage-calculator .field-group input:focus {
    outline: none;
    border-color: #5b63ff;
}

.premium-estate-pro-mortgage-calculator .field-group .currency {
    position: absolute;
    right: 15px;
    top: 42px;
    color: #6b7280;
    font-weight: 600;
}

.premium-estate-pro-mortgage-calculator .calculate-btn {
    width: 100%;
    padding: 14px;
    background: #5b63ff;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.premium-estate-pro-mortgage-calculator .calculate-btn:hover {
    background: #4a52cc;
    transform: translateY(-2px);
}

.premium-estate-pro-mortgage-calculator .calculator-results {
    background: #f9fafb;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.premium-estate-pro-mortgage-calculator .result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
}

.premium-estate-pro-mortgage-calculator .result-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.premium-estate-pro-mortgage-calculator .result-item .label {
    color: #6b7280;
    font-weight: 500;
}

.premium-estate-pro-mortgage-calculator .result-item .value {
    color: #5b63ff;
    font-size: 1.25rem;
    font-weight: 700;
}

/* ============================================================
   BEFORE/AFTER SLIDER
   ============================================================ */

.premium-estate-pro-before-after {
    position: relative;
    max-width: 100%;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

@media screen and (max-width: 768px) {
    .premium-estate-pro-pricing .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-estate-pro-pricing .pricing-plan.highlighted {
        transform: scale(1);
    }
    
    .premium-estate-pro-mortgage-calculator {
        padding: 25px;
    }
}
