@media only screen and (min-width: 768px) {

/* --- CSS front page google reviews --- */
	.hero-carousel {
		position: relative;
		max-width: 100%;
		margin: auto;
		overflow: hidden;
		border-radius: 8px;
	}

	.carousel-treck {
		display: flex;
		/* Durasi animasi geser: 0.8 detik agar terasa smooth */
		transition: transform 0.8s cubic-bezier(0.45, 0.05, 0.55, 0.95);
	}

	.carousel-slidee {
		min-width: 100%;
		box-sizing: border-box;
	}

	.carousel-slidee img {
		width: 100%;
		height: 400px; /* Anda bisa ubah tinggi ini */
		object-fit: cover;
		display: block;
	}

	.carousel-dots {
		position: absolute;
		bottom: 15px;
		width: 100%;
		text-align: center;
	}

	.dot {
		height: 10px;
		width: 10px;
		margin: 0 5px;
		background-color: rgba(255, 255, 255, 0.5);
		border-radius: 50%;
		display: inline-block;
		cursor: pointer;
		transition: background-color 0.3s;
	}

	.dot.active {
		background-color: #ffffff;
		transform: scale(1.2);
	}
/* --- End Carousel hero --- */
/* --- Carousel review --- */
		.google-rev {
			margin:0 auto;
			padding-top:30px;
		}
        .review-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .review-header h3 {
            font-weight: 600;
            font-size: 22px;
        }

        .header-stars {
            color: #FFD700;
            font-size: 24px;
            margin: 5px 0 5px 0
        }

        p.based-on{
            font-size: 13px;
            color: #6c757d;
            font-weight: 600;
            margin: 0;
        }

        .google-brand {
            width: 80px;
            margin-top: 10px;
        }

        /* --- Carousel Section --- */
        .carousel-container {
            width: 100%;
            max-width: 1000px;
            overflow: hidden;
            position: relative;
            padding: 20px 0;
			margin:0 auto;
        }

        .carousel-track {
            display: flex;
            width: calc(350px * 6); /* Sesuaikan dengan jumlah kartu x 2 untuk looping */
            animation: scroll 20s linear infinite;
        }

        .carousel-track:hover {
            animation-play-state: paused;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-350px * 3)); } /* Geser sejauh jumlah kartu asli */
        }

        /* --- Card Styles --- */
        .review-card {
            background-color: var(--bg-card);
            width: 310px;
            min-width: 310px;
            margin: 0 20px;
            padding: 25px;
            border-radius: 20px;
            box-sizing: border-box;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .card-header {
            display: flex;
            align-items: center;
            position: relative;
            margin-bottom: 15px;
        }

        .profile-img {
            width: 45px;
            height: 45px;
            background-color: #555;
            border-radius: 50%;
            margin-right: 12px;
        }

        .user-meta .name {
            font-weight: 700;
            font-size: 15px;
            margin: 0;
        }

        .user-meta .date {
            font-size: 12px;
            color: #444;
            margin: 0;
        }

        .google-icon-small {
            position: absolute;
            top: 0;
            right: 0;
            width: 18px;
        }

        .card-rating {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
        }

        .card-stars {
            color: #f7ea00;
            font-size: 20px;
            margin-right: 8px;
            text-shadow: 0 1px 1px rgba(0,0,0,0.1);
        }

        .verified-badge {
            background-color: #3b82f6;
            color: white;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 9px;
        }

        .review-content {
            font-size: 14px;
            line-height: 1.5;
            font-weight: 500;
            margin: 0;
        }
}
/* --- END Carousel review --- */	

@media only screen and (max-width: 480px) {
/* --- Carousel hero --- */
	.hero-carousel {
		position: relative;
		max-width: 100%;
		margin: auto;
		overflow: hidden;
	}

	.carousel-treck {
		display: flex;
		/* Durasi animasi geser: 0.8 detik agar terasa smooth */
		transition: transform 0.8s cubic-bezier(0.45, 0.05, 0.55, 0.95);
	}
	.carousel-slidee {
		min-width: 100%;
		box-sizing: border-box;
	}

	.carousel-slidee img {
		width: 100%;
		height: 250px; /* Anda bisa ubah tinggi ini */
		object-fit: cover;
		display: block;
	}

	.carousel-dots {
		position: absolute;
		bottom: 15px;
		width: 100%;
		text-align: center;
	}

	.dot {
		height: 10px;
		width: 10px;
		margin: 0 5px;
		background-color: rgba(255, 255, 255, 0.5);
		border-radius: 50%;
		display: inline-block;
		cursor: pointer;
		transition: background-color 0.3s;
	}

	.dot.active {
		background-color: #ffffff;
		transform: scale(1.2);
	}
/* --- End Carousel hero --- */
/* --- Carousel review --- */
.google-rev{
	padding-top:30px;
	width:100%;
}
.review-header {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	text-align: center;
}

.review-header h3 {
	font-weight: 600;
	font-size: 22px;
}

.header-stars {
	color: #FFD700;
	font-size: 24px;
	margin: 5px 0 5px 0;
}

p.based-on {
	font-size: 13px;
	color: #6c757d;
	font-weight: 600;
	margin: 0;
}

.google-brand {
	width: 80px;
	margin: 0 auto;
}

/* --- Carousel Section --- */
.carousel-container {
	width: 100%;
	max-width: 1000px;
	overflow: hidden;
	position: relative;
	padding: 20px 0;
	margin:0 auto;
}

.carousel-track {
	display: flex;
	width: calc(350px * 6); /* Sesuaikan dengan jumlah kartu x 2 untuk looping */
	animation: scroll 20s linear infinite;
}

.carousel-track:hover {
	animation-play-state: paused;
}

@keyframes scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(calc(-350px * 3)); } /* Geser sejauh jumlah kartu asli */
}

/* --- Card Styles --- */
.review-card {
	background-color: var(--bg-card);
	width: 310px;
	min-width: 310px;
	margin: 0 20px;
	padding: 25px;
	border-radius: 20px;
	box-sizing: border-box;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.card-header {
	display: flex;
	align-items: center;
	position: relative;
	margin-bottom: 15px;
}

.profile-img {
	width: 45px;
	height: 45px;

	border-radius: 50%;
	margin-right: 12px;
}

.user-meta .name {
	font-weight: 700;
	font-size: 15px;
	margin: 0;
}

.user-meta .date {
	font-size: 12px;
	color: #444;
	margin: 0;
}

.google-icon-small {
	position: absolute;
	top: 0;
	right: 0;
	width: 18px;
}

.card-rating {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
}

.card-stars {
	color: #f7ea00;
	font-size: 20px;
	margin-right: 8px;
	text-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.verified-badge {
	background-color: #3b82f6;
	color: white;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 9px;
}

.review-content {
	font-size: 14px;
	line-height: 1.5;
	font-weight: 500;
	margin: 0;
}
}

.rev-no-pic {
    /* Ukuran Lingkaran */
    width: 45px;
    height: 45px;
    
    /* Warna Background (Biru Keabuan sesuai gambar) */
    
    /* Membuat Lingkaran */
    border-radius: 50%;
    
    /* Styling Huruf D */
    color: white;
    font-family: Arial, sans-serif; /* Sesuaikan font jika perlu */
    font-size: 28px;
    font-weight: bold;
    
    /* Mengatur Huruf tepat di Tengah */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Opsional: Agar terlihat halus */
    text-transform: uppercase;
    line-height: 0;
}