/* Safari Packages Styling */
.safari-packages {
    padding: 80px 0;
}

.package-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.package-header {
    background: #282828;
    color: white;
    padding: 25px;
    text-align: center;
    position: relative;
}

.package-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 10px solid #20c997;
}

.package-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.package-duration {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 8px;
    font-weight: 500;
}

.package-body {
    padding: 30px 25px;
}

.package-images {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
    height: 120px;
}

.package-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

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

.package-image:hover img {
    transform: scale(1.1);
}

.package-info {
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.info-item i {
    color: #28a745;
    margin-right: 12px;
    margin-top: 2px;
    font-size: 1.1rem;
}

.info-item strong {
    color: #2c3e50;
    margin-right: 8px;
    min-width: 80px;
}

.package-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.package-highlights {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.package-highlights h6 {
    color: #28a745;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 2;
    column-gap: 20px;
}

.highlights-list li {
    padding: 5px 0;
    color: #495057;
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
    break-inside: avoid;
}

.highlights-list li::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.package-price {
    text-align: center;
    margin-bottom: 25px;
    padding: 10px 0;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 5px;
}

.price-details {
    font-size: 0.85rem;
    color: #6c757d;
}

.book-now-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.book-now-btn:hover {
    background: linear-gradient(135deg, #20c997 0%, #1baa80 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    color: white;
}

.book-now-btn i {
    margin-right: 8px;
}

/* Section Headers */
.section-divider {
    text-align: center;
    margin: 60px 0 40px;
}

.section-divider h3 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-divider p {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .safari-packages {
        padding: 60px 0;
    }
    
    .package-card {
        margin-bottom: 30px;
    }
    
    .package-header {
        padding: 20px;
    }
    
    .package-title {
        font-size: 1.2rem;
    }
    
    .package-body {
        padding: 25px 20px;
    }
    
    .package-images {
        height: 100px;
        gap: 6px;
    }
    
    .section-divider h3 {
        font-size: 1.6rem;
    }
    
    .info-item {
        font-size: 0.9rem;
    }
    
    .info-item strong {
        min-width: 70px;
    }
}

@media (max-width: 576px) {
    .package-images {
        height: 80px;
        gap: 4px;
    }
    
    .package-header {
        padding: 15px;
    }
    
    .package-body {
        padding: 20px 15px;
    }
    
    .price-amount {
        font-size: 1.3rem;
    }
    
    .book-now-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.package-card {
    animation: fadeInUp 0.6s ease forwards;
}

.package-card:nth-child(1) { animation-delay: 0.1s; }
.package-card:nth-child(2) { animation-delay: 0.2s; }
.package-card:nth-child(3) { animation-delay: 0.3s; }
.package-card:nth-child(4) { animation-delay: 0.4s; }
.package-card:nth-child(5) { animation-delay: 0.5s; }
.package-card:nth-child(6) { animation-delay: 0.6s; }
