/* Packages Section */
.packages-section {
    font-family: 'Segoe UI', sans-serif;
    background: #fff3cd;
    padding: 100px 20px;
    text-align: center;
}

.packages-section h1 {
    margin-bottom: 40px;
    color: rgb(180, 18, 5);
    font-size: 2.2rem;
}

.packages-container {
    display: flex;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

/* Base Card */
.package-card {
    background: #fff3cd;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    flex: 1 1 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid rgb(0 0 0);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.package-card h2 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: rgb(180, 18, 5);
}

.package-card p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #555;
}

/* Features */
.package-features {
    list-style: none;
    padding: 0;
    text-align: left;
    flex-grow: 1;
}

.package-features li {
    margin: 12px 0;
    font-size: 1rem;
    color: #555;
    display: flex;
    align-items: center;
}

.package-features li::before {
    content: "✓";
    margin-right: 10px;
    font-weight: bold;
    color: rgb(180, 18, 5);
}

/* Buttons */
.package-card button {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    background: rgb(180, 18, 5);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
}

/* Gold Package */
.package-card.popular {
    background: rgb(255, 226, 224);
    border: 2px solid rgb(180, 18, 5);
    transform: scale(1.05);
}

/* Ribbon */
.ribbon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(
        135deg,
        #d4af37,
        #ffeb8a,
        #ffd700,
        #b8962e
    );
    color: #000;
    font-weight: 700;
    padding: 6px 14px;
    font-size: 0.85rem;
    border: 2px solid #000;
    border-radius: 8px;
    text-transform: uppercase;
}

/* PREMIUM CARD */
.package-premium {
    background: linear-gradient(180deg, #0b0b0b, #1a1a1a);
    border: 2px solid #d4af37;
    transform: scale(1.12);
    z-index: 3;
    box-shadow:
        0 15px 40px rgba(0,0,0,0.6),
        0 0 25px rgba(212,175,55,0.4);
}

.package-premium:hover {
    transform: scale(1.15) translateY(-8px);
}

/* Premium text */
.package-premium .price,
.package-premium p,
.package-premium .package-features li {
    color: #ffd700;
}

.package-premium .package-features li::before {
    color: #d4af37;
}

/* Premium button */
.package-premium button {
    background: linear-gradient(135deg, #d4af37, #ffd700, #b8962e);
    color: #000;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(212,175,55,0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .packages-container {
        flex-direction: column;
        align-items: center;
    }

    .package-card {
        max-width: 350px;
        transform: none !important;
    }
}
