/* Package Details Page Styles */

/* Hero Section */
.package-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.2) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.breadcrumb-nav {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    backdrop-filter: blur(10px);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: white;
}

.hero-content {
    position: relative;
    z-index: 2;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-badges .badge {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.badge-difficulty.badge-green {
    background: rgba(76, 175, 80, 0.8);
}

.badge-difficulty.badge-blue {
    background: rgba(33, 150, 243, 0.8);
}

.badge-difficulty.badge-orange {
    background: rgba(255, 152, 0, 0.8);
}

.badge-difficulty.badge-red {
    background: rgba(244, 67, 54, 0.8);
}

.badge-type {
    background: rgba(255, 255, 255, 0.2);
}

.badge-popular {
    background: rgba(255, 193, 7, 0.8);
}

/* Package Details Section */
.package-details-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.package-image-container {
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.package-main-image:hover {
    transform: scale(1.05);
}

/* Content Cards */
.package-description-card,
.package-includes-card,
.package-requirements-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-description-card:hover,
.package-includes-card:hover,
.package-requirements-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.package-description-card h2,
.package-includes-card h2,
.package-requirements-card h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.package-description-card h2 i {
    color: #3498db;
}

.package-includes-card h2 i {
    color: #4CAF50;
}

.package-requirements-card h2 i {
    color: #ff9800;
}

.description-content,
.includes-content,
.requirements-content {
    line-height: 1.7;
    color: #555;
}

.includes-list,
.requirements-list {
    list-style: none;
    padding: 0;
}

.includes-list li,
.requirements-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.includes-list li i {
    color: #4CAF50;
    margin-top: 0.25rem;
}

.requirements-list li i {
    color: #ff9800;
    margin-top: 0.25rem;
}

.includes-list .highlight-item {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border-left: 4px solid #f39c12;
    padding: 0.75rem;
    margin: 0.5rem 0;
    border-radius: 8px;
    font-weight: 600;
}

.includes-list .highlight-item i {
    color: #f39c12;
}

/* Sidebar Cards */
.pricing-card,
.quick-details-card,
.features-card,
.booking-card {
    background: white;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover,
.quick-details-card:hover,
.features-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pricing-header,
.details-header,
.features-header {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 1rem 1.5rem;
    font-weight: 600;
}

.pricing-content,
.details-content,
.features-content {
    padding: 1.5rem;
}

/* Pricing Display */
.price-display {
    text-align: center;
    position: relative;
}

.original-price {
    display: block;
    color: #999;
    text-decoration: line-through;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.discount-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: #e74c3c;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.current-price {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 0.5rem;
}

.price-label {
    color: #666;
    font-size: 0.9rem;
}

/* Quick Details */
.detail-row {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
}

.detail-info {
    flex: 1;
}

.detail-label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.detail-value {
    display: block;
    font-weight: 600;
    color: #2c3e50;
}

/* Features */
.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    width: 24px;
    color: #4CAF50;
}

.feature-item.weather-dependent i {
    color: #ff9800;
}

/* Booking Card */
.booking-card {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    text-align: center;
    padding: 2rem 1.5rem;
}

.btn-book-now {
    background: white;
    color: #4CAF50;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-book-now:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.booking-note {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
}

/* Modal Styling */
.modal-header {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border-bottom: none;
}

.modal-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-close {
    filter: brightness(0) invert(1);
}

.booking-summary {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.price-summary .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4CAF50;
}

/* Package Not Found */
.package-not-found-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.not-found-content {
    padding: 3rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .package-details-section {
        padding: 2rem 0;
    }
    
    .package-description-card,
    .package-includes-card,
    .package-requirements-card {
        padding: 1.5rem;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .detail-row {
        flex-direction: column;
        text-align: center;
    }
    
    .detail-icon {
        margin: 0 auto 0.5rem auto;
    }
}

@media (max-width: 576px) {
    .package-hero {
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .breadcrumb {
        padding: 0.5rem 1rem;
    }
    
    .pricing-content,
    .details-content,
    .features-content {
        padding: 1rem;
    }
}
