/* Pack Detail Styles - Pack Detail Page */

/* Pack hero */
.pack-hero {
    margin: 20px;
    margin-top: 10px;
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(135deg, #C8FF00 0%, #BAF631 100%);
    border-radius: 24px;
    overflow: hidden;
}

.pack-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.pack-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.pack-hero-content {
    position: relative;
    z-index: 3;
    color: white;
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 60%;
}

.pack-level-badge-hero {
    background: rgba(0, 0, 0, 0.7);
    color: #C8FF00;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    width: fit-content;
    backdrop-filter: blur(10px);
}

.pack-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.pack-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: #C8FF00;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.pack-hero-description {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.pack-hero-cta {
    background: #C8FF00;
    color: #333;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    width: fit-content;
}

.pack-hero-cta:hover {
    background: #BAF631;
    color: #333;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Pack info sections */
.pack-info {
    margin: 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.pack-main-info {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
}

.pack-sidebar {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    position: sticky;
    top: 100px;
}

.section-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    color: #C8FF00;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Pack features grid */
.pack-features-detail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-detail-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.feature-detail-icon {
    width: 60px;
    height: 60px;
    background: #C8FF00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #333;
    font-size: 1.5rem;
}

.feature-detail-title {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-detail-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Schedule */
.schedule-table {
    margin-bottom: 3rem;
}

.schedule-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.schedule-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.1);
}

.schedule-number {
    background: #C8FF00;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.schedule-content h4 {
    color: white;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.schedule-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.schedule-duration {
    color: #C8FF00;
    font-weight: 600;
    font-size: 0.85rem;
    margin-left: auto;
    flex-shrink: 0;
}

/* What's included list */
.included-detailed {
    list-style: none;
    padding: 0;
}

.included-detailed li {
    color: rgba(255, 255, 255, 0.8);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.included-detailed li:last-child {
    border-bottom: none;
}

.included-detailed .check-icon {
    color: #C8FF00;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.included-item-content h5 {
    color: white;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.included-item-content p {
    margin: 0;
    font-size: 0.85rem;
}

/* Sidebar pricing */
.pack-pricing-sidebar {
    text-align: center;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.price-badge {
    background: #C8FF00;
    color: #333;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.price-amount {
    color: #C8FF00;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.price-period {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Quick info */
.quick-info {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.info-value {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.book-btn {
    background: #C8FF00;
    color: #333;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.book-btn:hover {
    background: #BAF631;
    color: #333;
    text-decoration: none;
    transform: translateY(-2px);
}

.contact-trainer {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-trainer:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .pack-hero {
        margin: 10px;
        margin-top: 20px;
        height: 50vh;
        min-height: 350px;
        border-radius: 20px;
    }

    .pack-hero-content {
        padding: 2rem;
        max-width: 100%;
    }

    .pack-hero h1 {
        font-size: 2.5rem;
    }

    .pack-info {
        margin: 10px;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pack-main-info,
    .pack-sidebar {
        padding: 2rem;
    }

    .pack-sidebar {
        position: static;
        order: -1;
    }

    .pack-features-detail {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-detail-item {
        padding: 1.5rem;
    }

    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .schedule-duration {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .pack-hero {
        margin: 8px;
        margin-top: 15px;
        border-radius: 18px;
    }

    .pack-hero-content {
        padding: 1.5rem;
    }

    .pack-hero h1 {
        font-size: 2rem;
    }

    .pack-info {
        margin: 8px;
    }

    .pack-main-info,
    .pack-sidebar {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .feature-detail-item {
        padding: 1.2rem;
    }

    .schedule-item {
        padding: 1.2rem;
    }

    .schedule-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        margin-right: 1rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }
}

/* Ultra-small screens */
@media (max-width: 360px) {
    .pack-hero {
        margin: 6px;
        min-height: 320px;
        border-radius: 16px;
    }

    .pack-hero-content {
        padding: 1.2rem;
    }

    .pack-hero h1 {
        font-size: 1.8rem;
    }

    .pack-hero-subtitle {
        font-size: 1.1rem;
    }

    .pack-info {
        margin: 6px;
    }

    .pack-main-info,
    .pack-sidebar {
        padding: 1.2rem;
    }

    .feature-detail-item {
        padding: 1rem;
    }

    .schedule-item {
        padding: 1rem;
    }

    .included-detailed li {
        padding: 0.8rem 0;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .pack-hero-overlay {
        background: rgba(0, 0, 0, 0.6);
    }
    
    .price-badge,
    .book-btn {
        background: #C8FF00;
        color: #000;
        border: 2px solid #C8FF00;
    }

    .contact-trainer {
        border: 2px solid rgba(255, 255, 255, 0.5);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .pack-hero-cta,
    .book-btn,
    .contact-trainer,
    .schedule-item {
        transform: none !important;
        transition: none !important;
    }
}

/* Print styles */
@media print {
    .pack-hero {
        height: auto;
        min-height: 300px;
        page-break-inside: avoid;
        background: #f5f5f5 !important;
        color: #000 !important;
    }
    
    .pack-hero-bg,
    .pack-hero-overlay {
        display: none;
    }
    
    .pack-hero h1,
    .pack-hero-subtitle,
    .pack-hero-description {
        color: #000 !important;
        text-shadow: none !important;
    }
    
    .pack-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pack-sidebar {
        position: static;
        page-break-inside: avoid;
    }
    
    .book-btn,
    .contact-trainer {
        display: none;
    }
}