body {
    font-family: Arial, sans-serif;
}

header {
    border-bottom: 1px solid #ddd;
}

.about-section {
    padding: 60px 20px;
}

.about-img {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-maroon {
    background-color: #800000;
    color: white;
}

.btn-maroon:hover {
    background-color: #a00000;
}
.dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    border: none;
    padding: 8px 0;
}

.dropdown-item {
    padding: 8px 20px;
    color: #333;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #800000;
}

/* Animasi untuk dropdown */
.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Styling form container */
#umrohForm {
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

/* Styling label */
#umrohForm .form-label {
    font-weight: bold;
    color: #2c3e50;
}

/* Styling input dan select */
#umrohForm .form-control,
#umrohForm .form-select {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: all 0.3s ease-in-out;
}

/* Hover & focus effect */
#umrohForm .form-control:focus,
#umrohForm .form-select:focus {
    border-color: #800000;
    box-shadow: 0 0 5px rgba(128, 0, 0, 0.5);
}

/* Styling tombol submit */
.btn-maroon {
    background-color: #800000;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    transition: background 0.3s ease-in-out;
}

.btn-maroon:hover {
    background-color: #a00000;
}

/* Styling tombol kembali */
.btn-outline-secondary {
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.btn-outline-secondary:hover {
    background-color: #ddd;
    color: black;
}

/* Tambahkan efek pada select */
#pilihPaket {
    cursor: pointer;
}

/* Responsif */
@media (max-width: 576px) {
    #umrohForm {
        padding: 20px;
        max-width: 90%;
    }
}

.footer {
    background-color: #800000;
    color: white;
    padding: 40px 0 20px 0;
}

.footer a {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.footer a:hover {
    color: #e0f7f6;
}

.footer-heading {
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-brand {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.footer-description {
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
}

.social-icons a {
    margin-left: 15px;
    font-size: 18px;
}



