/* Packages Section Styles */
.packages-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.packages-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.packages-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.packages-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    border-radius: 2px;
}

.packages-subheading {
    font-size: 1.2rem;
    color: #6c757d;
    margin-top: 20px;
    font-weight: 400;
}

.package-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.package-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.package-card:hover .package-image {
    transform: scale(1.1);
}

.package-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    background: #ff6b6b;
}

.package-badge.trending { background: #4ecdc4; }
.package-badge.luxury { background: #f39c12; }
.package-badge.weekend { background: #9b59b6; }
.package-badge.adventure { background: #e74c3c; }
.package-badge.family { background: #27ae60; }
.package-badge.cultural { background: #3498db; }
.package-badge.scenic { background: #2ecc71; }
.package-badge.tropical { background: #1abc9c; }

.package-duration {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.package-duration i {
    margin-right: 5px;
}

.package-content {
    padding: 25px;
}

.package-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.package-route {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.package-route i {
    color: #e74c3c;
    margin-right: 8px;
    font-size: 1rem;
}

.package-destinations {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.destination-tag {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.sale-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #e74c3c;
}

.original-price {
    font-size: 1rem;
    color: #95a5a6;
    text-decoration: line-through;
}

.discount {
    background: #e74c3c;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.package-buttons {
    display: flex;
    gap: 10px;
}

.btn-book-now, .btn-enquiry {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.btn-book-now {
    background: linear-gradient(45deg, #ff6b6b, #ee5a6f);
    color: white;
}

.btn-book-now:hover {
    background: linear-gradient(45deg, #ee5a6f, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(238, 90, 111, 0.4);
}

.btn-enquiry {
    background: transparent;
    color: #4ecdc4;
    border: 2px solid #4ecdc4;
}

.btn-enquiry:hover {
    background: #4ecdc4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .packages-heading {
        font-size: 2.2rem;
    }
    
    .packages-subheading {
        font-size: 1rem;
    }
    
    .package-content {
        padding: 20px;
    }
    
    .package-title {
        font-size: 1.2rem;
    }
    
    .package-buttons {
        flex-direction: column;
    }
    
    .btn-book-now, .btn-enquiry {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .packages-section {
        padding: 60px 0;
    }
    
    .packages-header {
        margin-bottom: 40px;
    }
    
    .packages-heading {
        font-size: 1.8rem;
    }
    
    .package-image-container {
        height: 200px;
    }
}