/* General Styling */
body {
    font-family: 'Plus Jakarta Sans', sans-serif; /* Font untuk body text */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #EEEEEE; /* Background utama */
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3 {
    font-family: 'Bebas Neue', sans-serif; /* Font untuk judul */
    color: #7D0A0A; /* Warna judul */
    margin-bottom: 20px;
}

a {
    color: #BF3131; /* Warna link */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
header {
    background-color: #BF3131; /* Warna header */
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

header .container {
    display: flex;
    justify-content: center; /* Pusat logo karena nav dihilangkan */
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container .logo {
    height: 100px; /* Tinggi logo sesuai permintaan */
    width: auto;
    border-radius: 5px; /* Beri sedikit sudut membulat */
}

/* Hero Section */
.hero-section {
    background-color: #EEEEEE; /* Warna latar hero section */
    color: #333;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
}

.hero-section .hero-content {
    margin-bottom: 40px;
}

.hero-section h2 {
    font-size: 3em;
    margin-bottom: 15px;
    color: #7D0A0A;
}

.hero-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    background-color: #7D0A0A; /* Warna tombol CTA */
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #BF3131; /* Warna hover tombol CTA */
    text-decoration: none;
}

/* Carousel Styling */
.carousel-container {
    max-width: 800px; /* Lebar maksimum carousel */
    position: relative;
    margin: auto;
    overflow: hidden;
    border-radius: 8px; /* Sudut membulat */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-slide {
    display: none; /* Sembunyikan slide secara default */
    text-align: center;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    vertical-align: middle;
    border-radius: 8px;
}

.carousel-text {
    color: #fff;
    font-size: 1.5em;
    padding: 15px;
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Latar belakang teks transparan */
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: bold;
}

/* Tombol Prev/Next dihilangkan */
.prev, .next {
    display: none; /* Menyembunyikan tombol navigasi */
}

/* Indikator titik */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #7D0A0A; /* Warna titik aktif/hover */
}

/* Animasi Fade */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}


/* Sections Styling */
section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

section:nth-of-type(even) {
    background-color: #f9f9f9;
}

section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    position: relative;
    color: #7D0A0A;
}

section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #BF3131; /* Warna underline judul section */
    border-radius: 2px;
}

/* About & Services Section (Merged) */
.about-services-section .about-description {
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-services-section .services-subheading {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
    color: #7D0A0A;
    font-size: 2em; /* Ukuran lebih kecil dari h2 utama */
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.service-item {
    background-color: #EAD196; /* Light cream background */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-item h3 {
    color: #7D0A0A;
    font-size: 1.5em;
    margin-bottom: 15px;
}

/* Schedule Form Section */
.schedule-section .container {
    max-width: 700px;
}

.schedule-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box; /* Ensures padding doesn't increase total width */
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.form-group input[type="date"],
.form-group input[type="time"] {
    appearance: none; /* Removes default browser styling for date/time inputs */
}

.form-group textarea {
    resize: vertical; /* Allow vertical resizing only */
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #7D0A0A; /* Warna tombol submit */
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #BF3131; /* Warna hover tombol submit */
}

.form-message {
    text-align: center;
    margin-top: 20px;
    font-weight: bold;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.form-message.success {
    color: #28a745; /* Green for success (default green) */
}

.form-message.error {
    color: #dc3545; /* Red for error (default red) */
}

/* Contact Section */
.contact-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.contact-section ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
    display: flex;
    align-items: flex-start;
}

.contact-section ul li i {
    margin-right: 10px;
    color: #7D0A0A; /* Warna ikon kontak */
    flex-shrink: 0; /* Mencegah ikon menyusut */
}

.contact-section ul li a {
    color: #555; /* Warna teks link pada kontak */
    word-break: break-word; /* Memastikan teks panjang pecah baris */
}
.contact-section ul li a:hover {
    color: #BF3131; /* Warna hover teks link pada kontak */
}

.social-links {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.social-links a {
    display: inline-block;
    margin: 0 15px;
    font-size: 2em;
    color: #7D0A0A; /* Warna ikon sosial */
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #BF3131; /* Warna hover ikon sosial */
}

.embedded-map {
    margin-top: 40px;
    text-align: center;
}

.embedded-map h3 {
    color: #7D0A0A;
    margin-bottom: 20px;
}

.embedded-map iframe {
    max-width: 100%; /* Pastikan map responsif */
    height: 450px; /* Tinggi default map */
}


/* Footer */
footer {
    background-color: #333; /* Warna footer */
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1);
    text-decoration: none; /* Hilangkan underline saat hover */
}


/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    .hero-section h2 {
        font-size: 2em;
    }
    .service-grid {
        grid-template-columns: 1fr;
    }
    section {
        padding: 40px 15px;
    }
    .carousel-text {
        font-size: 1.2em;
        padding: 10px;
    }
    .floating-whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 2em;
        bottom: 15px;
        right: 15px;
    }
}
