/* ========== PACKAGES PAGE STYLES (NEW PREMIUM DESIGN) ========== */

.packages-section {
    padding: 3rem 0;
}
.page-header-alt {
    text-align: center;
    margin-bottom: 3rem;
}
.page-header-alt h1 {
    font-size: 3rem;
    color: var(--dark-bg);
}

/* Toggle Switch Styles */
.package-toggle {
    background-color: #e9ecef;
    border-radius: 50px;
    padding: 8px;
    display: inline-flex;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.toggle-btn {
    border: none;
    background-color: transparent;
    color: #6c757d;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.toggle-btn.active {
    background-color: var(--dark-bg);
    color: var(--gold-primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Package Card Styles (NEW LUXURY THEME) */
.package-card {
    background: #1c1c1e; /* Darker, charcoal background */
    color: var(--light-text);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid #333;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    overflow: hidden; /* For the new badge */
}
.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.2);
}

.package-title {
    font-family: var(--font-heading);
    color: var(--gold-primary);
    font-size: 2rem;
    font-weight: 700;
}
.package-class {
    color: var(--grey-text);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.price-section {
    padding: 1rem 0;
    margin-bottom: 1.5rem;
}
.price-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--grey-text);
}
.price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1.2;
}

.features-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
    text-align: left;
}
.features-list li {
    margin-bottom: 0.8rem;
    color: var(--grey-text);
    display: flex;
    align-items: flex-start;
}
.features-list li .fa-check {
    color: var(--gold-primary);
    margin-right: 12px;
    margin-top: 5px;
}

/* === BUTTONS UPDATED TO MATCH SCREENSHOT === */
.card-buttons {
    display: flex;
    gap: 10px;
    margin-top: auto;
}
.btn-card {
    flex: 1;
    text-decoration: none;
    padding: 12px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
    font-family: var(--font-body);
}

/* "Details" Button Style */
.btn-card:not(.purchase) {
    background-color: #2a2a2e; /* Subtle dark background */
    border: 1px solid #a8915f; /* Gold/Bronze border */
    color: #f4e6c2; /* Light gold text */
}
.btn-card:not(.purchase):hover {
    background-color: #3a3a3e;
    border-color: var(--gold-primary);
    color: #ffffff;
}

/* "Purchase/Enquire" Button Style */
.btn-card.purchase {
    background: linear-gradient(to bottom, #ffdb70, #ffc107);
    color: var(--dark-bg);
    border: 1px solid #ffc107;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.btn-card.purchase:hover {
    background: linear-gradient(to bottom, #ffde8a, #ffc926);
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}


/* NEW CORNER RIBBON BADGE */
.package-card.popular {
    position: relative;
    border-color: var(--gold-primary);
}
.popular-badge {
    position: absolute;
    top: 18px;
    right: -34px;
    background-color: var(--gold-primary);
    color: var(--dark-bg);
    padding: 6px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    text-transform: uppercase;
}

/* Modal Styling */
.modal-header {
    background-color: var(--dark-bg);
    color: var(--gold-primary);
    border-bottom: 2px solid var(--gold-primary);
}
.modal-title { font-family: var(--font-heading); }
.btn-close { filter: invert(1) grayscale(100%) brightness(200%); }
.detail-label { font-weight: 600; color: #6c757d; margin-bottom: 0; }
.detail-value { font-size: 1.2rem; }