/* Safari Package Card Styles */
.safari-package-card,
.budget-package-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.package-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.safari-package-card:hover .package-image-wrapper img,
.budget-package-card:hover .package-image-wrapper img {
    transform: scale(1.08);
}

.package-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.package-badges .badge {
    margin-right: 6px;
    margin-bottom: 4px;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 12px;
    font-weight: 600;
}

.package-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--mat);
    margin-bottom: 12px;
    line-height: 1.3;
}

.package-description {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
    color: #555;
    flex: 1;
}

.package-highlights {
    margin-bottom: 12px;
}

.highlight-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.highlight-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    flex: 1;
    font-weight: 500;
}

.highlight-item i {
    font-size: 16px;
    margin-right: 6px;
    width: 18px;
}

.places-tags {
    position: relative;
    margin-bottom: 15px;
}

.places-tags-container {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 2px 0;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e0 #f7fafc;
}

.places-tags-container::-webkit-scrollbar {
    height: 4px;
}

.places-tags-container::-webkit-scrollbar-track {
    background: #f7fafc;
    border-radius: 2px;
}

.places-tags-container::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 2px;
    transition: background 0.3s ease;
}

.places-tags-container::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

.place-tag {
    background: #f8f9fa;
    color: #495057;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid #e9ecef;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.place-tag:hover {
    background: #e9ecef;
    border-color: #dee2e6;
    transform: translateY(-1px);
}

/* Scroll indicators */
.places-tags-scroll-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.places-tags:hover .places-tags-scroll-indicator {
    opacity: 1;
}

.places-tags-scroll-indicator:hover {
    background: #f8f9fa;
    transform: translateY(-50%) scale(1.1);
}

.places-tags-scroll-indicator.left {
    left: -12px;
}

.places-tags-scroll-indicator.right {
    right: -12px;
}

.places-tags-scroll-indicator i {
    font-size: 12px;
    color: #495057;
}

.package-pricing {
    margin-bottom: 15px;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 2px;
}

.price-amount {
    font-size: 20px;
    font-weight: 700;
    color: var(--mat);
}

.price-unit {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.price-note {
    color: #666;
    font-size: 14px;
}

.package-actions {
    display: flex;
    gap: 6px;
    margin-top: auto;
}

.package-actions .btn {
    flex: 1;
    font-size: 14px;
    padding: 12px 16px;
    font-weight: 600;
}

.wildlife-note {
    margin-bottom: 10px;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .package-image-wrapper {
        height: 180px;
    }

    .package-content {
        padding: 15px;
    }

    .package-title {
        font-size: 18px;
    }

    .package-description {
        font-size: 14px;
    }

    .highlight-item {
        font-size: 14px;
    }

    .place-tag {
        font-size: 14px;
        padding: 3px 8px;
    }

    .places-tags-scroll-indicator {
        width: 20px;
        height: 20px;
    }

    .places-tags-scroll-indicator i {
        font-size: 10px;
    }

    .price-amount {
        font-size: 18px;
    }

    .package-actions {
        flex-direction: column;
    }

    .package-actions .btn {
        margin-bottom: 5px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .highlight-row {
        flex-direction: column;
        gap: 4px;
    }

    .highlight-item {
        justify-content: flex-start;
    }
}

/* FAQ Section Styles */
.faq_section .accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq_section .accordion-button {
    background: var(--white);
    border: none;
    padding: 20px 25px;
    font-size: 16px;
    font-weight: 600;
    color: var(--mat);
    box-shadow: none;
}

.faq_section .accordion-button:not(.collapsed) {
    background: var(--mat);
    color: var(--white);
}

.faq_section .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq_section .accordion-body {
    padding: 25px;
    background: var(--white);
    font-size: 14px;
    line-height: 1.6;
}

.faq_section .accordion-body ul {
    margin-bottom: 15px;
}

.faq_section .accordion-body li {
    margin-bottom: 8px;
}

.faq-contact-info {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.contact-buttons .btn {
    font-weight: 600;
    padding: 12px 25px;
}

@media (max-width: 768px) {
    .faq_section .accordion-button {
        padding: 15px 20px;
        font-size: 16px;
    }

    .faq_section .accordion-body {
        padding: 20px;
        font-size: 14px;
    }

    .faq-contact-info {
        padding: 25px 20px;
    }

    .contact-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .contact-buttons .me-3 {
        margin-right: 0 !important;
    }
}