/* ===== PACKAGE INFO HEADER ===== */
.package-info-header {
    height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: var(--white);
    padding: 6rem 0 2rem; /* Increased top padding to avoid navbar overlap */
    border-bottom: 1px solid var(--gray-200);
    position: relative;
    padding: 2rem 0 2rem;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.package-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.package-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.package-meta {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    color: var(--gray-600);
}

.package-meta span {
    color: var(--gray-600);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-meta i {
    color: var(--primary-color);
}

.rating {
    color: #ffc107 !important;
}

.package-price {
    text-align: right;
    color: var(--gray-800);
}

.original-price {
    text-decoration: line-through;
    color: var(--gray-500);
    font-size: 1.2rem;
    display: block;
}

.discounted-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.package-price small {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* ===== MAIN CONTENT SECTION ===== */
.select-dates-main {
    padding: 3rem 0;
    backdrop-filter: blur(10px);
    /* background: var(--rgba-white-95); */
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    min-height: 80vh;
}

/* ===== STEP INDICATOR ===== */
.step-indicator {
    margin-bottom: 2rem;
    color: var(--gray-800);
}

.step {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.step.active .step-number {
    background: var(--primary-color);
    color: var(--white);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.step-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
}

/* ===== DATE SELECTION CONTAINER ===== */
.date-selection-container {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

/* ===== MONTH NAVIGATION ===== */
.month-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    color: var(--gray-800);
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--gray-300);
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--gray-600);
    font-size: 1.2rem;
}

.nav-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.current-month {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
}

/* ===== QUICK DATES SELECTION ===== */
.quick-dates {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.quick-date-item {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.quick-date-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(216, 160, 95, 0.2);
}

.quick-date-item.active {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(216, 160, 95, 0.1), rgba(216, 160, 95, 0.05));
}

.date-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.date-info .month {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 0.9rem;
}

.date-info .price {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* ===== DATE OPTIONS GRID ===== */
.date-options-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.date-option-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.date-option-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(216, 160, 95, 0.15);
}

.date-range {
    text-align: left;
}

.day-label {
    color: var(--gray-600);
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}

.date-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
}

/* ===== DISCOUNT INFO ===== */
.discount-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.discount-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #28a745;
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-info {
    text-align: right;
}

.pricing-info .original-price {
    text-decoration: line-through;
    color: var(--gray-500);
    font-size: 1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.pricing-info .final-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 1rem;
}

.btn-check-spaces {
    background: linear-gradient(135deg, var(--primary-color), #d4945f);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-check-spaces:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(216, 160, 95, 0.3);
}

.continue-section {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.btn-continue {
    background: linear-gradient(135deg, var(--primary-color), #d4945f);
    color: var(--white);
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(216, 160, 95, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-continue:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(216, 160, 95, 0.4);
}

.btn-continue i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-continue:hover i {
    transform: translateX(5px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .package-card {
        padding: 1.5rem;
    }

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

    .package-meta {
        gap: 1rem;
    }
}

@media (max-width: 992px) {
    .package-card .row > div {
        text-align: center !important;
        margin-bottom: 1rem;
    }

    .package-price {
        text-align: center;
    }

    .date-selection-container {
        padding: 1.5rem;
    }

    .quick-dates {
        gap: 0.25rem;
    }

    .quick-date-item {
        min-width: 80px;
        padding: 0.75rem;
    }
}

@media (max-width: 768px) {
    .package-info-header {
        padding: 1.5rem 0;
    }

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

    .package-meta {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .select-dates-main {
        padding: 2rem 0;
    }

    .date-selection-container {
        padding: 1rem;
        border-radius: 15px;
    }

    .month-navigation {
        gap: 1rem;
    }

    .current-month {
        font-size: 1.3rem;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .quick-dates {
        padding: 0.5rem;
        gap: 0.25rem;
    }

    .quick-date-item {
        min-width: 70px;
        padding: 0.5rem;
    }

    .date-info .month {
        font-size: 0.8rem;
    }

    .date-info .price {
        font-size: 0.7rem;
    }

    .date-option-card {
        padding: 1rem;
    }

    .date-option-card .row > div {
        margin-bottom: 1rem;
        text-align: center;
    }

    .pricing-info {
        text-align: center;
    }

    .btn-continue {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .step {
        padding: 0.75rem 1.5rem;
    }

    .step-text {
        font-size: 1rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .quick-dates {
        flex-wrap: wrap;
        justify-content: center;
    }

    .quick-date-item {
        flex: 0 0 calc(25% - 0.25rem);
        min-width: auto;
    }

    .date-option-card .row > div {
        text-align: center !important;
    }

    .discount-info {
        text-align: center;
    }
}
