/* ============================================
   PACKAGES PAGE STYLES
   ============================================ */

   :root {
    --primary: #d4af37;
    --primary-dark: #b8941f;
    --secondary: #1a1a2e;
    --accent: #c9a961;
    --light: #f8f9fa;
    --white: #ffffff;
    --text: #2c3e50;
    --text-light: #6c757d;
    --gradient: linear-gradient(135deg, #d4af37 0%, #c9a961 50%, #b8941f 100%);
    --shadow: 0 5px 20px rgba(212, 175, 55, 0.15);
    --shadow-lg: 0 15px 40px rgba(212, 175, 55, 0.25);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero Section */
.packages-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(15, 15, 30, 0.85) 100%),
                url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(201, 169, 97, 0.05) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.hero-label {
    display: inline-block;
    padding: 8px 30px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-label i {
    margin-right: 8px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-nav a:hover {
    color: var(--primary);
}

.breadcrumb-nav span {
    color: rgba(255, 255, 255, 0.5);
}

/* Search & Filter Section */
.search-filter-wrapper {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.filter-label {
    font-weight: 600;
    color: var(--secondary);
    font-size: 13px;
    margin-bottom: 8px;
    display: block;
}

.search-box {
    position: relative;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.search-box .form-control {
    padding-left: 45px;
}

.form-control,
.form-select {
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 14px;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    outline: none;
}

.btn-reset {
    width: 100%;
    padding: 10px 20px;
    background: var(--light);
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-reset:hover {
    background: var(--primary);
    color: var(--white);
}

/* Package Cards */
.package-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.package-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 20px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: var(--shadow);
}

.package-badge.popular {
    background: #4caf50;
}

.package-badge.special {
    background: #e91e63;
}

.package-badge.adventure {
    background: #ff5722;
}

.package-badge.royal {
    background: #9c27b0;
}

.package-badge.divine {
    background: #ff9800;
}

.package-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.package-card:hover .package-overlay {
    opacity: 1;
}

.btn-view-details {
    padding: 12px 30px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    transform: translateY(20px);
}

.package-card:hover .btn-view-details {
    transform: translateY(0);
}

.btn-view-details:hover {
    background: var(--white);
    color: var(--primary);
}

.package-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.package-category,
.package-duration {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.package-category i,
.package-duration i {
    color: var(--primary);
}

.package-title {
    font-size: 1.3rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.package-desc {
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.package-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.package-highlights span {
    padding: 5px 12px;
    background: var(--light);
    border-radius: 20px;
    font-size: 12px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 5px;
}

.package-highlights span i {
    color: var(--primary);
    font-size: 10px;
}

.package-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
}

.price-amount {
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: 800;
    line-height: 1;
}

.price-person {
    font-size: 12px;
    color: var(--text-light);
}

.btn-book-now {
    padding: 10px 25px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-book-now:hover {
    background: var(--secondary);
    transform: translateX(5px);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
}

.no-results i {
    font-size: 80px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.no-results p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.btn-reset-results {
    padding: 12px 35px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-reset-results:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* Load More Button */
.btn-load-more {
    padding: 15px 50px;
    background: var(--light);
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-load-more:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-3px);
}

/* CTA Section */
.cta-box {
    background: var(--gradient);
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.btn-cta {
    display: inline-block;
    padding: 15px 40px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-cta:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .package-image {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .packages-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .search-filter-wrapper {
        padding: 20px;
    }
    
    .btn-reset {
        margin-top: 10px;
    }
    
    .cta-box {
        padding: 40px 30px;
        text-align: center;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .btn-cta {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .package-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .btn-book-now {
        width: 100%;
    }
}
