.testimoni-banner {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../../img/testimoni-banner.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 60px;
}

.testimoni-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.testimoni-section {
    padding: 4rem 5%;
}

.google-reviews-section {
    padding: 4rem 5%;
    background: var(--white);
}

.google-reviews-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.google-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimoni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimoni-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.testimoni-card:hover {
    transform: translateY(-5px);
}

.testimoni-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.testimoni-content {
    padding: 1.5rem;
    text-align: center;
}

.client-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: -40px auto 1rem;
    border: 4px solid var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    object-fit: cover;
}

.testimoni-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.client-car {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.testimoni-text {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.rating {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.gallery-section {
    padding: 4rem 5%;
    background: var(--light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    padding: 2rem;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .testimoni-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}
