.packages-section {
    position: relative;
    width: 100%;
    padding: 100px 0;
    margin: 0;
    background-color: var(--theme-palette-color-1);
}

.packages-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* margin-bottom: 60px; */
}

.packages-title {
    font-size: 45px;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
}

.packages-subtitle {
    text-align: right;
    line-height: 1.2;
}

.subtitle-green {
    font-size: 24px;
    font-weight: 400;
    color: #AFD235;
    text-transform: uppercase;
}

.subtitle-white {
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
    padding-top: 60px;
}

.package-card {
    position: relative;
    background-color: #ffffff;
    border-radius: 36px;
    overflow: visible;
    margin-top: 25px;
}

.package-date {
    background-color: #D72227;
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    padding: 10px 40px;
    text-transform: uppercase;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%) skewX(-25deg);
    z-index: 10;
    white-space: nowrap;
    overflow: visible;
    border-radius: 12px;
}

.package-date span {
    display: inline-block;
    transform: skewX(25deg);
}

.package-content {
    padding: 50px 30px 30px 30px;
    text-align: center;
}

.package-label {
    font-size: 19px;
    font-weight: 400;
    color: #000;
    margin: 0;
    text-transform: uppercase;
}

.package-name {
    font-size: 26px;
    font-weight: 500;
    color: #000;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.package-stadium {
    width: 140px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
}

.package-location {
    font-size: 22px;
    font-weight: 400;
    color: #000;
    margin: 0;
    text-transform: uppercase;
}

.package-city {
    font-size: 15px;
    font-weight: 400;
    color: #000;
    margin: 0 0 25px 0;
    text-transform: uppercase;
}

.package-flags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.package-flags img {
    width: 55px;
    height: auto;
}

.package-flags img.flag-small {
    width: 45px;
}

.package-match-wrapper {
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 25px;
}

.package-match {
    font-size: 22px;
    font-weight: 500;
    color: #000;
    margin: 0;
    text-transform: uppercase;
}

.package-match span {
    font-size: 12px;
    margin: 0 7px;
}

.package-playoff {
    font-size: 14px;
    font-weight: 300;
    color: #000;
    margin: 0;
    text-transform: uppercase;
    text-align: right;
}

.package-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 0 -30px;
    padding: 20px 0;
}

.info-item {
    text-align: center;
    padding: 0 15px 5px 15px;
    position: relative;
}

.info-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 4px;
}

.info-item.info-days::after {
    background-color: #FDD945;
}

.info-item.info-checkin::after {
    background-color: #6CA442;
}

.info-item.info-checkout::after {
    background-color: #D71F2A;
}

.info-item span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
    line-height: 1.6;
}

.package-toggle {
    background-color: #F2F2F2;
    border: none;
    color: #000;
    font-size: 18px;
    font-weight: 300;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: underline;
    padding: 25px 30px;
    width: 100%;
    margin: 0;
    transition: opacity 0.3s ease;
    display: block;
    border-bottom-left-radius: 36px;
    border-bottom-right-radius: 36px;
}

.package-toggle:hover {
    opacity: 0.8;
}

.package-toggle.hidden {
    display: none;
}

.package-details {
    display: none;
    background-color: #ffffff;
    border-radius: 0 0 36px 36px;
    overflow: hidden;
}

.package-details.active {
    display: block;
}

.package-timeline {
    list-style: none;
    padding: 30px;
    margin: 0;
    text-align: left;
}

.package-timeline li {
    padding: 0 0 20px 30px;
    margin-bottom: 15px;
    position: relative;
    font-size: 15px;
    font-weight: 300;
    color: #000;
    line-height: 1.5;
    text-transform: uppercase;
}

.package-timeline li:last-child {
    margin-bottom: 0;
}

.package-timeline li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 15px;
    height: 15px;
    background-color: #F69D81;
    border-radius: 50%;
}

.package-timeline li span {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: #000;
    margin-bottom: 8px;
}

.package-close {
    background-color: #F2F2F2;
    color: #000;
    border: none;
    padding: 25px 0;
    width: 100%;
    font-size: 18px;
    font-weight: 300;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: underline;
    transition: opacity 0.3s ease;
    border-radius: 0 0 36px 36px;
}

.package-close:hover {
    opacity: 0.8;
}

.packages-indicators {
    display: none;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.indicator {
    width: 40px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: rgba(255, 255, 255, 1);
}

.form-section .frm_forms select {
    padding: 8px 20px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .packages-section {
        padding: 80px 0;
    }
    
    .packages-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .packages-subtitle {
        text-align: left;
    }
    
    .packages-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 20px;
    }
    
    .packages-grid::-webkit-scrollbar {
        display: none;
    }
    
    .package-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        max-width: 400px;
    }
    
    .packages-title {
        font-size: 36px;
    }

    .packages-indicators {
        display: flex;
    }
}

@media (max-width: 768px) {
    .packages-title {
        font-size: 32px;
    }
    
    .subtitle-green,
    .subtitle-white {
        font-size: 20px;
    }
    
    .package-card {
        flex: 0 0 90%;
    }
    
    .package-name {
        font-size: 24px;
    }
    
    .package-match {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .packages-section {
        padding: 60px 0;
    }
    
    .packages-title {
        font-size: 28px;
    }
    
    .package-card {
        flex: 0 0 95%;
    }
    
    .package-date {
        font-size: 18px;
    }
    
    .package-content {
        padding: 50px 20px 30px 20px;
    }
    
    .package-info {
        margin: 0 -20px;
    }
    
    .package-toggle {
        padding: 25px 20px;
    }
}