/* === PACKAGES PAGE === */

/* Tab buttons */
.pkg-tab {
    font-size: 1rem;
    font-weight: 700;
    background: #eee;
    color: #888;
    border: none;
    transition: all 0.3s ease;
}

.pkg-tab.active {
    background: #da37ab;
    color: #fff;
    box-shadow: 0 4px 16px rgba(218, 55, 171, 0.3);
}

.pkg-tab:hover:not(.active) {
    background: #ddd;
    color: #555;
}

/* Tab content */
.pkg-tab-content {
    display: none;
}

.pkg-tab-content.active {
    display: block;
    animation: pkgFadeUp 0.4s ease;
}

@keyframes pkgFadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Card */
.pkg-card {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pkg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12) !important;
}

/* Card header */
.card-header-custom {
    padding: 1.5rem 1.5rem 1.25rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.card-header-custom::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Ccircle cx='10' cy='10' r='3'/%3E%3Ccircle cx='40' cy='30' r='2'/%3E%3Ccircle cx='20' cy='50' r='2.5'/%3E%3Ccircle cx='50' cy='10' r='2'/%3E%3Ccircle cx='30' cy='40' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
}

.card-header-custom h3 {
    font-size: 1.35rem;
    color: #fff !important;
    margin-bottom: 0;
    text-shadow: none;
    position: relative;
    z-index: 1;
}

.pkg-duration {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 3px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 6px;
    position: relative;
    z-index: 1;
}

/* Tier colours */
.pkg-tier-blue { background: linear-gradient(135deg, #4fc3f7, #3376e4); }
.pkg-tier-teal { background: linear-gradient(135deg, #26c6da, #4fc3f7); }
.pkg-tier-orange { background: linear-gradient(135deg, #ea7830, #ff6b9d); }
.pkg-tier-pink { background: linear-gradient(135deg, #ff6b9d, #f06292); }
.pkg-tier-fuchsia { background: linear-gradient(135deg, #da37ab, #b388ff); }
.pkg-tier-purple { background: linear-gradient(135deg, #9c27b0, #da37ab); }

/* Feature list */
.pkg-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.pkg-features li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
}

.pkg-features li::before {
    content: '🍦';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1rem;
}

/* Notes */
.pkg-note {
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.5rem 0.85rem;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
}

.pkg-note-included {
    background: #e8f5e9;
    color: #2e7d32;
}

.pkg-note-excluded {
    background: #fff3e0;
    color: #e65100;
}

/* Price */
.pkg-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 2px dashed #eee;
    margin-top: 0.75rem;
}

.pkg-price-amount {
    font-family: 'Allan', cursive;
    font-size: 2rem;
    font-weight: 800;
    color: #2d1b4e;
    line-height: 1;
    text-transform: none;
}

.pkg-price-extras {
    font-size: 0.8rem;
    color: #888;
    font-weight: 600;
}

/* Call to Action */
.pkg-cta-section {
    background: linear-gradient(135deg, #da37ab, #b388ff);
    color: #fff;
    padding-bottom: 100px;
    margin-bottom: -100px;
    z-index: 10;
}

.pkg-cta-section h2 {
    color: #fff !important;
    text-shadow: none;
}

.pkg-cta-section p {
    color: rgba(255, 255, 255, 0.9);
}

.pkg-cta-btn {
    font-size: 1.15rem;
    padding: 0.85rem 2.5rem;
    background: #fff !important;
    color: #da37ab !important;
    border-color: #fff !important;
    font-weight: 700;
    transition: all 0.3s ease;
}

.pkg-cta-btn:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
