* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background: #f5f5f5;
}

/* ================= HEADER ================= */
header {
    background: white;
    padding: 1.2rem 6%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e4d6b;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1e4d6b;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.masuk-btn-outline {
    text-decoration: none;
    color: #4a5568;
    font-size: 0.85rem;
    font-weight: 500;
    background: transparent;
}

.masuk-btn-outline:hover {
    color: #1e4d6b;
}

.masuk-btn {
    background: #1e4d6b;
    color: white;
    padding: 0.40rem 1.3rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}

.masuk-btn:hover {
    background: #163d54;
}

/* ================= PAGE HEADER ================= */
.page-header {
    text-align: center;
    padding: 3rem 6% 2rem;
    background: white;
}

.page-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e4d6b;
    margin-bottom: 1rem;
}

.breadcrumb {
    font-size: 0.85rem;
    color: #888;
}

.breadcrumb a {
    color: #1e4d6b;
    text-decoration: none;
}

/* ================= PACKAGES ================= */
.packages-section {
    padding: 3rem 6% 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    /* Biar semua card dalam satu row sama tingginya */
    align-items: stretch;
}

.package-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid #ddd;

    /* FIX: card jadi flex column biar content bisa stretch */
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.package-header {
    background: #e8e8e8;
    padding: 1rem;
    text-align: center;
    border-bottom: 2px solid #ddd;
}

.package-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e4d6b;
    text-transform: uppercase;
}

.package-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.package-content {
    padding: 1.5rem;

    /* FIX: flex column + flex:1 biar content memenuhi sisa ruang card */
    display: flex;
    flex-direction: column;
    flex: 1;
}

.package-features {
    list-style: none;
    /* FIX: flex:1 biar list mengisi ruang kosong, dorong button ke bawah */
    flex: 1;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
}

.package-features li {
    font-size: 0.85rem;
    color: #5a6c7d;
    padding: 0.5rem 0 0.5rem 2.5rem;
    position: relative;
    line-height: 1.6;
    text-align: left;
}

.package-features li i {
    position: absolute;
    left: 0;
    top: 0.6rem;
    color: #6c757d;
    font-size: 16px;
    width: 20px;
}

/* ================= BOOKING BUTTON ================= */
.booking-btn {
    width: 60%;
    background: #1e4d6b;
    color: white;
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 auto 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background 0.3s;

    /* FIX: jangan shrink, tetap di posisinya */
    flex-shrink: 0;
}

.booking-btn:hover {
    background: #163d54;
    text-decoration: none;
    color: white;
}

.booking-btn:visited,
.booking-btn:active {
    color: white;
    text-decoration: none;
}

/* ================= PRICE BUTTON ================= */
.price-btn {
    width: 100%;
    background: #2c5f7c;
    color: white;
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    border: none;

    /* FIX: jangan shrink */
    flex-shrink: 0;
}

.price-btn:hover {
    background: #1e4d6b;
}

.price-btn i {
    margin-right: 0.3rem;
}

/* ================= FOOTER ================= */
footer {
    background: linear-gradient(135deg, #1e4d6b, #0d2a3a);
    color: white;
    padding: 3.5rem 6% 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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