/* Header */
.header {
    position: sticky;
    top: 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    z-index: 50;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gray-900);
}

.main-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-dropdown {
    position: relative;
}

.language-switcher {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.lang-btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    background-color: var(--white);
    color: var(--gray-700);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover {
    background-color: var(--gray-50);
}

.lang-btn.active {
    background-color: var(--primary);
    color: var(--white);
}

.divider {
    width: 1px;
    height: 1.5rem;
    background-color: var(--gray-300);
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--gray-700);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Breadcrumb */
.breadcrumb-section {
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.breadcrumb-link {
    color: var(--gray-500);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-link:hover {
    color: var(--gray-700);
}

.breadcrumb-current {
    color: var(--gray-900);
    font-weight: 500;
    max-width: 12rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .breadcrumb-current {
        max-width: 20rem;
    }
}

/* Tour Hero */
.tour-hero {
    background-color: var(--white);
    padding: 1.5rem 0;
}

@media (min-width: 768px) {
    .tour-hero {
        padding: 2rem 0;
    }
}

@media (min-width: 1024px) {
    .tour-hero {
        padding: 3rem 0;
    }
}

.tour-header {
    margin-bottom: 1.5rem;
}

.tour-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.rating-value {
    font-weight: 600;
    color: var(--gray-900);
}

.rating-count {
    color: var(--gray-600);
}

.meta-divider {
    color: var(--gray-300);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--gray-700);
}

.tour-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.25rem 0.75rem;
    background-color: var(--blue-50);
    color: var(--blue-600);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Gallery */
.tour-gallery {
    margin-bottom: 2rem;
}

.main-gallery {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background-color: var(--gray-100);
    margin-bottom: 1rem;
}

.main-swiper {
    aspect-ratio: 16/9;
}

@media (min-width: 768px) {
    .main-swiper {
        aspect-ratio: 21/9;
    }
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    color: var(--gray-800);
}

.gallery-nav:hover {
    background-color: var(--white);
}

.gallery-nav.prev {
    left: 1rem;
}

.gallery-nav.next {
    right: 1rem;
}

.view-all-photos {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-800);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.view-all-photos:hover {
    background-color: var(--white);
}

.thumbnail-gallery {
    display: none;
}

@media (min-width: 768px) {
    .thumbnail-gallery {
        display: block;
    }
}

.thumbnail-swiper {
    padding: 0.5rem 0;
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.thumbnail-img:hover {
    opacity: 0.75;
}

.swiper-pagination-bullet {
    background-color: var(--white);
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary);
    opacity: 1;
}

/* Tour Details */
.tour-details {
    padding: 1.5rem 0;
}

@media (min-width: 1024px) {
    .tour-details {
        padding: 3rem 0;
    }
}

.details-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .details-grid {
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
    }
}

/* Highlights */
.highlights-grid {
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.highlight-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    background-color: var(--blue-50);
    border: 1px solid var(--blue-100);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.highlight-item:hover {
    background-color: var(--blue-100);
}

.highlight-item i {
    color: var(--blue-600);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Quick Info */
.quick-info .info-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .quick-info .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .quick-info .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info-card {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1rem;
    transition: var(--transition);
}

.info-card:hover {
    box-shadow: var(--shadow-md);
}

.info-card.wide {
    grid-column: span 1;
}

@media (min-width: 640px) {
    .info-card.wide {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .info-card.wide {
        grid-column: span 3;
    }
}

.info-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--blue-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.info-icon i {
    color: var(--blue-600);
}

.info-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.info-value {
    font-weight: 600;
    color: var(--gray-900);
}

.language-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.language-tag {
    padding: 0.25rem 0.75rem;
    background-color: var(--indigo-50);
    color: var(--indigo-600);
    border: 1px solid var(--indigo-100);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Itinerary */
.itinerary-timeline {
    position: relative;
}

.day-card {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.day-card:hover {
    box-shadow: var(--shadow-md);
}

.day-card.active .day-details {
    max-height: 1000px;
    opacity: 1;
    padding: 1.5rem;
}

.day-card.active .day-header i {
    transform: rotate(180deg);
}

.day-header {
    width: 100%;
    text-align: left;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.day-header:hover {
    background-color: var(--gray-50);
}

.day-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--blue-600);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: bold;
    flex-shrink: 0;
}

.day-card:not(:first-child) .day-number {
    background-color: var(--blue-100);
    color: var(--blue-600);
}

.day-content {
    flex: 1;
    min-width: 0;
}

.day-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--blue-600);
    margin-bottom: 0.25rem;
}

.day-header i {
    color: var(--gray-400);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.day-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    border-top: 1px solid var(--gray-100);
    padding: 0 1.5rem;
}

.activity {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.activity i {
    color: var(--green-600);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.activity:hover i {
    color: var(--green-600);
}

.expand-all {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--blue-600);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius-md);
}

.expand-all:hover {
    color: var(--blue-700);
    background-color: var(--blue-50);
}

/* Inclusions */
.inclusion-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .inclusion-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.included, .excluded {
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}

.included {
    background: linear-gradient(135deg, var(--green-50), #d1fae5);
    border: 2px solid var(--green-200);
}

.excluded {
    background: linear-gradient(135deg, var(--red-50), #fee2e2);
    border: 2px solid var(--red-200);
}

.inclusion-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid;
}

.included .inclusion-header {
    border-bottom-color: var(--green-200);
}

.excluded .inclusion-header {
    border-bottom-color: var(--red-200);
}

.check-icon, .x-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon {
    background-color: var(--green-600);
}

.x-icon {
    background-color: var(--red-600);
}

.check-icon i, .x-icon i {
    color: var(--white);
    width: 1.25rem;
    height: 1.25rem;
}

.inclusion-list {
    list-style: none;
}

.inclusion-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.inclusion-list li i {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.included .inclusion-list li i {
    color: var(--green-600);
}

.excluded .inclusion-list li i {
    color: var(--red-600);
}

/* Traveler Photos */
.traveler-photos .photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    height: 400px;
}

.photo-main {
    grid-column: span 1;
    grid-row: span 2;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--gray-100);
    cursor: pointer;
}

.photo-small {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--gray-100);
    cursor: pointer;
}

.photo-small.see-more {
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background-color 0.2s ease;
}

.photo-small.see-more:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.photo-small.see-more i {
    width: 3rem;
    height: 3rem;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.photos-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photos-grid img:hover {
    transform: scale(1.05);
}

/* Reviews */
.review-summary {
    background: linear-gradient(135deg, #fefce8, #fed7aa);
    border: 2px solid #fbbf24;
    border-radius: var(--radius-xl);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .review-summary {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 2rem;
    }
}

.summary-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .summary-rating {
        margin-bottom: 0;
    }
}

.rating-score {
    font-size: 3rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.rating-stars {
    display: flex;
    gap: 0.125rem;
    margin-bottom: 0.5rem;
}

.rating-stars i {
    color: var(--yellow-400);
    fill: var(--yellow-400);
}

.rating-count {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: 0.25rem;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rating-bar span:first-child {
    width: 3rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

.rating-bar span:last-child {
    width: 2rem;
    text-align: right;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

.bar {
    flex: 1;
    background-color: var(--gray-200);
    border-radius: 9999px;
    height: 0.75rem;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background-color: var(--yellow-400);
    border-radius: 9999px;
    transition: width 0.5s ease;
}

.review-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-card {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.reviewer-avatar {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--blue-600), var(--purple-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviewer-avatar i {
    color: var(--white);
    width: 1.5rem;
    height: 1.5rem;
}

.review-date {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

.verified-badge {
    padding: 0.25rem 0.75rem;
    background-color: var(--green-100);
    color: var(--green-600);
    border: 1px solid var(--green-200);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    flex-shrink: 0;
}

.review-rating {
    display: flex;
    gap: 0.125rem;
    margin-bottom: 0.75rem;
}

.review-rating i {
    color: var(--yellow-400);
    fill: var(--yellow-400);
}

.review-text {
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.helpful-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.helpful-btn:hover {
    color: var(--blue-600);
}

.helpful-btn i {
    transition: transform 0.2s ease;
}

.helpful-btn:hover i {
    transform: scale(1.1);
}

/* Booking Card */
.sidebar {
    position: relative;
}

.booking-card {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

@media (min-width: 1024px) {
    .booking-card {
        position: sticky;
        top: 6rem;
    }
}

.booking-header {
    background: linear-gradient(to right, var(--blue-50), var(--blue-100));
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.booking-header h3 {
    margin-bottom: 0.25rem;
}

.booking-header p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

.booking-form {
    padding: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-group label i {
    width: 1rem;
    height: 1rem;
}

.date-input {
    position: relative;
}

.date-input input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
}

.date-input input:focus {
    outline: none;
    border-color: var(--blue-600);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.date-input i {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    pointer-events: none;
}

.guest-selector {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.guest-type {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.guest-label {
    font-weight: 500;
    color: var(--gray-900);
}

.guest-sub {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.counter {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.counter-btn {
    width: 2rem;
    height: 2rem;
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-700);
}

.counter-btn:hover:not(:disabled) {
    border-color: var(--blue-600);
    color: var(--blue-600);
}

.counter-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.counter .count {
    width: 2rem;
    text-align: center;
    font-weight: 600;
    color: var(--gray-900);
}

.booking-actions {
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.whatsapp-btn, .email-btn {
    width: 100%;
    padding: 1rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.whatsapp-btn:hover:not(:disabled) {
    box-shadow: var(--shadow-lg);
}

.email-btn:hover:not(:disabled) {
    box-shadow: var(--shadow-lg);
}

.whatsapp-btn {
    background-color: #25D366;
    color: var(--white);
}

.whatsapp-btn:hover:not(:disabled) {
    background-color: #128C7E;
}

.email-btn {
    background-color: var(--blue-600);
    color: var(--white);
}

.email-btn:hover:not(:disabled) {
    background-color: #1d4ed8;
}

.booking-features {
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature i {
    color: var(--blue-600);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.feature p {
    font-size: 0.875rem;
    color: var(--gray-700);
    margin-bottom: 0;
}

/* Related Tours */
.related-tours {
    background-color: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 3rem 0;
}

@media (min-width: 1024px) {
    .related-tours {
        padding: 4rem 0;
    }
}

.related-tours .section-header {
    text-align: center;
    justify-content: center;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .related-tours .section-header {
        text-align: left;
        justify-content: flex-start;
    }
}

.tours-slider {
    position: relative;
}

.related-swiper {
    padding-bottom: 3rem;
}

.tour-card {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    cursor: pointer;
}

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

.tour-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background-color: var(--gray-100);
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.tour-tag {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
}

.tour-card-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.tour-rating span:first-child {
    font-weight: 600;
    color: var(--gray-900);
}

.tour-rating span:last-child {
    color: var(--gray-600);
}

.tour-duration {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.tour-card h3 {
    font-size: 1.125rem;
    line-height: 1.5rem;
    margin-bottom: 0.5rem;
    flex: 1;
    transition: var(--transition);
}

.tour-card:hover h3 {
    color: var(--blue-600);
}

.tour-card .tour-tags {
    margin-bottom: 0.75rem;
}

.tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-100);
}

.tour-length {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.days {
    font-weight: bold;
    color: var(--gray-900);
}

.nights {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.view-details-btn {
    padding: 0.5rem 1rem;
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.view-details-btn:hover {
    background-color: var(--primary-dark);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    color: var(--gray-800);
    box-shadow: var(--shadow-lg);
}

.slider-nav:hover {
    background-color: var(--gray-50);
}

.slider-nav.prev {
    left: 0;
    transform: translateY(-50%) translateX(-1rem);
}

.slider-nav.next {
    right: 0;
    transform: translateY(-50%) translateX(1rem);
}

@media (min-width: 1024px) {
    .slider-nav {
        display: flex;
    }
}

/* Footer */
.footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4rem;
    }
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-label {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: 0.25rem;
}

.contact-link {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--white);
}

.contact-address {
    color: var(--gray-300);
    font-size: 0.875rem;
    line-height: 1.5;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-links li a {
    color: var(--gray-300);
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.social-link i {
    color: var(--white);
    width: 1.25rem;
    height: 1.25rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-600);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--gray-400);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom a {
    color: #60a5fa;
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: #93c5fd;
}