@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.btn-modern-primary:hover {
    text-decoration: none !important;
    color: white !important;
}

.stats-card-comprehensive:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.main-hero-image {
    object-fit: cover;
    object-position: center center;
}

@media (max-width: 1200px) {
    /* .main-hero-image {
        background-position: center top !important;
    } */
    .hero-stats {
        margin-top: 40px !important;
        height: auto !important;
    }
    .stats-card-comprehensive {
        width: 320px !important;
        padding: 32px 24px !important;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem !important;
    }
    .hero-stats {
        margin-top: 30px !important;
        justify-content: center !important;
    }
    .stats-card-comprehensive {
        width: 300px !important;
        padding: 30px 20px !important;
    }
}

@media (max-width: 768px) {
    .row {
        padding-top: 20px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        justify-content: center !important;
    }
    .col-lg-6:first-child {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .col-lg-6:last-child {
        display: none !important;
    }
    .hero-content {
        text-align: center !important;
        padding: 0 15px !important;
        max-width: 100% !important;
    }
    .hero-badge {
        margin-bottom: 20px !important;
        padding: 10px 24px !important;
        font-size: 13px !important;
    }
    .hero-title {
        font-size: 2.4rem !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }
    .hero-subtitle {
        font-size: 1rem !important;
        max-width: 90% !important;
        margin: 0 auto 30px auto !important;
        line-height: 1.6 !important;
    }
    .hero-buttons {
        justify-content: center !important;
        gap: 15px !important;
        margin-bottom: 0 !important;
    }
    .btn-modern-primary, .btn-modern-secondary {
        padding: 14px 28px !important;
        font-size: 15px !important;
        width: auto !important;
        min-width: 160px !important;
    }
    .main-hero-image {
        background-position: center center !important;
        background-size: cover !important;
    }
    .hero-area {
        min-height: 100vh !important;
        display: flex !important;
        align-items: center !important;
    }
}

@media (max-width: 576px) {
    .row {
        padding-top: 10px !important;
        margin: 0 !important;
    }
    .hero-content {
        padding: 0 10px !important;
    }
    .hero-badge {
        margin-bottom: 16px !important;
        padding: 8px 20px !important;
        font-size: 12px !important;
    }
    .hero-title {
        font-size: 2rem !important;
        margin-bottom: 16px !important;
        line-height: 1.2 !important;
    }
    .hero-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 25px !important;
        max-width: 95% !important;
    }
    .hero-buttons {
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
    }
    .btn-modern-primary, .btn-modern-secondary {
        width: 220px !important;
        padding: 12px 24px !important;
        font-size: 14px !important;
    }
}

.package-slider-container {
    position: relative;
}

.package-card-compact {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    margin: 8px;
    height: 420px;
    display: flex;
    flex-direction: column;
}

.package-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.package-image-compact {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.package-image-compact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.package-card-compact:hover .package-image-compact img {
    transform: scale(1.05);
}

.package-rating {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255,255,255,0.95);
    color: #0A2463;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.package-heart {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A2463;
    font-size: 14px;
    transition: all 0.3s ease;
    z-index: 2;
    text-decoration: none;
}

.package-heart:hover {
    background: #0A2463;
    color: white;
}

.package-content-compact {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-location {
    color: #0A2463;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 6px;
    opacity: 0.8;
}

.package-title {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.package-title a {
    color: #0A2463;
    text-decoration: none;
    transition: color 0.3s ease;
}

.package-title a:hover {
    color: #1e5aa8;
}

.package-time {
    color: #0A2463;
    font-size: 12px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.package-desc {
    color: #0A2463;
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 8px;
    flex: 1;
    opacity: 0.9;
}

.package-hotels {
    font-size: 11px;
    color: #0A2463;
    opacity: 0.8;
    line-height: 1.3;
}

.package-footer-compact {
    padding: 12px 16px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eee;
}

.package-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-amount {
    color: #0A2463;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
}

.price-unit {
    color: #0A2463;
    font-size: 11px;
    opacity: 0.7;
    margin-top: 2px;
}

.package-book-btn {
    background: none;
    border: none;
    color: #0A2463;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.package-book-btn:hover {
    background: #0A2463;
    color: white;
    transform: translateX(2px);
}

/* Alert Styles */
.alert {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #0A2463;
    color: white;
}

.btn-primary:hover {
    background-color: #1e5aa8;
    color: white;
}

/* Empty State Styles */
.empty-state {
    text-align: center;
    padding: 50px 20px;
    color: #0A2463;
}

.empty-state i {
    margin-bottom: 20px;
}

.empty-state h5 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.empty-state p {
    margin-bottom: 20px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 992px) {
    .col-lg-4 { width: 50%; }
}

@media (max-width: 768px) {
    .col-lg-4, .col-md-6 { width: 100%; }
    .package-card-compact {
        height: auto;
        margin: 4px;
    }

    .package-image-compact {
        height: 200px;
    }

    .package-content-compact {
        padding: 14px;
    }

    .package-footer-compact {
        padding: 10px 14px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }

    .pt-100 {
        padding-top: 50px;
    }

    .pb-70 {
        padding-bottom: 50px;
    }
}