/* Packages Section */
.packages-section {
    padding: 100px 40px;
    background: black;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.packages-section .section-header {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.packages-section .section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #888;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.packages-section .section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
    letter-spacing: -1.5px;
    line-height: 1.2;
}

.packages-section .section-subtitle {
    color: #888;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

.slider-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 60px;
}

.packages-slider {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 0;
}

.package-card {
    flex: 0 0 calc(50% - 12px);
    min-width: 300px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 32px 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.package-header {
    margin-bottom: 24px;
    position: relative;
}

.package-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.package-description {
    color: #777;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 20px;
}

.price-label {
    color: #666;
    font-size: 13px;
    font-weight: 500;
}

.price-amount {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.package-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 20px 0;
}

.package-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.package-card ul li {
    margin: 10px 0;
    color: #999;
    font-size: 14px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.package-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #666;
    font-weight: 600;
    font-size: 14px;
}

.package-cta {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-button {
    width: 100%;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #ccc;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.featured-badge {
    position: absolute;
    top: -8px;
    right: 16px;
    background: #333;
    color: #ccc;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Slider Controls */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.slider-nav.prev {
    left: 10px;
}

.slider-nav.next {
    right: 10px;
}

.slider-nav svg {
    width: 20px;
    height: 20px;
    stroke: #999;
}

.slider-nav:hover svg {
    stroke: #fff;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: rgba(255, 255, 255, 0.6);
    width: 24px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 1200px) {
    .package-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .packages-section {
        padding: 80px 20px;
    }

    .packages-section .section-title {
        font-size: 32px;
    }

    .slider-container {
        padding: 0 50px;
    }

    .package-card {
        flex: 0 0 calc(100% - 24px);
        min-width: 280px;
    }

    .slider-nav {
        width: 36px;
        height: 36px;
    }
}