/* ==========================================
   Tours Component Styles
   ========================================== */

.tours {
    padding: var(--space-24) 0;
    background: var(--white);
}

/* Tours Header */
.tours-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: var(--space-12);
}

.tours-header-content {
    max-width: 500px;
}

.tours .section-subtitle {
    color: var(--primary-color);
}

.tours .section-title {
    color: var(--gray-900);
    font-weight: 800;
}

.tours .section-description {
    color: var(--gray-600);
}

/* Tours Tabs */
.tours-tabs {
    display: flex;
    gap: var(--space-2);
    background: var(--bg-secondary);
    padding: var(--space-1);
    border-radius: var(--radius-full);
}

.tours-tab {
    padding: var(--space-3) var(--space-6);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--gray-600);
    background: transparent;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.tours-tab:hover {
    color: var(--primary-color);
}

.tours-tab.active {
    background: var(--primary-color);
    color: var(--white);
}

/* Tours Grid */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

/* Tour Card */
.tour-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-normal);
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.tour-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.tour-card-badges {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    display: flex;
    gap: var(--space-2);
}

.tour-badge {
    padding: var(--space-1) var(--space-3);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    border-radius: var(--radius-full);
}

.tour-badge-featured {
    background: var(--secondary-color);
    color: var(--white);
}

.tour-badge-sale {
    background: var(--accent-coral);
    color: var(--white);
}

.tour-badge-new {
    background: var(--accent-teal);
    color: var(--white);
}

.tour-card-wishlist {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--gray-400);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tour-card-wishlist:hover,
.tour-card-wishlist.active {
    color: var(--accent-coral);
}

.tour-card-duration {
    position: absolute;
    bottom: var(--space-4);
    left: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    font-size: var(--fs-sm);
    border-radius: var(--radius-md);
}

/* Tour Card Content */
.tour-card-content {
    padding: var(--space-6);
}

.tour-card-location {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-2);
}

.tour-card-location i {
    color: var(--secondary-color);
}

.tour-card-title {
    font-size: var(--fs-xl);
    font-weight: var(--fw-semibold);
    color: var(--text-heading);
    margin-bottom: var(--space-3);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--transition-fast);
}

.tour-card:hover .tour-card-title {
    color: var(--primary-color);
}

.tour-card-rating {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.tour-card-stars {
    display: flex;
    gap: 2px;
    color: var(--accent-gold);
}

.tour-card-reviews {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
}

.tour-card-divider {
    height: 1px;
    background: var(--gray-200);
    margin-bottom: var(--space-4);
}

.tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tour-card-price {
    display: flex;
    flex-direction: column;
}

.tour-card-price-label {
    font-size: var(--fs-xs);
    color: var(--text-secondary);
}

.tour-card-price-value {
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--primary-color);
}

.tour-card-price-value span {
    font-size: var(--fs-sm);
    font-weight: var(--fw-regular);
    color: var(--text-secondary);
    text-decoration: line-through;
    margin-left: var(--space-2);
}

.tour-card-btn {
    padding: var(--space-3) var(--space-5);
    background: var(--primary-lighter);
    color: var(--primary-color);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.tour-card-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Tours Slider Controls */
.tours-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-12);
}

.tours-arrow {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    color: var(--gray-600);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tours-arrow:hover {
    background: var(--primary-color);
    color: var(--white);
}

.tours-pagination {
    display: flex;
    gap: var(--space-2);
}

.tours-pagination-dot {
    width: 10px;
    height: 10px;
    background: var(--gray-300);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tours-pagination-dot.active {
    width: 30px;
    background: var(--primary-color);
}

/* Tours CTA */
.tours-cta {
    text-align: center;
    margin-top: var(--space-10);
}

/* Featured Tour */
.tour-featured {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-8);
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-top: var(--space-12);
}

.tour-featured-image {
    position: relative;
    min-height: 400px;
}

.tour-featured-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-featured-content {
    padding: var(--space-10);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tour-featured-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--secondary-color);
    color: var(--white);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
    width: fit-content;
}

.tour-featured-title {
    font-size: var(--fs-3xl);
    margin-bottom: var(--space-4);
}

.tour-featured-description {
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
}

.tour-featured-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.tour-featured-detail {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.tour-featured-detail i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-lighter);
    color: var(--primary-color);
    border-radius: var(--radius-md);
}

.tour-featured-detail-text {
    display: flex;
    flex-direction: column;
}

.tour-featured-detail-label {
    font-size: var(--fs-xs);
    color: var(--text-secondary);
}

.tour-featured-detail-value {
    font-weight: var(--fw-semibold);
    color: var(--text-heading);
}

.tour-featured-price {
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    color: var(--primary-color);
    margin-bottom: var(--space-6);
}

.tour-featured-price span {
    font-size: var(--fs-base);
    font-weight: var(--fw-regular);
    color: var(--text-secondary);
}
