/* Reviews Section - Clean and Simple Approach */

.marshall-home-reviews {
    background-color: #e8e8e8;
    padding: 80px 0;
    font-family: 'Lancelot', cursive;
}

.marshall-home-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.marshall-home-reviews-content {
    text-align: center;
}

.marshall-home-reviews-title {
    color: #333;
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.marshall-home-reviews-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #5ca7db;
}

/* Carousel Container */
.marshall-home-reviews-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
    overflow: hidden;
}

.marshall-home-reviews-track {
    display: flex;
    transition: transform 0.3s ease;
    gap: 30px;
}

/* Review Cards */
.marshall-home-review-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 35px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex-shrink: 0;
    width: calc(100% - 30px);
}

.marshall-home-review-header {
    margin-bottom: 25px;
}

.marshall-home-review-google {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.marshall-home-review-google-icon {
    height: 24px;
    width: auto;
}

.marshall-home-review-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.marshall-home-review-stars i {
    color: #ffc107;
    font-size: 20px;
}

.marshall-home-review-stars i.empty {
    color: #ddd;
}

.marshall-home-review-text {
    font-size: 20px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.marshall-home-review-author {
    text-align: center;
}

.marshall-home-review-name {
    font-size: 18px;
    color: #555;
    font-weight: 500;
}

/* Navigation Buttons */
.marshall-home-review-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #5ca7db;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.marshall-home-review-btn:hover {
    background-color: #4b86af;
    transform: translateY(-50%) scale(1.1);
}

.marshall-home-review-btn i {
    color: #fff;
    font-size: 18px;
}

.marshall-home-review-prev {
    left: 10px;
}

.marshall-home-review-next {
    right: 10px;
}

/* Tablet Styles */
@media (max-width: 768px) {
    .marshall-home-reviews {
        padding: 60px 0;
    }
    
    .marshall-home-reviews-container {
        padding: 0 15px;
    }
    
    .marshall-home-reviews-title {
        font-size: 34px;
        margin-bottom: 40px;
    }
    
    .marshall-home-reviews-carousel {
        padding: 0 50px;
    }
    
    .marshall-home-reviews-track {
        gap: 25px;
    }
    
    .marshall-home-review-card {
        padding: 30px 25px;
        width: calc(100% - 25px);
    }
    
    .marshall-home-review-text {
        font-size: 18px;
    }
    
    .marshall-home-review-name {
        font-size: 16px;
    }
    
    .marshall-home-review-btn {
        width: 40px;
        height: 40px;
    }
    
    .marshall-home-review-btn i {
        font-size: 16px;
    }
}

/* Mobile Styles - Simple and Clean */
@media (max-width: 480px) {
    .marshall-home-reviews {
        padding: 50px 0;
    }
    
    .marshall-home-reviews-container {
        padding: 0 15px;
    }
    
    .marshall-home-reviews-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .marshall-home-reviews-carousel {
        padding: 0;
        margin: 0 auto;
        max-width: 350px;
    }
    
    .marshall-home-reviews-track {
        gap: 20px;
    }
    
    .marshall-home-review-card {
        padding: 30px 20px;
        margin: 0 auto;
        width: calc(100% - 20px);
        min-height: 300px;
    }
    
    .marshall-home-review-google-icon {
        height: 20px;
    }
    
    .marshall-home-review-stars i {
        font-size: 18px;
    }
    
    .marshall-home-review-text {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
        padding: 0 15px;
    }
    
    .marshall-home-review-name {
        font-size: 15px;
    }
    
    /* Hide navigation buttons on mobile */
    .marshall-home-review-btn {
        display: none;
    }
}

/* Touch interaction improvements */
@media (hover: none) and (pointer: coarse) {
    .marshall-home-reviews-track {
        cursor: grab;
    }
    
    .marshall-home-reviews-track:active {
        cursor: grabbing;
    }
}