/* Booking Contact Sidebar Styles */
.booking-contact {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    padding: 15px;
    border-radius: 10px 0 0 10px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-width: 70px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.booking-contact:hover {
    max-width: 300px;
}

.booking-contact.expanded {
    max-width: 300px;
}

.booking-contact.hidden {
    transform: translateY(-50%) translateX(100%);
    opacity: 0;
    pointer-events: none;
}

.close-sticky {
    position: absolute;
    top: 5px;
    left: 5px;
    background: white;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
    padding: 0;
    line-height: 1;
    z-index: 2;
}

.close-sticky:hover {
    transform: scale(1.1);
}

.booking-contact .section-header {
    opacity: 0;
    margin-bottom: 15px;
    white-space: nowrap;
    transition: opacity 0.3s ease;
    margin-left: 30px;
}

.booking-contact:hover .section-header,
.booking-contact.expanded .section-header {
    opacity: 1;
}

.booking-contact .section-header h2 {
    color: white;
    font-size: 1.2em;
    margin: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.contact-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.5em;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.2s ease;
}

.contact-item:hover i {
    background: rgba(255, 255, 255, 0.2);
}

.contact-item span {
    opacity: 0;
    margin-left: 10px;
    transition: opacity 0.3s ease;
}

.booking-contact:hover .contact-item span,
.booking-contact.expanded .contact-item span {
    opacity: 1;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
}

.contact-item a:hover {
    opacity: 0.8;
}

/* Tour Cards Grid Layout */
.tour-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.tour-option-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.tour-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.tour-card-header {
    padding: 15px;
    background: var(--primary-color);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-card-header h4 {
    margin: 0;
    font-size: 1.1em;
}

.tour-duration {
    display: flex;
    align-items: center;
    font-size: 0.9em;
}

.tour-duration i {
    margin-right: 5px;
}

.tour-card-content {
    padding: 20px;
}

.tour-description {
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.tour-species {
    margin-bottom: 20px;
    border-top: 1px dashed #e0e0e0;
    border-bottom: 1px dashed #e0e0e0;
    padding: 15px 0;
}

.tour-species h5 {
    display: flex;
    align-items: center;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 0.95em;
    color: var(--primary-color);
}

.tour-species h5 i {
    margin-right: 8px;
}

.species-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.species-list li {
    background: rgba(76, 166, 76, 0.1);
    border: 1px solid rgba(76, 166, 76, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.85em;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.species-list li:hover {
    background: rgba(76, 166, 76, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}

.price-value {
    font-weight: bold;
}

.tour-addon {
    font-size: 0.9em;
    background: #FFF9E6;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.tour-addon i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.tour-requirements {
    font-size: 0.9em;
    color: #555;
}

.tour-note {
    margin: 5px 0;
    display: flex;
    align-items: center;
}

.tour-note i {
    margin-right: 8px;
    color: var(--primary-color);
}

.tour-card-footer {
    padding: 15px 20px;
    background: #f9f9f9;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.tour-species .no-species {
    font-style: italic;
    color: #777;
    margin: 5px 0;
    font-size: 0.9em;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .booking-contact {
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        max-width: none;
        transform: translateY(0);
        border-radius: 10px 10px 0 0;
        height: 60px;
        overflow: hidden;
        padding: 10px;
    }
    
    .booking-contact:hover,
    .booking-contact.expanded {
        height: auto;
        max-width: none;
    }
    
    .booking-contact.hidden {
        transform: translateY(100%);
    }
    
    .close-sticky {
        top: 10px;
        right: 10px;
        left: auto;
    }
    
    .booking-contact .section-header {
        opacity: 1;
        margin-left: 0;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }
    
    .contact-item {
        flex: 0 0 auto;
        min-width: auto;
    }
    
    .contact-item span {
        display: none;
    }
    
    .tour-options-grid {
        grid-template-columns: 1fr;
    }
} 