/* Packages Section */
.packages-section {
    padding: 80px 0;
    /* Tech Mesh Pattern */
    background-color: #003366;
    /* Royal Blue - Lighter & More Vibrant */
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255, 255, 255, 0.08) 20px, rgba(255, 255, 255, 0.08) 21px),
        repeating-linear-gradient(135deg, transparent, transparent 20px, rgba(255, 255, 255, 0.08) 20px, rgba(255, 255, 255, 0.08) 21px);
    background-attachment: scroll;
    /* Clean, lightweight, tech-inspired */
}

.package-card {
    display: flex;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 80px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

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

.package-card.reverse {
    flex-direction: row-reverse;
}

.package-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.package-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #002D72;
    /* Fallback brand color */
    display: flex;
    justify-content: center;
    align-items: center;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fill the container completely */
    transition: transform 0.5s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.05);
}

/* Typography */
.package-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #002D72;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.package-headline {
    font-size: 1.1rem;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 25px;
}

.package-sub {
    font-weight: 700;
    margin-bottom: 15px;
    color: #111827;
}

.package-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.package-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.5;
}

.package-list li::before {
    content: "•";
    /* Bullet */
    color: #002D72;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    line-height: 1.5rem;
}

/* Pricing */
/* Pricing */
/* Promo Box Redesign */
.package-promo-box {
    background: #f8fafc;
    /* Light Slate Background */
    border: 1px dashed #cbd5e1;
    /* Subtle "Coupon" Effect */
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.promo-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #64748b;
}

.label-muted {
    font-weight: 500;
}

.price-strike {
    color: #ef4444;
    /* Red */
    text-decoration: line-through;
    font-weight: 600;
}

.promo-action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.price-badge-yellow {
    background: #fbbf24;
    /* Amber-400 */
    color: #000;
    /* Black text */
    font-size: 2rem;
    font-weight: 800;
    padding: 8px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(251, 191, 36, 0.4);
    line-height: 1;
    transform: rotate(-1deg);
    /* Slight fun tilt */
}

.promo-note {
    font-size: 0.85rem;
    color: #f59e0b;
    /* Amber Dark */
    font-weight: 600;
    margin-top: 5px;
}

/* Buttons */
.package-btn,
.package-css-btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    color: white;
    white-space: nowrap;
}



.package-btn {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    /* Green */
}

.package-css-btn {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.package-btn:hover,
.package-css-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}



/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .packages-section {
        padding: 40px 0;
    }

    .package-card {
        flex-direction: column;
        /* Stack VERTICALLY */
        margin-bottom: 40px;
        border-radius: 16px;
    }

    .package-card.reverse {
        flex-direction: column;
        /* Stack same way on mobile */
    }

    .package-content {
        padding: 30px 20px;
        order: 2;
        /* Content below image on mobile usually, or above? Design has image right on desktop. Let's put content below image. */
    }

    .package-image {
        order: 1;
        min-height: 250px;
    }

    .package-title {
        font-size: 1.8rem;
    }

    .package-promo-box {
        padding: 15px;
    }

    .promo-action-row {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .price-badge-yellow {
        text-align: center;
        font-size: 1.8rem;
    }

    .package-btn,
    .package-css-btn {
        width: 100%;
        text-align: center;
    }
}