/* Struktur Footer */
footer {
    background-color: #333;
    color: white;
    padding: 30px 20px;
}

/* Mengatur container footer */
.footer-container {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Jarak antar elemen di dalam footer */
}

/* Bagian Google Maps dan Testimoni Bersebelahan */
.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Mengurangi jarak antara Google Maps dan Testimoni */
}

/* Bagian Google Maps */
.footer-google-maps {
    flex: 1;
    max-width: 600px;
}

.footer-google-maps iframe {
    border-radius: 8px;
}

/* Bagian Testimoni */
.footer-testimonial {
    flex: 1;
    max-width: 600px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    width: 100%;
}

.testimonial-card {
    display: flex;
    width: 300%; /* Menyusun gambar secara berurutan dalam satu baris */
    transition: transform 0.5s ease-in-out; /* Transisi halus saat bergeser */
}

.testimonial-card img {
    width: 100%;
    height: 400px; /* Atur tinggi gambar agar seragam */
    object-fit: cover; /* Menjaga gambar tetap proporsional */
    border-radius: 8px;
    margin-right: 10px;
}

/* Ikon navigasi < dan > */
.prev, .next {
    position: absolute;
    top: 50%;
    font-size: 24px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    transform: translateY(-50%);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Responsif untuk Gambar Testimonial */
@media (max-width: 768px) {
    .testimonial-card img {
        height: 150px; /* Mengurangi tinggi gambar pada perangkat lebih kecil */
    }
}

/* Bagian Footer Informasi Bawah */
.footer-info {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #ddd;
}

.footer-info a {
    color: #ff5722;
    text-decoration: none;
}

.footer-info a:hover {
    color: #ff5722;
}

/* Ikon Sosial Media */
.social-icon {
    margin: 0 10px;
    font-size: 20px;
    color: white;
    text-decoration: none;
}

.social-icon:hover {
    color: #ff5722;
}

.social-icon i {
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-google-maps iframe {
        height: 300px;
    }

    .testimonial-card img {
        width: 100%;
    }

    .testimonial-slider {
        overflow-x: scroll;
    }
}
