:root {
    --primary: #6B8E23;   /* hijau tua */
    --secondary: #b5d200; /* hijau lime */
    --dark: #198754;      /* hijau gelap */
}

body {
    font-family: "Poppins", sans-serif;
    background-color: #fff;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
    background-color: transparent;
}

/* Jika memiliki class `.solid-navbar`, maka background jadi putih */
.navbar.solid-navbar {
    background-color: var(--dark) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.navbar-brand{
    font-size: 30px;
}
.navbar .logo {
    height: 100px;
    max-height: 105px;
}
.navbar-scroll {
    background-color: var(--dark) !important;
}
.navbar .nav-link {
    color: white !important;
    font-weight: 600;
}
.navbar .nav-link.active {
    color: var(--secondary) !important;
}

.custom-dropdown .dropdown-menu {
    margin-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    padding: 0.5rem 0;
    min-width: 200px;
    background-color: #fff;
}

.custom-dropdown .dropdown-item {
    font-size: 14px;
    padding: 10px 20px;
    transition: color 0.2s ease;
    color: #333;
    background-color: transparent;
}

.custom-dropdown .dropdown-item:hover {
    color: var(--secondary);
    font-weight: 600;
    background-color: transparent;
}

.custom-dropdown .nav-link {
    font-weight: 500;
    color: #222;
    transition: color 0.2s ease;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* Hero */
.hero {
    position: relative;
    height: 90vh;
    background: url("../img/bg-almuna.jpg") no-repeat center center/cover;
}
.hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}
.hero .container {
    position: relative;
    z-index: 2;
}
.hero .lead span {
    color: var(--secondary);
}

.about img {
    border-radius: 15px;
    max-width: 100%;
    max-height: 350px;
    height: auto;
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.30);
}
.custom-hero-btn {
    background-color: var(--dark);
    font-weight: 600;
    padding: 12px 24px;
    border: none;
    transition: background-color 0.3s ease;
}

.about h3 {
    color: var(--dark);
}

.about p {
    line-height: 1.7;
}

.about .highlight {
    color: var(--secondary) !important;
}

/* Paket Umroh */
.paket-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.paket-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.paket-body h5 {
    color: #013220;
    margin-bottom: 0.75rem;
}
.jadwal {
    font-size: 14px;
    color: #e63946;
    margin-bottom: 10px;
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
ul li .stars {
    color: gold;
    font-size: 14px;
}
.harga {
    font-weight: 600;
    color: #e63946;
    font-size: 15px;
}
.btn-success {
    background-color: var(--dark);
    font-weight: 600;
    padding: 10px;
    border-radius: 10px;
}
.img-square {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* Testimoni */
.testimoni-wrapper {
   overflow-x: auto !important;
   -webkit-overflow-scrolling: touch;

   scrollbar-width: none;
   -ms-overflow-style: none;
}
.testimoni-wrapper::-webkit-scrollbar {
   display: none;
}
.testimoni-wrapper .row {
   white-space: nowrap !important;
   flex-wrap: nowrap !important;
}
.testimoni-wrapper .col-8 {
   display: inline-block;
   float: none;
}

/* Footer */
.footer {
    background-color: var(--dark);
    font-size: 14px;
}
.footer h6 {
    color: var(--secondary);
    margin-bottom: 15px;
}
.footer a {
    color: #ddd;
    text-decoration: none;
}
.footer a:hover {
    color: var(--secondary);
}
.footer .social-icon {
    display: inline-flex;
    width: 32px;
    height: 32px;
    background: var(--secondary);
    color: var(--dark);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}
.footer .social-icon:hover {
    background: white;
    color: var(--primary);
}

@media (min-width: 992px) {
    .nav-item.dropdown .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }

    .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-item.dropdown > .nav-link {
        pointer-events: none;
    }
}

/* Hero - mobile */
@media (max-width: 768px) {
    .hero .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .hero h1.display-5 {
        font-size: 1.75rem;
        font-weight: 700;
    }
    .hero .lead {
        font-size: 1rem;
    }
    .hero .lead span {
        color: var(--secondary);
        font-weight: 700;
    }
    .hero .btn.btn-success.btn-lg {
        width: 100%;
        padding: 1rem 0;
        font-size: 1.1rem;
    }
    
    .paket-wrapper {
        flex-wrap: nowrap;
        overflow-x: auto;
        display: flex;
    }
    .paket-item {
        flex: 0 0 85%;
        max-width: 85%;
    }
    .paket-wrapper::-webkit-scrollbar {
        display: none;
    }
    .paket-wrapper {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .navbar .logo {
        height: 70px;
        max-height: 75px;
    }
}