/* ===== PACKAGES PAGE STYLES ===== */
/* Extracted from style.css - only classes used in packages.php */

/* PERFORMANCE: Removed @import statements to eliminate render-blocking */
/* Variables and components are now preloaded in HTML head */

/* ===== PAGE HERO (PACKAGES PAGE) ===== */
.page-hero-content h1 {
    color: var(--cosmic-gold);
    background: linear-gradient(90deg, #d4af37, #e6c46b, #f4e08a, #e6c46b, #d4af37);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

.golden-text {
    position: relative;
    background: linear-gradient(90deg, #d4af37, #e6c46b, #f4e08a, #e6c46b, #d4af37);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== PACKAGES CONTAINER ===== */
.packages-container {
    width: 100%;                       /* Full width */
    margin: 0;                         /* No auto centering */
    padding: 4rem 2rem;                /* Standard padding */
}

.packages-container > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.packages-container.dark-cosmic {
    background: rgba(11, 20, 38, 0.95);
    padding: 4rem 2rem !important;
    position: relative;
    z-index: 0;
}

.packages-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.packages-intro h2 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.packages-intro p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== SINGLE COLUMN PACKAGES LAYOUT ===== */
.packages-single-column {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.package-showcase-card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    overflow: visible;
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: 300px;
    transition: all 0.3s ease;
    position: relative;
}

.package-showcase-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: var(--shadow-gold);
}

/* ===== FEATURED PACKAGE BADGE ===== */
.package-featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--cosmic-gold), #e6c46b);
    color: var(--deep-space);
    padding: 5px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

/* ===== PACKAGE LEFT SIDE (IMAGE & BUTTON) ===== */
.package-left {
    background: linear-gradient(135deg, var(--cosmic-purple), var(--cosmic-gold));
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
}

.package-image-container {
    margin-bottom: 1.5rem;
}

.package-showcase-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.package-left .cta-button {
    margin-top: auto;
}

/* ===== PACKAGE RIGHT SIDE (CONTENT) ===== */
.package-right {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
}

.package-title {
    color: var(--cosmic-gold);
    margin-bottom: 0.5rem;
    font-size: 2rem;
    font-weight: 600;
}

.package-tagline {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.5;
}

.package-price {
    color: var(--cosmic-gold);
    font-size: 1.4rem;
    font-weight: 700;
}

.package-pricing-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.original-price {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1rem;
}

.package-savings {
    color: var(--success-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.package-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.final-cta h2 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: clamp(1.4rem, 4vw, 3rem);
}

/* ===== ENHANCED BUTTON STYLING FOR DARK COSMIC ===== */
.packages-container.dark-cosmic .cta-button.secondary {
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.3);
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 480px) {
    .packages-container.dark-cosmic {
        padding: 2.5rem 1rem !important;
    }
    
    .packages-single-column {
        gap: 2rem;
    }
    
    .package-showcase-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .package-left {
        padding: 1.5rem;
        border-top-left-radius: 18px;
        border-top-right-radius: 18px;
        border-bottom-left-radius: 0;
    }
    
    .package-right {
        padding: 1.5rem;
    }
    
    .package-title {
        font-size: 1.5rem;
    }
    
    .package-price {
        font-size: 1.2rem;
    }
    
    .package-description {
        font-size: 1rem;
    }
}

/* ===== RESPONSIVE - TABLET ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    .packages-container.dark-cosmic {
        padding: 3rem 1.5rem !important;
    }
    
    .package-showcase-card {
        grid-template-columns: 230px 1fr;
        gap: 0;
    }
    
    .package-left {
        padding: 1.5rem;
    }
    
    .package-right {
        padding: 2rem;
    }
    
    .package-title {
        font-size: 1.8rem;
    }
    
    .package-price {
        font-size: 1.3rem;
    }
}

/* ===== RESPONSIVE - MOBILE-TABLET OVERLAP ===== */
@media (min-width: 481px) and (max-width: 768px) {
    .package-showcase-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .package-left {
        padding: 2rem;
        order: 1;
    }
    
    .package-right {
        padding: 2rem;
        order: 2;
    }
    
    .package-image-container {
        margin-bottom: 1.5rem;
    }
}

/* ===== PACKAGE PRICING ELEMENTS ===== */
.package-savings {
    background: rgba(76, 175, 80, 0.8);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-left: 0.5rem;
}

/* ===== PACKAGE FEATURES SECTIONS ===== */
.package-included h4,
.package-benefits h5 {
    color: var(--cosmic-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.package-included ul,
.package-benefits ul {
    list-style: none;
    padding: 0;
}

.package-included li,
.package-benefits li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    font-size: 0.9rem;
}

.package-included li:before {
    content: "\f067";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--cosmic-gold);
    position: absolute;
    left: 0;
    top: 0;
}

.package-benefits li:before {
    content: "\f140";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--cosmic-gold);
    position: absolute;
    left: 0;
    top: 0;
}

/* ===== PACKAGE FEATURES SECTION ===== */
.package-features-section {
    padding: 4rem 0;
}

.package-features-section .section-title {
    text-align: center;
    color: var(--text-white);
    margin-bottom: 2rem;
}

/* ===== PACKAGE FEATURES 2-COLUMN LAYOUT ===== */
.package-features-2-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: rgba(26, 26, 46, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-5px);
}

.feature-item h3,
.feature-item h4 {
    color: var(--cosmic-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-item p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ===== PACKAGES RESPONSIVE ADDITION ===== */
@media (max-width: 768px) {
    .package-features-2-column {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
}