/* Packages Page Styles */

/* Hero Section */
.packages-hero {
    position: relative;
    height: 400px;
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/ 
    background-image: url('../img/contact-us.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.packages-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(45deg, rgba(52, 152, 219, 0.8), rgba(44, 62, 80, 0.6));*/ 
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    font-size: 1.1rem;
    opacity: 0.9;
    display: block !important;
}


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

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.separator {
    margin: 0 10px;
}

/* Packages Section */
.packages-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Package Cards */
.package-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    background: white;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.package-image {
    height: 240px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.package-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="white" stroke-width="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.badge-featured {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    font-weight: 600;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 12px;
}

.badge-sale {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    font-weight: 600;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 12px;
}

.package-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 48px;
    opacity: 0.2;
    color: white;
}

/* Filters Section */
.filter-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.filter-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #f8f9fa;
}

.form-select:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
    background: white;
}

/* Package Details */
.price-original {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 14px;
}

.price-current {
    color: #2c3e50;
    font-weight: 700;
    font-size: 24px;
}

.difficulty-badge {
    border-radius: 12px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 600;
}

.difficulty-beginner { background-color: #d4edda; color: #155724; }
.difficulty-intermediate { background-color: #fff3cd; color: #856404; }
.difficulty-advanced { background-color: #f8d7da; color: #721c24; }
.difficulty-expert { background-color: #d1ecf1; color: #0c5460; }

.package-details {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #6c757d;
    font-size: 13px;
}

/* Buttons */
.btn-book {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-book:hover {
    background: linear-gradient(135deg, #45a049, #4CAF50);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
    color: white;
}

.btn-availability {
    border: 2px solid #4CAF50;
    color: #4CAF50;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-availability:hover {
    background-color: #4CAF50;
    color: white;
    transform: translateY(-2px);
}

/* No Packages Section */
.no-packages {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.no-packages i {
    color: #6c757d;
    margin-bottom: 20px;
}

.no-packages h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.no-packages p {
    color: #6c757d;
}

/* Responsive Design */
@media (max-width: 992px) {
    .packages-section {
        padding: 60px 0;
    }
    
    .filter-section {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .packages-section {
        padding: 50px 0;
    }
    
    .filter-section {
        padding: 20px 15px;
    }
    
    .package-image {
        height: 200px;
    }
    
    .package-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .filter-section h3 {
        font-size: 1.2rem;
    }
    
    .btn-book, .btn-availability {
        padding: 10px 16px;
        font-size: 14px;
    }
}
