/* Services Page Styles */

/* Breadcrumb Navigation */
.breadcrumb {
    background: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    font-size: 0.9em;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb li {
    margin-right: 10px;
}

.breadcrumb a {
    color: #1f6f3b;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Rating Display */
.rating-display {
    text-align: center;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.rating-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.rating-stat {
    text-align: center;
}

.rating-value {
    font-size: 3em;
    font-weight: bold;
    color: #1f6f3b;
    margin-bottom: 5px;
}

.rating-stars {
    color: #ffc107;
    font-size: 1.5em;
    margin-bottom: 5px;
}

.rating-label {
    color: #666;
    font-size: 0.9em;
}

/* Review Stats */
.review-stats {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.review-stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.review-stat {
    text-align: center;
}

.review-stat-value {
    font-size: 2.5em;
    font-weight: bold;
    color: #1f6f3b;
}

.review-stat-label {
    color: #666;
    font-size: 0.9em;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.review-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.review-customer {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.review-location {
    color: #666;
    font-size: 0.9em;
}

.review-project {
    color: #888;
    font-size: 0.8em;
}

.review-rating {
    text-align: right;
}

.review-stars {
    color: #ffc107;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.review-date {
    color: #666;
    font-size: 0.8em;
}

.review-text {
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-badges {
    display: flex;
    align-items: center;
    gap: 10px;
}

.verified-badge {
    background: #1f6f3b;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: bold;
}

.review-service {
    color: #666;
    font-size: 0.8em;
}

/* Trust Badges */
.trust-badges {
    text-align: center;
    margin-top: 30px;
}

.trust-badges-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    min-width: 120px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.trust-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.trust-badge-icon.google {
    background: #4285f4;
}

.trust-badge-icon.bbb {
    background: #1f6f3b;
}

.trust-badge-icon.licensed {
    background: #ff6b35;
}

.trust-badge-icon.satisfaction {
    background: #28a745;
}

.trust-badge-title {
    color: #333;
    font-size: 0.9em;
    font-weight: bold;
}

.trust-badge-subtitle {
    color: #666;
    font-size: 0.8em;
}

/* Events Widget */
.events-widget {
    background: #f9f9f9;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.events-list {
    list-style: none;
    padding: 0;
}

.events-item {
    margin-bottom: 10px;
}

.events-link {
    font-weight: bold;
    color: #0073e6;
    text-decoration: none;
}

.events-link:hover {
    text-decoration: underline;
}

.events-date {
    color: #555;
    font-size: 0.9em;
}

/* Events Fallback */
.events-fallback {
    text-align: center;
    padding: 20px;
}

.events-fallback h4 {
    color: #1f6f3b;
    margin-bottom: 15px;
}

.events-fallback ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.events-fallback li {
    margin-bottom: 10px;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-badges-grid {
        gap: 10px;
    }
    
    .trust-badge {
        min-width: 100px;
        padding: 10px;
    }
    
    .rating-stats {
        gap: 15px;
    }
    
    .rating-value {
        font-size: 2.5em;
    }
    
    .review-stats-grid {
        gap: 15px;
    }
    
    .review-stat-value {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .breadcrumb ol {
        flex-wrap: wrap;
        font-size: 0.8em;
    }
    
    .rating-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .review-stats-grid {
        flex-direction: column;
        gap: 10px;
    }
    
    .trust-badges-grid {
        flex-direction: column;
        align-items: center;
    }
}
