/* ===== Booking Form Styles ===== */
.booking-section {
    background: var(--sand-light);
    padding: 40px;
    border-radius: var(--radius-md);
    border: 2px solid var(--gray-200);
}
.booking-section h3 {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.booking-section h3 i {
    color: var(--accent);
}
.dates-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}
.booking-success {
    text-align: center;
    padding: 40px;
}
.booking-success i {
    font-size: 3rem;
    color: var(--forest);
    margin-bottom: 15px;
}

/* ===== Review Cards ===== */
.review-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}
.review-card:hover {
    box-shadow: var(--shadow-md);
}
.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}
.review-author h5 {
    font-size: 0.95rem;
    color: var(--primary-dark);
}
.review-author span {
    font-size: 0.8rem;
    color: var(--gray-400);
}
.review-stars {
    color: var(--accent);
    font-size: 0.85rem;
}
.review-card p {
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== Review Form ===== */
.review-form-section {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}
.star-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 5px;
}
.star-rating i {
    font-size: 1.5rem;
    color: var(--gray-300);
    cursor: pointer;
    transition: color var(--transition);
}
.star-rating i.active,
.star-rating i:hover {
    color: var(--accent);
}

/* ===== Package List Filters ===== */
.filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
}
.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}
.filter-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-dark);
}
.filter-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.filter-chip {
    padding: 6px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-xl);
    background: var(--white);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-body);
    color: var(--gray-600);
}
.filter-chip:hover,
.filter-chip.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* ===== Modal ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}
.modal-overlay.active {
    display: flex;
}
.modal {
    background: var(--white);
    border-radius: var(--radius-md);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
    animation: slideUp 0.3s ease;
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--gray-400);
    transition: color var(--transition);
}
.modal-close:hover {
    color: var(--primary-dark);
}

/* ===== Empty States ===== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}
.empty-state i {
    font-size: 3rem;
    color: var(--gray-300);
    margin-bottom: 15px;
}
.empty-state h3 {
    color: var(--gray-400);
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.empty-state p {
    color: var(--gray-400);
}

/* ===== Swiper Custom ===== */
.swiper {
    border-radius: var(--radius-md);
    overflow: hidden;
}
.swiper-button-next,
.swiper-button-prev {
    color: var(--white) !important;
    background: rgba(0,0,0,0.3);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
}
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1rem !important;
}
.swiper-pagination-bullet-active {
    background: var(--accent) !important;
}

/* ===== Badges & Tags ===== */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
}
.badge-success {
    background: #d4edda;
    color: #155724;
}
.badge-warning {
    background: #fff3cd;
    color: #856404;
}
.badge-danger {
    background: #f8d7da;
    color: #721c24;
}
.badge-info {
    background: var(--sand);
    color: var(--primary);
}

/* ===== Tooltip ===== */
.tooltip {
    position: relative;
}
.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    background: var(--primary-dark);
    color: var(--white);
    font-size: 0.75rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}
.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
}

/* ===== Skeleton Loading ===== */
.skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== Tabs ===== */
.tabs {
    display: flex;
    gap: 5px;
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: 25px;
}
.tab-btn {
    padding: 10px 20px;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-500);
    cursor: pointer;
    position: relative;
    transition: color var(--transition);
}
.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.tab-btn.active {
    color: var(--accent-dark);
}
.tab-btn.active::after {
    transform: scaleX(1);
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
