
/* Safari Packages Section Styles */

.safari-packages-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
    font-family: 'Montserrat', sans-serif;
}

.safari-container {
    max-width: 1200px;
    margin: 0 auto;
}

.safari-header {
    text-align: center;
    margin-bottom: 50px;
}

.safari-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.safari-header p {
    font-size: 16px;
    color: #555555;
}


/* Grid Layout */

.safari-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}


/* Card Styling */

.safari-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.safari-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.safari-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.safari-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.safari-card:hover .safari-img {
    transform: scale(1.05);
}


/* Best Seller Badge */

.best-seller-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #f97316;
    /* Brand Green */
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    z-index: 2;
}


/* Card Content */

.safari-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.safari-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

.safari-duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #f0f4f1;
    color: #285638;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    width: fit-content;
    margin-bottom: 12px;
}

.safari-route {
    font-size: 13px;
    color: #666666;
    margin-bottom: 15px;
}


/* You Visit Box */

.you-visit-box {
    background-color: #f97316;
    border-left: 3px solid #285638;
    padding: 10px 15px;
    border-radius: 0 6px 6px 0;
    margin-bottom: 15px;
}

.visit-title {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #285638;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.you-visit-box p {
    font-size: 13px;
    color: #333333;
    margin: 0;
    font-weight: 500;
}

.safari-desc {
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}


/* Itinerary Button */

.btn-itinerary {
    display: block;
    width: 100%;
    background-color: #f97316;
    color: #ffffff;
    text-align: center;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

.btn-itinerary:hover {
    background-color: #f57c00;
    /* Orange Hover */
}


/* Browse Packages Bottom Button Container */

.safari-bottom-btn-wrapper {
    text-align: center;
    margin-top: 50px;
}

.btn-browse-packages {
    background-color: #f97316;
    /* Brand Green */
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-browse-packages:hover {
    background-color: #f57c00;
    /* Orange Hover */
    transform: translateY(-2px);
}


/* Responsive Grid Adjustments */

@media screen and (max-width: 992px) {
    .safari-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .safari-grid {
        grid-template-columns: 1fr;
    }
}