/* ===== PAGE BANNER ===== */
.pkg-banner {
    background: url('../images/carousel2.webp') center center / cover no-repeat;
}

.page-banner {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,61,107,0.35), rgba(26,107,191,0.25));
}

.banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 0 20px;
}

.banner-content h1 { font-size: 52px; font-weight: 800; margin-bottom: 14px; }
.banner-content p  { font-size: 17px; opacity: 0.9; max-width: 600px; margin: 0 auto 20px; }

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}
.breadcrumb a    { color: #f9c74f; font-weight: 600; }
.breadcrumb i    { font-size: 11px; opacity: 0.7; }
.breadcrumb span { opacity: 0.85; }

/* ===== INTRO ===== */
.pkg-intro {
    padding: 70px 0 0;
    background: #fff;
}

/* ===== FILTER TABS ===== */
.pkg-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
    padding-bottom: 50px;
}

.pkg-tab {
    background: #f0f6ff;
    border: 2px solid #d0e8ff;
    color: #0a3d6b;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 26px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.pkg-tab:hover,
.pkg-tab.active {
    background: linear-gradient(135deg, #0a3d6b, #1a6bbf);
    color: #fff;
    border-color: transparent;
}

/* ===== PACKAGES SECTION ===== */
.pkg-section {
    padding: 0 0 90px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

/* ===== PACKAGE CARD ===== */
.pkg-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px 30px 36px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid #d0e8ff;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: visible;
}

.pkg-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-top-color: #f9c74f;
}

.pkg-card.featured {
    background: linear-gradient(160deg, #0a3d6b, #1a6bbf);
    color: #fff;
    border-top-color: #f9c74f;
}

.pkg-badge {
    display: inline-block;
    align-self: center;
    background: #f9c74f;
    color: #0a3d6b;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 20px;
    white-space: nowrap;
    margin-bottom: 16px;
}

.pkg-badge-green {
    background: #22c55e;
    color: #fff;
}

.pkg-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, #e8f4ff, #d0e8ff);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.pkg-card.featured .pkg-icon {
    background: rgba(255,255,255,0.15);
}

.pkg-icon i {
    font-size: 28px;
    color: #0a3d6b;
}

.pkg-card.featured .pkg-icon i { color: #f9c74f; }

.pkg-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0a3d6b;
    margin-bottom: 6px;
}

.pkg-card.featured h3 { color: #fff; }

.pkg-subtitle {
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
}

.pkg-card.featured .pkg-subtitle { color: rgba(255,255,255,0.7); }

/* ===== PRICE ===== */
.pkg-price {
    background: #f9fbff;
    border-radius: 14px;
    padding: 14px 18px;
    margin-bottom: 24px;
}

.pkg-card.featured .pkg-price {
    background: rgba(255,255,255,0.12);
}

.price-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.pkg-card.featured .price-label { color: rgba(255,255,255,0.6); }

.price {
    font-size: 30px;
    font-weight: 800;
    color: #0a3d6b;
}

.pkg-card.featured .price { color: #f9c74f; }

.price small {
    font-size: 14px;
    font-weight: 600;
    color: #888;
}

.pkg-card.featured .price small { color: rgba(255,255,255,0.6); }

/* ===== FEATURES LIST ===== */
.pkg-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    flex: 1;
}

.pkg-features li {
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pkg-card.featured .pkg-features li { color: rgba(255,255,255,0.9); }

.pkg-features li i.fa-check { color: #22c55e; font-size: 13px; }
.pkg-features li i.fa-times  { color: #ef4444; font-size: 13px; }
.pkg-features li.not-included { opacity: 0.6; }

.pkg-card .btn-primary {
    display: block;
    text-align: center;
    margin-top: auto;
}

/* ===== HIDDEN CARDS (filter) ===== */
.pkg-card.hidden {
    display: none;
}

/* ===== INCLUSIONS ===== */
.inclusions-section {
    padding: 90px 0;
    background: #f9fbff;
    position: relative;
    overflow: hidden;
}

.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.inclusion-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.inclusion-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.1);
}

.inclusion-card i {
    font-size: 36px;
    color: #f9c74f;
    margin-bottom: 14px;
    display: block;
}

.inclusion-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0a3d6b;
    margin-bottom: 8px;
}

.inclusion-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

/* ===== NOTE SECTION ===== */
.pkg-note-section {
    padding: 50px 0;
    background: #fff;
}

.pkg-note {
    background: linear-gradient(135deg, #e8f4ff, #f0f9ff);
    border-left: 5px solid #1a6bbf;
    border-radius: 16px;
    padding: 30px 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.pkg-note > i {
    font-size: 28px;
    color: #1a6bbf;
    flex-shrink: 0;
    margin-top: 2px;
}

.pkg-note h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0a3d6b;
    margin-bottom: 12px;
}

.pkg-note ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: disc;
    padding-left: 18px;
}

.pkg-note ul li {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .pkg-grid { grid-template-columns: repeat(2, 1fr); }
    .inclusions-grid { grid-template-columns: repeat(2, 1fr); }
    .banner-content h1 { font-size: 38px; }
}

@media (max-width: 768px) {
    .page-banner { height: 280px; }
    .banner-content h1 { font-size: 28px; }
    .pkg-grid { grid-template-columns: 1fr; }
    .inclusions-grid { grid-template-columns: repeat(2, 1fr); }
    .pkg-note { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
    .inclusions-grid { grid-template-columns: 1fr; }
    .pkg-tabs { gap: 8px; }
    .pkg-tab { font-size: 13px; padding: 8px 18px; }
}
