header {
    border-bottom: 1px solid #ddd;
}
/* styles.css */
body {
    font-family: Arial, sans-serif;
    color: #333;
}

/* Styling untuk dropdown */
.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);
    }
}

.badge-wrapper {
    margin-bottom: 1rem;
}

.badge-custom {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-right: 10px;
}

.badge-airline {
    background-color: #e0f7f6;
    color: #00a69c;
}

.badge-status {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.carousel-inner img {
    width: 100%;
    height: auto; /* Memastikan tinggi gambar disesuaikan dengan lebar */
    object-fit: contain; /* Menjaga rasio aspek gambar */
    border-radius: 8px;
}

.info-card {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: none;
    padding: 20px;
}

.price-title {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    color: #00a69c;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list i {
    font-size: 1.2rem;
    color: #00a69c;
}

.btn-booking {
    background-color: #00a69c;
    color: white;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-booking:hover {
    background-color: #008f86;
}

.nav-tabs .nav-link {
    color: #666;
    border: none;
    padding: 12px 20px;
}

.nav-tabs .nav-link.active {
    color: #00a69c;
    border-bottom: 2px solid #00a69c;
    font-weight: 500;
}

.tab-content {
    padding: 20px;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.footer {
    background-color: maroon;
    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;
}