*{margin:0;padding:0;box-sizing:border-box;font-family:'Poppins',sans-serif}
body{background:#f9fbfd;color:#333}

/* HEADER */
.navbar{
    position:sticky;
    top:0;
    background:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 30px;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
    z-index:1000;
}

header {
    background: url('/assets/img/latar_umroh_hemat.png') center/cover no-repeat;
    color: white;
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden; /* ðŸ”¥ penting */
}

header::before {
     content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); /* jangan terlalu gelap */
    z-index: 0; /* ðŸ”¥ WAJIB */
    
}

header * {
    position: relative;
    z-index: 1;
}

.logo{
    font-size:20px;
    font-weight:700;
    color:#0d6efd;
}

.logo img {
    height: 45px;
    transition: 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .logo img {
        height: 35px;
    }
}

.nav-menu a{
    margin:0 10px;
    text-decoration:none;
    color:#333;
    font-weight:500;
}

.nav-menu a:hover{color:#0d6efd}


header h1{font-size:42px;margin-bottom:10px}
header p{font-size:18px;margin-bottom:20px}

.btn{
    display:inline-block;
    padding:12px 25px;
    margin:5px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
}

.btn-primary{background:#ff9800;color:white}
.btn-wa{background:#25D366;color:white}

section{padding:60px 20px;max-width:1100px;margin:auto}

h2{text-align:center;margin-bottom:40px}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.paket-section {
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
}

.section-subtitle {
    color: #777;
    margin-bottom: 40px;
}

.paket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.paket-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.paket-card:hover {
    transform: translateY(-10px);
}

.paket-img {
    position: relative;
}

.paket-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #0d6efd;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.harga {
    position: absolute;
    bottom: -15px;
    left: 15px;
    background: #f1f1f1;
    padding: 8px 15px;
    border-radius: 10px;
    font-weight: bold;
    color: green;
}

.harga span {
    font-size: 12px;
    color: #777;
}

.paket-body {
    padding: 30px 20px 20px;
}

.paket-body h3 {
    margin-bottom: 10px;
    color: #4CAF50;
}

.paket-body ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    text-align: left;
}

.paket-body li {
    margin: 6px 0;
    font-size: 14px;
}

.btn-detail {
    display: block;
    background: #6DBE00;
    color: white;
    padding: 10px;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 15px;
}

.card{
    background:white;
    border-radius:15px;
    padding:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    text-align:center;
}

.card h3{margin-bottom:10px}
.price{color:#e53935;font-size:22px;margin:10px 0}

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

.feature{
    background:white;
    padding:20px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.testimoni{
    background:#0d6efd;
    color:white;
    border-radius:20px;
    padding:40px;
    text-align:center;
}

.faq-item{margin-bottom:15px}
.faq-item h3{
    cursor:pointer;
    background:#eee;
    padding:10px;
    border-radius:5px;
}
.faq-content{display:none;padding:10px}



/* FOOTER */
.footer{
    background:#111;
    color:#ccc;
    padding:40px 20px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
    max-width:1100px;
    margin:auto;
}

.footer h4{color:white;margin-bottom:10px}
.footer a{display:block;color:#ccc;text-decoration:none;margin:5px 0}
.footer a:hover{color:white}

.footer-bottom{
    text-align:center;
    margin-top:20px;
    font-size:14px;
    color:#777;
}

/* SECTION BACKGROUND */
.why-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0d6efd, #00c6ff);
    color: white;
    text-align: center;
}

/* GRID */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr;
    }
}

/* CARD */
.feature {
    background: rgba(90, 45, 228, 0.44);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px 20px;
    transition: 0.4s;
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    cursor: pointer;
}

/* 3D HOVER EFFECT */
.feature:hover {
    transform: rotateY(8deg) rotateX(5deg) translateY(-10px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

/* ICON */
.icon {
    font-size: 40px;
    margin-bottom: 15px;
    transition: 0.3s;
}

/* ICON ANIMATION */
.feature:hover .icon {
    transform: scale(1.2) rotate(5deg);
}

/* TEXT */
.feature h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.feature p {
    font-size: 14px;
    line-height: 1.6;
    color: #f1f1f1;
}

/* TITLE */
.section-title {
    font-size: 32px;
    font-weight: 700;
}

/* SECTION */
.testimoni-section {
    padding: 80px 20px;
    background: #f5f7fa;
    text-align: center;
}

/* GRID */
.testimoni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* CARD */
.testi-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: left;
    transition: 0.3s;
}

.testi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* HEADER */
.testi-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testi-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: cover;
}

.testi-header h3 {
    margin: 0;
    font-size: 16px;
}

.testi-header span {
    font-size: 13px;
    color: #888;
}

/* RATING */
.rating {
    color: #ff6b00;
    font-size: 18px;
    margin-bottom: 15px;
}

/* TEXT */
.testi-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.testimoni-section {
    padding: 80px 20px;
    background: #f5f7fa;
    text-align: center;
}

.testi-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 1100px;
    margin: auto;
}

.testi-slider {
    position: relative;
    z-index: 1;
    display: flex;
    transition: transform 0.5s ease;
}

/* CARD */
.testi-card {
    min-width: 33.33%;
    box-sizing: border-box;
    padding: 15px;
}

.testi-card > div,
.testi-card p {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* HEADER */
.testi-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.testi-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.rating {
    color: #ff6b00;
    margin: 10px 0;
}

/* NAV BUTTON */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    font-size: 22px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 999;pointer-events: auto; /* 🔥 penting */
}

.prev { left: 10px; }
.next { right: 10px; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .testi-card {
        min-width: 100%;
    }
}

.faq-section {
    padding: 80px 20px;
    background: #ffffff;
    max-width: 900px;
    margin: auto;
}

.section-subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 40px;
}

/* ITEM */
.faq-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

/* QUESTION */
.faq-question {
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    transition: 0.3s;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 20px;
}

/* ACTIVE STATE */
.faq-item.active .faq-question::after {
    content: '-';
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* SHOW */
.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 10px;
}

.cta {
    width: 100%;
    text-align: center;
}

.cta img {
    width: 100%;
    max-width: 1200px; /* biar tidak terlalu besar di layar besar */
    height: auto;
    display: block;
    margin: auto;
    border-radius: 20px; /* opsional biar elegan */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .cta {
        padding: 0 10px;
    }

    .cta img {
        border-radius: 12px;
    }
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

/* MENU */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        text-align: center;
        display: none;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 10px 0;
    }
}

@media (max-width: 768px) {
    .cta {
        margin-bottom: 33px; /* 🔥 jarak bawah */
    }
}