* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #222;
    background: #f9f9f9;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* NAVBAR */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    backdrop-filter: blur(10px);
    background: rgba(0,0,0,0.3);
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    color: white;
}

.nav-content nav a {
    margin: 0 12px;
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.nav-content nav a:hover {
    color: #ff6a00;
}

/* BUTTON */
.btn-primary {
    background: linear-gradient(135deg, #ff6a00, #ff9a3c);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,106,0,0.4);
}

.btn-outline {
    border: 1px solid white;
    background: transparent;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
}

/* HERO */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1501785888041-af3ef285b470') center/cover;
    display: flex;
    align-items: center;
    color: white;
}


.hero-content h1 {
    font-size: 64px;
    font-weight: 700;
}

.hero span {
    color: #ff6a00;
}

.hero p {
    margin: 20px 0;
    opacity: 0.8;
}

/* PHILOSOPHY */
.philosophy {
    padding: 100px 0;
}

.cards {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.card {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
}

.card.highlight {
    background: #ff6a00;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card.highlight h3 {
    font-size: 40px;
}

.card.image {
    height: 180px;
    background: url('https://picsum.photos/400') center/cover;
}

/* PACKAGES */
.packages {
    padding: 100px 0;
}

.package-grid {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.package-card {
    text-align: center;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    padding-bottom: 20px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.package-card img {
    width: 100%;
    height: 180px;
    object-fit: cover; /* ini penting */
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.package-card h3 {
    padding: 15px;
}

.package-card p {
    padding: 0 15px;
    font-size: 14px;
    opacity: 0.7;
}

.package-card button {
    margin: 15px;
    padding: 8px 15px;
    border-radius: 20px;
    border: none;
    background: #ff6a00;
    color: white;
}



/* CTA */
.cta {
    background: linear-gradient(135deg, #1c1c1c, #2a2a2a);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta p {
    opacity: 0.7;
    margin: 10px 0 20px;
}

.cta-buttons {
    margin-top: 20px;
}

/* FOOTER */
.footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .hero-content h1 {
        font-size: 40px;
    }

    .cards,
    .package-grid {
        flex-direction: column;
    }

    .nav-content nav {
        display: none;
    }
}

.expedition-home {
    max-width: 1280px;
    margin: auto;
    padding: 70px 24px 100px;
}

.section-kicker {
    color: #c2410c;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.philosophy-section {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 110px;
}

.philosophy-text h1,
.featured-head h2 {
    font-size: 64px;
    line-height: 0.95;
    color: #2c2a28;
    margin-bottom: 18px;
}

.lead {
    color: #57534e;
    line-height: 1.9;
    margin-bottom: 30px;
}

.feature-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.point-item {
    display: flex;
    gap: 16px;
}

.philosophy-gallery {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.philosophy-gallery img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
}

.years-badge {
    position: absolute;
    left: -20px;
    bottom: 20px;
    background: white;
    padding: 20px 24px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.package-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.showcase-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

.showcase-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.showcase-content {
    padding: 22px;
}