/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', Arial, sans-serif;
}
.logo img {
    height: 60px;  /* Atur tinggi logo */
    width: auto;  /* Menyesuaikan proporsi */
    display: block;
}
body {
    background: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header */
header {
    background: #2e8b57;
    padding: 15px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo a {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

header nav ul li a:hover, .active {
    background: rgba(255, 255, 255, 0.2);
}

/* Contact Section */
.contact {
    background: white;
    padding: 50px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.contact h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    color: #2e8b57;
}

.contact p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
}

/* Formulir Kontak */
#contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#contact-form label {
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-size: 16px;
}

#contact-form input, #contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#contact-form button {
    display: block;
    width: 100%;
    padding: 10px;
    background: #2e8b57;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.3s ease;
}

#contact-form button:hover {
    background: #3cb371;
}

/* Informasi Kontak */
.contact-info {
    text-align: center;
    margin-top: 30px;
}

.contact-info h3 {
    font-size: 24px;
    color: #2e8b57;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Styling untuk ikon dalam kontak */
.contact-info p i {
    color: #2e8b57;
    font-size: 22px;
}

/* Warna khusus untuk ikon WhatsApp */
.contact-info p i.fa-whatsapp {
    color: #25d366;
}

/* Warna khusus untuk ikon Email */
.contact-info p i.fa-envelope {
    color: #c71610;
}

/* Warna khusus untuk ikon Lokasi */
.contact-info p i.fa-map-marker-alt {
    color: #d9534f;
}

/* Google Maps */
.map-container {
    text-align: center;
    margin-top: 30px;
}

.map-container h3 {
    font-size: 24px;
    color: #2e8b57;
    margin-bottom: 10px;
}

#map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Tombol WhatsApp */
.whatsapp-button {
    text-align: center;
    margin-top: 30px;
}

.whatsapp-button a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    font-size: 18px;
    color: white;
    background: #25d366;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.whatsapp-button a:hover {
    background: #1ebc5e;
}

/* Footer */
footer {
    background: #2e8b57;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 16px;
    margin-top: 40px;
    border-top: 4px solid #3cb371;
}

footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact {
        padding: 30px 15px;
    }

    #contact-form {
        max-width: 100%;
    }

    .whatsapp-button a {
        width: 90%;
    }
}
