:root {
    --primary: #F49103;
    --text-light: #FFFFFF;
    --text-dark: #111111;
    --overlay: rgba(0, 0, 0, 0.5);
    --overlay-hover: rgba(0, 0, 0, 0.7);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Poppins', sans-serif;
  }

/* Hero Section Base Styles */
.tour-hero {
    position: relative;
    height: 95vh;
    display: flex;
    align-items: center; /* Changed from flex-end to center */
    justify-content: center;
    padding-bottom: 0; /* Removed bottom padding */
    margin: 0;
    overflow: hidden;
    background:  url('../images/Tour.webp') no-repeat center center;
    background-size: cover;
}

.tour-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.tour-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 1000px;
    padding: 0 20px;
    margin-top: -20vh; /* Added negative margin to move content up */
}

.tour-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.tour-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.tour-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 100%;
    padding: 0 20px;
}

.tour-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 520;
    margin-bottom: 1rem;
}

.tour-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.discount-badge {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.highlight {
    background: #FFD700;
    color: #000;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
    margin-right: 8px;
}

.tour-hero-divider {
    width: 800px; /* Increased from 60px */
    height: 2px;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    margin: 1rem auto;
    position: relative;
}

.price-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.price-info {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-label {
    font-size: 1rem;
    opacity: 0.8;
    color: #fff;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 650;
}

.tour-hero-cta {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 16px 35px;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-cta:hover {
    transform: translateY(-2px);
}


.price-section {
    flex-direction: row;
    gap: 8px;
    margin: 1rem 0;
}

.category-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 2rem auto;
    padding: 1rem;
    max-width: 1200px;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid #e5e5e5;
    background: transparent;
    color: #666;
    font-size: 0.95rem;
    font-weight: 400;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    border-color: #999;
    color: #333;
}

.filter-btn.active {
    background: var(--text-dark);
    border-color: var(--text-dark);
    color: white;
}

/* Add after your existing hero styles */
.scroll-arrow {
    width: 20px;
    height: 30px;
    border: 2px solid white;
    border-radius: 10px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    left: 50%;
    top: 6px;
    transform: translateX(-50%);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }
    75% {
        transform: translate(-50%, 12px);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, 0);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 20px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .tour-hero {
        height: 100vh; /* Keep full height on mobile */
        margin-top: 0; /* Remove margin-top */
        padding-bottom: 40px;
        background-position: center;
        align-items: center;
    }

    .tour-hero-content {
        max-width: 100%;
        padding: 0 15px;
        margin-top: -10vh; /* Adjusted for mobile */
    }

    .tour-hero-content h1 {
        font-size: 2rem;
        white-space: normal;
        overflow: visible;
        padding: 0;
    }

    .tour-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .tour-discount-badge {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .highlight {
        padding: 3px 8px;
    }

    .tour-hero-divider {
        width: 80%;
        margin: 0.8rem auto;
    }

    .price-section {
        flex-direction: row;
        gap: 8px;
        margin: 1rem 0;
    }

    .price-label {
        font-size: 0.9rem;
    }

    .price-amount {
        font-size: 1.6rem;
    }

    .tour-hero-cta {
        padding: 12px 28px;
        font-size: 1rem;
        width: auto;
        min-width: 160px;
    }

    .category-filters {
        gap: 0.4rem;
        margin: 1.5rem 1rem;
        padding: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .tour-hero {
        height: 100vh;
        background-position: center;
    }

    .tour-hero-content {
        margin-top: -5vh; /* Further adjusted for smaller screens */
    }

    .tour-hero-content h1 {
        font-size: 1.8rem;
    }

    .tour-hero-subtitle {
        font-size: 0.9rem;
    }

    .price-amount {
        font-size: 1.4rem;
    }

    .tour-hero-cta {
        padding: 10px 24px;
        font-size: 0.9rem;
        min-width: 140px;
    }

    .category-filters {
        margin: 1.5rem 0.5rem;
        padding: 0.8rem;
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tour-hero {
        height: 70vh;
        margin-top: 56px;
        padding-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .price-box {
        flex-direction: column;
        gap: 1rem;
    }

    .price-info {
        flex-direction: row;
        justify-content: center;
    }

    .price-amount {
        font-size: 1.75rem;
    }

    .book-now-btn {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1rem;
    }
}

.filter-container {
    position: relative;
    margin-bottom: 2.5rem;
    max-width: 300px;
    margin: 0 auto 2.5rem;
    z-index: 900; /* Add z-index to keep dropdown above other content */
}

.filter-dropdown-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 25px;
    font-size: 1rem;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.filter-dropdown-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-dropdown-btn i {
    transition: transform 0.3s ease;
}

.filter-dropdown-btn.active i {
    transform: rotate(180deg);
}

.filter-dropdown-content {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: max-content;
    min-width: 100%;
    max-width: 300px;
    background: white;
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    max-height: 400px; /* Set max height */
    overflow-y: auto; /* Enable vertical scrolling */
}

.filter-dropdown-content.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.filter-scroll {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.25rem;
}

/* Custom scrollbar for desktop */
@media (min-width: 769px) {
    .filter-dropdown-content::-webkit-scrollbar {
        width: 6px;
    }

    .filter-dropdown-content::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .filter-dropdown-content::-webkit-scrollbar-thumb {
        background: black;
        border-radius: 20px;
    }

    .filter-dropdown-content::-webkit-scrollbar-thumb:hover {
        background: #666;
    }
}

.filter-btn {
    width: 100%;
    text-align: left;
    padding: 0.75rem 1.25rem;
    border: none;
    background: transparent;
    color: #666;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.filter-btn:hover {
    background: #f5f5f5;
    color: var(--primary);
}

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

@media (max-width: 768px) {
    .filter-container {
        max-width: 250px;
    }

    .filter-dropdown-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
}

.filter-scroll {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.5rem;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.filter-scroll::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    padding: 0.75rem 1.25rem;
    border: 1px solid #e5e5e5;
    background: white;
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .filter-scroll {
        justify-content: flex-start;
        padding: 0.5rem 1rem;
    }

    .filter-btn {
        padding: 0.7rem 1.1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .filter-container {
        margin-bottom: 2rem;
    }

    .filter-scroll {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

.places-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 2px;
    background: var(--primary);
    display: block;
    position: relative;
}


@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .section-title::after {
        width: 40px;
    }

    .section-title::before {
        font-size: 1.2rem;
    }
}

.filter-container {
    margin-bottom: 2.5rem;
}

.filter-scroll {
    display: flex;
    justify-content: center;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.filter-scroll::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    background: white;
    color: #666;
    font-size: 0.95rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

.places-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.place-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.place-card:hover {
    transform: translateY(-4px);
}

.place-image {
    position: relative;
    padding-bottom: 66.67%; /* 3:2 aspect ratio */
    overflow: hidden;
}

.place-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.place-card:hover .place-image img {
    transform: scale(1.05);
}

.place-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: linear-gradient(to bottom, #fff 0%, #fafafa 100%);
}

.place-content h3 {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.place-content p {
    font-family: 'Source Serif Pro', Georgia, serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    padding-top: 0.5rem;
    border-top: 1px solid #eee;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 0.75rem;
}

.read-more i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(2px);
}

@media (max-width: 768px) {
    .place-card {
        border-radius: 8px;
    }

    .place-content {
        padding: 1.25rem;
    }

    .place-content h3 {
        font-size: 1.25rem;
    }

    .place-content p {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }
}

.place-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
}

.place-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.place-content {
    padding: 1.5rem;
}

.place-content h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 0 0 1rem;
}

.place-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.place-card:hover {
    transform: translateY(-5px);
}

.place-card:hover .place-image img {
    transform: scale(1.05);
}

.place-card:hover .read-more {
    gap: 0.8rem;
}

@media (max-width: 1024px) {
    .places-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-container {
        padding: 0 1rem;
    }

    .places-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .filter-scroll {
        justify-content: flex-start;
    }

    .place-card {
        flex: 0 0 calc(100% - 20px);
    }
}

.places-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.3s ease;
    padding: 0.5rem;
}

.place-card {
    flex: 0 0 300px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    scroll-snap-align: start;
}

.place-image {
    position: relative;
    padding-bottom: 66.67%;
    overflow: hidden;
}

.place-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.place-content {
    padding: 1.25rem;
}

@media (max-width: 768px) {
    .places-wrapper {
        padding: 0.5rem;
    }

    .carousel-track {
        gap: 0.75rem;
        padding: 0.25rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .place-card {
        flex: 0 0 85%;
        max-width: 85%;
        border-radius: 8px;
    }

    .place-content {
        padding: 1rem;
    }

    .place-content h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }

    .place-content p {
        font-size: 0.875rem;
        line-height: 1.5;
        -webkit-line-clamp: 6;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .read-more {
        font-size: 0.875rem;
        padding: 0.5rem 0;
    }

    /* Hide scrollbar but keep functionality */
    .carousel-track::-webkit-scrollbar {
        display: none;
    }
    
    .carousel-track {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

@media (max-width: 480px) {
    .place-card {
        flex: 0 0 90%;
        max-width: 90%;
    }
}

.places-wrapper {
    position: relative;
    padding: 1rem;
    margin: 0 auto;
    max-width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 5px; /* Reduced from 30px */
    transition: transform 0.5s ease;
}

.place-card {
    flex: 0 0 calc((100% - 10px) / 3); /* Desktop: 3 cards */
    min-width: 0;
}

/* Tablet view */
@media (max-width: 1024px) and (min-width: 769px) {
    .place-card {
        flex: 0 0 calc((100% - 5px) / 2); /* Tablet: 2 cards */
    }
}

/* Mobile view */
@media (max-width: 768px) {
    .place-card {
        flex: 0 0 100%; /* Mobile: 1 card */
    }

    .places-wrapper {
        padding: 0 30px;
    }
}

.places-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.places-carousel {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 5px;
    transition: transform 0.3s ease-in-out;
}

.place-card {
    flex: 0 0 calc((100% - 10px) / 3);
    min-width: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.carousel-btn i {
    color: #333;
    font-size: 1rem;
}

.carousel-btn:hover {
    background: var(--primary);
}

.carousel-btn:hover i {
    color: white;
}

@media (max-width: 768px) {
    .places-wrapper {
        padding: 0 30px;
    }

    .place-card {
        flex: 0 0 100%;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
    }
}

.packages-section {
    padding: 4rem 0;
    background: #fff;
}

.packages-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.packages-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.packages-carousel::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
}

.packages-track {
    display: flex;
    gap: 20px;
    padding: 10px 0; /* Add padding for shadow visibility */
}

.package-card {
    flex: 0 0 300px;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

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

@media (max-width: 768px) {
    .packages-wrapper {
        padding: 0 15px;
    }

    .package-card {
        flex: 0 0 200px;
        height: 325px;
    }
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-down__arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-down__arrows span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    animation: scrollAnim 2s infinite;
    opacity: 0;
}

.scroll-down__arrows span:nth-child(1) {
    animation-delay: -0.4s;
}

.scroll-down__arrows span:nth-child(2) {
    animation-delay: -0.2s;
}

.scroll-down__arrows span:nth-child(3) {
    animation-delay: 0s;
}

@keyframes scrollAnim {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}

@media (max-width: 768px) {
    .scroll-down {
        bottom: 20px;
    }
    
    .scroll-down__arrows span {
        width: 15px;
        height: 15px;
    }
}

.destination-description {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.description-content {
    display: none;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.description-content.active {
    display: block;
}

.description-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.description-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .description-content h3 {
        font-size: 1.5rem;
    }
    
    .description-content p {
        font-size: 1rem;
    }
}

.view-more-container {
    text-align: center;
    margin-top: 4rem;
    padding: 0 1rem;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background-color: #1a1a1a;
    border-radius: 99px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.view-more-btn svg {
    transition: transform 0.3s ease;
}

.view-more-btn:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .view-more-container {
        margin-top: 3rem;
    }

    .view-more-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
    }
}

/* Places Carousel Styling */
.places-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.places-carousel {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

.places-carousel::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    gap: 20px;
    scroll-snap-type: x mandatory;
}

.place-card {
    flex: 0 0 300px;
    scroll-snap-align: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--accent-color);
    color: white;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .places-wrapper {
        padding: 0;
        margin: 0 -15px;
    }

    .places-carousel {
        padding: 1rem 15px;
    }

    .carousel-track {
        gap: 15px;
    }

    .place-card {
        flex: 0 0 70%;
    }

    .carousel-btn {
        display: none;
    }

    /* Add swipe indicator */
    .places-carousel::after {
        content: 'Swipe →';
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 6px 15px;
        border-radius: 20px;
        font-size: 0.875rem;
        animation: fadeInOut 2s infinite;
        z-index: 10;
    }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}