/* Luciole Regular Font */
@font-face {
    font-family: 'Luciole';
    src: url('../fonts/Luciole-Regular/Luciole-Regular.eot'); /* IE9 Compat Modes */
    src: url('../fonts/Luciole-Regular/Luciole-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/Luciole-Regular/Luciole-Regular.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/Luciole-Regular/Luciole-Regular.woff') format('woff'), /* Modern Browsers */
         url('../fonts/Luciole-Regular/Luciole-Regular.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/Luciole-Regular/Luciole-Regular.svg#Luciole-Regular') format('svg'); /* Legacy iOS */
    font-style: normal;
    font-weight: normal;
    text-rendering: optimizeLegibility;
}

/* Quicksand Regular Font */
@font-face {
    font-family: 'Quicksand';
    src: url('../fonts/Quicksand-Regular.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
    text-rendering: optimizeLegibility;
}

/* Quicksand SemiBold Font */
@font-face {
    font-family: 'Quicksand';
    src: url('../fonts/Quicksand-SemiBold.ttf') format('truetype');
    font-style: normal;
    font-weight: 600;
    text-rendering: optimizeLegibility;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #ffffff;
}

/* Logo */
.logo {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 20px;
    /* font-weight: bold; */
    color: white;
    font-family: 'Luciole', 'Arial', sans-serif;
}

.flag-icon {
    font-size: 20px;
}

/* Sidebar */
.sidebar {
    position: absolute;
    left: 40px;
    top: 120px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vertical-line {
    width: 2px;
    height: 200px;
    background-color: white;    
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.social-icon {
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

/* Main Content */
.main-content {
    position: relative;
    /* margin-left: 120px;  */
    /* Add left margin to avoid covering sidebar */
    /* width: calc(100% - 120px);  */
    /* max-width: 1400px; */
    /* margin: 0 auto; */
    /* padding: 100px 40px 40px; */
    background-image: url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* border-radius: 30px; */
    min-height: 100vh;
    /* margin-top: 40px; */
    /* margin-bottom: 40px; */
}

/* Overlay layer - 50% black fade on top of image, behind text */
.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Main Title */
.main-title {
    position: absolute;
    left: 200px;
    top: 150px;
    font-size: 72px;
    font-weight: normal;
    font-family: 'Quicksand', 'Arial', sans-serif;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.title-line {
    display: block;
    transition: opacity 0.3s ease-in-out;
}

/* About Section */
.about-section {
    position: absolute;
    left: 200px;
    top: 320px;
    max-width: 500px;
    z-index: 2;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'Quicksand', 'Arial', sans-serif;
}

.title-underline {
    position: relative;
    width: 50%;
    height: 2px;
    background-color: white;
    font-weight: bold;
    overflow: hidden;
    /* margin-bottom: 20px; */
}

.title-underline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #FFD700; /* Yellow color */
}

.title-underline.animate::after {
    animation: progressBar 5s linear forwards;
}

@keyframes progressBar {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

.title-underline.paused::after {
    animation-play-state: paused;
}

.about-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Quicksand', 'Arial', sans-serif;
    font-weight: 600;
}

.explore-btn {
    background-color: white;
    color: #2d1b4e;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.explore-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.explore-btn i {
    font-size: 14px;
}

/* Location Section */
.location-section {
    position: absolute;
    left: 200px;
    bottom: 200px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
}

.location-icon {
    font-size: 20px;
}

.tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background-color: white;
    color: #2d1b4e;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Photos Section */
.photos-section {
    position: absolute;
    right: 10px;
    bottom: 40px;
    max-width: 800px; /* Increased max-width to show more images */
    width: auto;
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.photos-section:hover {
    opacity: 0.9;
}

.photos-section-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
.photo-gallery {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    /* overflow-x: auto;  */
    /* Allow horizontal scrolling to see all images */
    overflow-y: scroll;
    cursor: pointer;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.photo-gallery::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.photo-thumbnail {
    flex: 0 0 120px;
    height: 170px;
    border-radius: 10px;
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease, border 0.3s ease;
    border: 1px solid transparent;
}

.photo-thumbnail.active {
    opacity: 1;
    border: 1px solid white;
}

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

.photo-indicators {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 15px;
    align-items: center;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border: none;
    color: #2d1b4e;
    font-size: 18px;
}

.nav-arrow:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.nav-arrow:active {
    transform: scale(0.95);
}

.nav-arrow i {
    color: #2d1b4e;
}

/* Right Navigation */
.right-nav {
    position: absolute;
    right: 40px;
    top: 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    z-index: 2;
}

.nav-item {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.nav-item:hover {
    opacity: 0.7;
}

.nav-line {
    width: 30px;
    height: 2px;
    background-color: white;
    margin-top: 10px;
    position: relative;
}

.nav-line::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 10px;
    background-color: white;
}

/* Copyright */
.copyright {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    z-index: 2;
}

/* Trending Route Section */
.trending-section {
    width: 100%;
    padding: 40px 40px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.trending-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.trending-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.trending-header {
    text-align: center;
    /* margin-bottom: 60px; */
}

.trending-subtitle {
    font-size: 16px;
    color: #3a3a3a;
    font-family: 'Quicksand', 'Arial', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.trending-title {
    font-size: 48px;
    color: #4a90e2;
    font-family: 'Quicksand', 'Arial', sans-serif;
    font-weight: 600;
    margin: 0;
}

.trending-cards {
    display: flex;
    gap: 30px;
    padding: 40px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* Show scrollbar */
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}

.trending-cards::-webkit-scrollbar {
    height: 8px;
}

.trending-cards::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.trending-cards::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.trending-cards::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.trending-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    flex: 0 0 calc(25% - 22.5px); /* Show 4 cards, accounting for gap */
    min-width: 280px; /* Minimum width for smaller screens */
    max-width: 320px; /* Maximum width */
}

.trending-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

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

.card-content {
    padding: 25px;
}

.card-package-type {
    font-size: 12px;
    font-weight: 600;
    color: #4a90e2;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-family: 'Quicksand', 'Arial', sans-serif;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.card-location {
    font-size: 18px;
    font-weight: 600;
    color: #2d1b4e;
    font-family: 'Quicksand', 'Arial', sans-serif;
}

.card-price {
    font-size: 20px;
    font-weight: 700;
    color: #2d1b4e;
    font-family: 'Quicksand', 'Arial', sans-serif;
    text-align: right;
    white-space: nowrap;
}

.price-note {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    display: block;
    margin-bottom: 2px;
}

.card-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    font-family: 'Quicksand', 'Arial', sans-serif;
}

.card-footer i {
    color: #2d1b4e;
    font-size: 14px;
}

/* Sightseeing Route Section */
.route-section {
    width: 100%;
    padding: 80px 40px 100px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.route-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.route-header {
    text-align: center;
    margin-bottom: 60px;
}

.route-subtitle {
    font-size: 12px;
    color: #666666;
    font-family: 'Quicksand', 'Arial', sans-serif;
    font-weight: 400;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.route-title {
    font-size: 36px;
    color: #000000;
    font-family: 'Quicksand', 'Arial', sans-serif;
    font-weight: 300;
    margin: 0;
    letter-spacing: -0.5px;
}

.route-content {
    position: relative;
    padding: 20px 0;
}

.route-path-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 1000px;
}

.route-path {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 200px;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.route-path path {
    stroke: #000000;
    stroke-width: 1.5;
    stroke-dasharray: 3,3;
    opacity: 0.4;
}

.route-points {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 120px;
    padding: 40px 0;
}

.route-point {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 200px;
}

.route-point-left {
    flex-direction: row;
}

.route-point-right {
    flex-direction: row-reverse;
}

.point-square {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #000000;
    z-index: 3;
    flex-shrink: 0;
}

.point-connector {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.point-connector-label {
    width: 100px;
    height: 2px;
}

.route-point-left .point-connector-label {
    left: calc(50% + 6px);
}

.route-point-right .point-connector-label {
    right: calc(50% + 6px);
    transform: translateY(-50%) scaleX(-1);
}

.point-connector-image {
    width: 200px;
    height: 2px;
}

.route-point-left .point-connector-image {
    left: calc(50% + 106px);
}

.route-point-right .point-connector-image {
    right: calc(50% + 106px);
    transform: translateY(-50%) scaleX(-1);
}

.connector-line {
    width: 100%;
    height: 100%;
    display: block;
}

.point-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    font-family: 'Quicksand', 'Arial', sans-serif;
    white-space: nowrap;
    z-index: 3;
}

.route-point-left .point-label {
    left: calc(50% + 116px);
}

.route-point-right .point-label {
    right: calc(50% + 116px);
    text-align: right;
}

.point-image {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    height: 180px;
    overflow: hidden;
    z-index: 3;
}

.route-point-left .point-image {
    left: calc(50% + 316px);
}

.route-point-right .point-image {
    right: calc(50% + 316px);
}

/* .point-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
} */

.mountains-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    overflow: hidden;
    z-index: 0;
}

.mountains-svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* About Gujarat Tour Section */
.about-gujarat-section {
    width: 100%;
    padding: 80px 40px;
    background-color: #f5f5f5;
    position: relative;
}

.about-gujarat-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.about-gujarat-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-gujarat-title {
    font-size: 42px;
    font-weight: 600;
    color: #2d1b4e;
    font-family: 'Quicksand', 'Arial', sans-serif;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-gujarat-text {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    font-family: 'Quicksand', 'Arial', sans-serif;
    font-weight: 400;
    margin: 0;
}

.about-gujarat-text strong {
    color: #ff5620;
    font-weight: 600;
}

/* Statistics Section */
.statistics-section {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    margin-top: 80px;
    align-items: start;
}

.statistics-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4a90e2 0%, #2d1b4e 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.stat-icon i {
    font-size: 24px;
    color: white;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #2d1b4e;
    font-family: 'Quicksand', 'Arial', sans-serif;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    font-family: 'Quicksand', 'Arial', sans-serif;
    margin-bottom: 10px;
}

.stat-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    font-family: 'Quicksand', 'Arial', sans-serif;
    margin: 0;
}

.statistics-center {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.statistics-logo {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.statistics-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.statistics-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.statistics-heading {
    font-size: 36px;
    font-weight: 700;
    color: #2d1b4e;
    font-family: 'Quicksand', 'Arial', sans-serif;
    line-height: 1.2;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.statistics-heading span {
    display: block;
}

.statistics-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    font-family: 'Quicksand', 'Arial', sans-serif;
    margin: 0;
}

/* Contact Us Section */
.contact-section {
    width: 100%;
    min-height: 800px;
    position: relative;
    background-image: url('../images/beach_view.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 40px 120px;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.contact-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    font-family: 'Quicksand', 'Arial', sans-serif;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    text-align: left;
}

.contact-map {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-map iframe {
    width: 100%;
    height: 450px;
    display: block;
    border: none;
}

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

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: white;
    font-family: 'Quicksand', 'Arial', sans-serif;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-info-item i {
    font-size: 20px;
    color: white;
    min-width: 24px;
    margin-top: 2px;
}

.contact-info-item p {
    margin: 0;
    line-height: 1.6;
}

.contact-info-item a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
    line-height: 1.6;
}

.contact-info-item a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.contact-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.contact-social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: 8px 0;
}

.contact-social-link:hover {
    transform: translateX(5px);
    opacity: 0.9;
}

.contact-social-link i {
    font-size: 24px;
    color: white;
    min-width: 28px;
    text-align: center;
}

.contact-social-link span {
    font-size: 16px;
    font-weight: 500;
    font-family: 'Quicksand', 'Arial', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-copyright {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.contact-copyright p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Quicksand', 'Arial', sans-serif;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Tour Detail Section */
.tour-detail-section {
    width: 100%;
    min-height: 100vh;
    padding: 120px 40px 80px;
    background-color: #ffffff;
    position: relative;
}

.tour-detail-section .logo-text {
    color: #2d1b4e;
}

.tour-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2d1b4e;
    text-decoration: none;
    font-family: 'Quicksand', 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 40px;
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 10px 20px;
    border-radius: 8px;
    background-color: #f5f5f5;
}

.back-button:hover {
    color: #4a90e2;
    transform: translateX(-5px);
    background-color: #e8f0f8;
}

.back-button i {
    font-size: 14px;
}

.tour-detail-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.tour-detail-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.tour-detail-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 120px;
}

.tour-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.tour-detail-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tour-package-type {
    font-size: 14px;
    font-weight: 600;
    color: #4a90e2;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Quicksand', 'Arial', sans-serif;
}

.tour-detail-title {
    font-size: 42px;
    font-weight: 600;
    color: #2d1b4e;
    font-family: 'Quicksand', 'Arial', sans-serif;
    margin: 0;
    line-height: 1.2;
}

.tour-detail-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.tour-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-family: 'Quicksand', 'Arial', sans-serif;
    font-size: 16px;
}

.tour-meta-item i {
    color: #4a90e2;
    font-size: 18px;
}

.tour-detail-description {
    margin-top: 20px;
}

.tour-detail-description h2 {
    font-size: 28px;
    font-weight: 600;
    color: #2d1b4e;
    font-family: 'Quicksand', 'Arial', sans-serif;
    margin-bottom: 20px;
}

.tour-detail-description p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    font-family: 'Quicksand', 'Arial', sans-serif;
    text-align: justify;
}

.tour-detail-actions {
    margin-top: 30px;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: 'Quicksand', 'Arial', sans-serif;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    font-size: 24px;
}

.book-now-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border: none;
    cursor: pointer;
    padding: 20px 50px;
    border-radius: 50px;
    font-family: 'Quicksand', 'Arial', sans-serif;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.book-now-button:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.book-now-button:active {
    transform: translateY(0);
}

/* Itinerary Section */
.tour-itinerary-section {
    margin-top: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Quicksand', 'Arial', sans-serif;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title i {
    color: #4a90e2;
    font-size: 28px;
}

.itinerary-timeline {
    position: relative;
    padding-left: 30px;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #4a90e2 0%, #2d1b4e 100%);
    border-radius: 2px;
}

.itinerary-day {
    position: relative;
    margin-bottom: 50px;
    padding-left: 40px;
}

.itinerary-day::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 10px;
    width: 16px;
    height: 16px;
    background-color: #4a90e2;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 3px #4a90e2;
}

.itinerary-day:last-child {
    margin-bottom: 0;
}

.day-header {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.day-number {
    background: linear-gradient(135deg, #4a90e2 0%, #2d1b4e 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    font-family: 'Quicksand', 'Arial', sans-serif;
    font-size: 18px;
    font-weight: 600;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.day-title-info {
    flex: 1;
}

.day-title {
    font-size: 24px;
    font-weight: 600;
    color: #2d1b4e;
    font-family: 'Quicksand', 'Arial', sans-serif;
    margin: 0 0 10px 0;
}

.day-pickup,
.day-night-stay,
.day-drop {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background-color: #e8f0f8;
    border-radius: 8px;
    font-size: 14px;
    color: #4a90e2;
    font-family: 'Quicksand', 'Arial', sans-serif;
    margin-right: 10px;
    margin-top: 5px;
}

.day-pickup i,
.day-night-stay i,
.day-drop i {
    font-size: 12px;
}

.day-activities {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.activity-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.activity-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.activity-time {
    min-width: 120px;
    font-size: 16px;
    font-weight: 600;
    color: #4a90e2;
    font-family: 'Quicksand', 'Arial', sans-serif;
    padding-top: 2px;
}

.activity-content {
    flex: 1;
}

.activity-title {
    font-size: 18px;
    font-weight: 600;
    color: #2d1b4e;
    font-family: 'Quicksand', 'Arial', sans-serif;
    margin: 0 0 8px 0;
}

.activity-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    font-family: 'Quicksand', 'Arial', sans-serif;
    margin: 0;
}

/* Inclusions Section */
.tour-inclusions-section {
    margin-top: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.inclusions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.inclusions-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.inclusions-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.inclusions-list li i {
    color: #25D366;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.inclusions-list li span {
    font-size: 16px;
    color: #444;
    font-family: 'Quicksand', 'Arial', sans-serif;
    line-height: 1.6;
}

/* Pricing Section */
.tour-pricing-section {
    margin-top: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #4a90e2 0%, #2d1b4e 100%);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    color: white;
}

.tour-pricing-section .section-title {
    color: white;
}

.tour-pricing-section .section-title i {
    color: white;
}

.pricing-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pricing-main {
    display: flex;
    align-items: baseline;
    gap: 15px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.pricing-label {
    font-size: 20px;
    font-weight: 500;
    font-family: 'Quicksand', 'Arial', sans-serif;
    opacity: 0.9;
}

.pricing-amount {
    font-size: 32px;
    font-weight: 700;
    font-family: 'Quicksand', 'Arial', sans-serif;
    color: white;
}

.pricing-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Quicksand', 'Arial', sans-serif;
}

.pricing-info i {
    font-size: 18px;
    opacity: 0.9;
}

.tour-detail-actions {
    margin-top: 50px;
    text-align: center;
    padding: 40px 0;
}

.tour-detail-error {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-family: 'Quicksand', 'Arial', sans-serif;
}

.tour-detail-error i {
    font-size: 64px;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.tour-detail-error h2 {
    font-size: 32px;
    color: #2d1b4e;
    margin-bottom: 15px;
}

.tour-detail-error p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Booking Modal */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    background-image: none !important;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* .booking-modal-overlay *,
.booking-modal-overlay *::before,
.booking-modal-overlay *::after {
    background-image: none !important;
} */

.booking-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.booking-modal {
    width: 80%;
    max-width: 1200px;
    height: 100%;
    background-color: #ffffff;
    background-image: none !important;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
    position: relative;
}

.booking-modal-overlay.active .booking-modal {
    transform: translateX(0);
}

.booking-modal-header {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #4a90e2 0%, #2d1b4e 100%);
    color: white;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.booking-modal-header h2 {
    font-size: 28px;
    font-weight: 600;
    font-family: 'Quicksand', 'Arial', sans-serif;
    margin: 0;
}

.modal-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 20px;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.booking-modal-content {
    padding: 40px;
    background-color: #ffffff;
    background-image: none;
}

.booking-form {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #ffffff;
    background-image: none;
}

.booking-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 35px;
    border-left: 5px solid #4a90e2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.booking-summary h3 {
    font-size: 24px;
    color: #2d1b4e;
    font-family: 'Quicksand', 'Arial', sans-serif;
    margin: 0 0 10px 0;
}

.package-info {
    font-size: 16px;
    color: #666;
    font-family: 'Quicksand', 'Arial', sans-serif;
    margin: 5px 0;
}

.package-price {
    font-size: 20px;
    font-weight: 600;
    color: #4a90e2;
    font-family: 'Quicksand', 'Arial', sans-serif;
    margin: 10px 0 0 0;
}

.passengers-section,
.contact-section {
    margin-bottom: 45px;
    background-color: #ffffff;
    background-image: none;
    padding: 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h3 {
    font-size: 22px;
    color: #2d1b4e;
    font-family: 'Quicksand', 'Arial', sans-serif;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-header h3 i {
    color: #4a90e2;
}

.add-passenger-btn {
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Quicksand', 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.add-passenger-btn:hover {
    background-color: #2d1b4e;
    transform: translateY(-2px);
}

.passengers-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.passenger-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.passenger-item .form-row {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}

.passenger-item .form-group input,
.passenger-item .form-group select {
    min-width: 100%;
    width: 100%;
}

.passenger-item:hover {
    border-color: #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.passenger-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.passenger-header h4 {
    font-size: 18px;
    color: #2d1b4e;
    font-family: 'Quicksand', 'Arial', sans-serif;
    margin: 0;
}

.remove-passenger-btn {
    background-color: #ff6b6b;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 14px;
}

.remove-passenger-btn:hover {
    background-color: #ff5252;
    transform: scale(1.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 25px;
}

.form-row-single {
    /* grid-template-columns: 1fr; */
    max-width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #2d1b4e;
    font-family: 'Quicksand', 'Arial', sans-serif;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.required {
    color: #ff6b6b;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Quicksand', 'Arial', sans-serif;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    background-color: #ffffff;
    color: #333333;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #c0c0c0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
    background-color: #fafafa;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

.payment-summary {
    background: linear-gradient(135deg, #4a90e2 0%, #2d1b4e 100%);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    color: white;
}

.payment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-family: 'Quicksand', 'Arial', sans-serif;
    font-size: 16px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.payment-row span {
    color: #ffffff;
}

.payment-row:last-child {
    border-bottom: none;
}

.payment-row.total {
    font-size: 24px;
    font-weight: 700;
    padding-top: 20px;
    margin-top: 10px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.payment-row.total span {
    color: #ffffff;
}

.booking-actions {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.cancel-btn,
.pay-btn {
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-family: 'Quicksand', 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cancel-btn {
    background-color: #e0e0e0;
    color: #666;
}

.cancel-btn:hover {
    background-color: #d0d0d0;
}

.pay-btn {
    background-color: #25D366;
    color: white;
}

.pay-btn:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* Terms and Conditions Section */
.terms-section {
    width: 100%;
    padding: 100px 40px 80px;
    background-color: #ffffff;
    min-height: 100vh;
}

.terms-container {
    max-width: 1000px;
    margin: 0 auto;
}

.terms-content {
    color: #333;
}

.terms-main-title {
    font-size: 42px;
    font-weight: 700;
    color: #2d1b4e;
    font-family: 'Quicksand', 'Arial', sans-serif;
    margin-bottom: 50px;
    text-align: center;
    line-height: 1.2;
}

.terms-subsection {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.terms-subsection:last-of-type {
    border-bottom: none;
}

.terms-section-title {
    font-size: 32px;
    font-weight: 600;
    color: #2d1b4e;
    font-family: 'Quicksand', 'Arial', sans-serif;
    margin-bottom: 25px;
    line-height: 1.3;
}

.terms-subsection-content {
    margin-bottom: 30px;
}

.terms-subsection-content:last-child {
    margin-bottom: 0;
}

.terms-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: #4a90e2;
    font-family: 'Quicksand', 'Arial', sans-serif;
    margin-bottom: 15px;
    line-height: 1.4;
}

.terms-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    font-family: 'Quicksand', 'Arial', sans-serif;
    margin-bottom: 15px;
}

.terms-text:last-child {
    margin-bottom: 0;
}

.terms-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.terms-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    font-family: 'Quicksand', 'Arial', sans-serif;
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
}

.terms-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: bold;
    font-size: 20px;
}

.terms-ordered-list {
    list-style: none;
    counter-reset: item;
    padding-left: 0;
    margin: 15px 0;
}

.terms-ordered-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    font-family: 'Quicksand', 'Arial', sans-serif;
    padding-left: 35px;
    position: relative;
    margin-bottom: 12px;
    counter-increment: item;
}

.terms-ordered-list li::before {
    content: counter(item) '.';
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: bold;
    font-size: 18px;
}

.terms-link {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: #2d1b4e;
    text-decoration: underline;
}

.contact-details {
    margin-top: 20px;
}

.contact-details p {
    margin-bottom: 10px;
}

.terms-footer-note {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
}

.terms-footer-note p {
    margin-bottom: 10px;
}

.terms-footer-note p:last-child {
    margin-bottom: 0;
}

/* Footer Section */
.footer-section {
    width: 100%;
    background-color: #2d1b4e;
    padding: 40px 40px 30px;
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Quicksand', 'Arial', sans-serif;
    font-weight: 500;
    transition: opacity 0.3s ease, color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.footer-link:hover {
    opacity: 0.8;
    color: #FFD700;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FFD700;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Quicksand', 'Arial', sans-serif;
    margin: 0;
}

/* Mobile Responsive Styles */
@media (max-width: 1200px) {
    .main-content {
        /* margin-left: 120px;
        width: calc(100% - 120px); */
        padding: 80px 30px 30px;
    }

    .main-title {
        left: 150px;
        font-size: 60px;
    }

    .about-section {
        position: static;
        /* max-width: 100%; */
    }

    .photos-section {
        right: 0px;
    }
}

@media (max-width: 968px) {
    .sidebar {
        left: 20px;
        top: 100px;
        display: none;
    }

    .logo {
        top: 20px;
        left: 20px;
    }

    .main-content {
        margin-left: 0; /* Remove left margin on mobile */
        width: 100%; /* Full width on mobile */
        padding: 60px 20px 20px;
        /* margin-top: 20px; */
    }

    .trending-section {
        padding: 60px 20px;
    }

    .trending-title {
        font-size: 36px;
    }

    .trending-cards {
        gap: 25px;
    }

    .trending-card {
        flex: 0 0 calc(50% - 12.5px);
        min-width: 250px;
        max-width: 300px;
    }

    .route-section {
        padding: 60px 20px 80px;
    }

    .route-header {
        margin-bottom: 40px;
    }

    .route-title {
        font-size: 28px;
    }

    .route-path-wrapper {
        min-height: 800px;
    }

    .route-points {
        gap: 80px;
    }

    .route-point {
        flex-direction: column !important;
        align-items: center;
        text-align: center;
        min-height: auto;
        padding: 20px 0;
    }

    .point-square {
        position: relative;
        left: auto;
        right: auto;
        transform: none;
        margin-bottom: 15px;
    }

    .point-connector {
        display: none;
    }

    .point-label {
        position: relative;
        left: auto !important;
        right: auto !important;
        transform: none;
        margin-bottom: 20px;
        text-align: center;
    }

    /* .point-image {
        position: relative;
        left: auto !important;
        right: auto !important;
        transform: none;
        width: 100%;
        max-width: 300px;
        height: 200px;
    } */

    .about-gujarat-section {
        padding: 60px 30px;
    }

    .about-gujarat-title {
        font-size: 36px;
    }

    .about-gujarat-text {
        font-size: 16px;
    }

    .statistics-section {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 60px;
    }

    .statistics-center {
        order: -1;
        padding: 0;
    }

    .statistics-logo {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .statistics-heading {
        font-size: 28px;
        text-align: center;
    }

    .statistics-description {
        text-align: center;
    }

    .main-title {
        position: static;
        font-size: 48px;
        /* margin-bottom: 30px; */
        text-align: center;
    }

    .about-section {
        position: static;
        /* max-width: 100%; */
        /* margin-bottom: 40px; */
    }

    .location-section {
        position: static;
        margin-bottom: 40px;
        justify-content: center;
    }

    .photos-section {
        position: static;
        max-width: 100%;
        margin-bottom: 40px;
    }

    .photo-gallery {
        justify-content: center;
        position: static;
    }
    
    .title-underline {
        position: relative;
    }

    /* .photos-section-content { */
        /* position: fixed;
        bottom: 250px; */
        /* left: 50%; */
        /* transform: translateX(-50%); */
    /* } */

    .photo-indicators {
        position: static;
    }

    .right-nav {
        position: static;
        text-align: center;
        margin-bottom: 20px;
    }

    .copyright {
        position: static;
        transform: none;
        text-align: center;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 20px;
    }

    .main-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 20px;
        position: static;
    }

    .about-text {
        font-size: 13px;
    }

    .photo-thumbnail {
        flex: 0 0 100px;
        height: 100px;
    }

    .tags {
        justify-content: center;
    }

    .tag {
        font-size: 12px;
        padding: 6px 15px;
    }

    .vertical-line {
        height: 150px;
    }

    .social-icons {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .trending-cards {
        overflow-x: auto;
    }

    .trending-card {
        flex: 0 0 85%;
        min-width: 280px;
        max-width: 320px;
    }

    .route-section {
        padding: 50px 20px 80px;
    }

    .route-header {
        margin-bottom: 40px;
    }

    .route-subtitle {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .route-title {
        font-size: 24px;
    }

    .route-path-wrapper {
        min-height: 700px;
    }

    .route-points {
        gap: 60px;
    }

    .point-label {
        font-size: 15px;
    }

    /* .point-image {
        max-width: 280px;
        height: 180px;
    } */

    .about-gujarat-section {
        padding: 40px 20px;
    }

    .about-gujarat-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .about-gujarat-text {
        font-size: 15px;
        line-height: 1.6;
    }

    .statistics-section {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .statistics-left {
        gap: 30px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 18px;
    }

    .stat-description {
        font-size: 13px;
    }

    .statistics-logo {
        width: 120px;
        height: 120px;
    }

    .statistics-heading {
        font-size: 24px;
    }

    .statistics-description {
        font-size: 14px;
    }

    .contact-section {
        padding: 50px 20px 90px;
        min-height: 600px;
    }

    .contact-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .contact-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .contact-info-wrapper {
        align-items: center;
    }

    .contact-info-item {
        justify-content: center;
        text-align: center;
        font-size: 15px;
    }

    .contact-info-item i {
        font-size: 18px;
    }

    .contact-map {
        order: -1;
    }

    .contact-map iframe {
        height: 350px;
    }

    .contact-social {
        align-items: center;
        gap: 12px;
    }

    .contact-social-link {
        justify-content: center;
    }

    .contact-social-link i {
        font-size: 20px;
    }

    .contact-social-link span {
        font-size: 14px;
    }

    .trending-title {
        font-size: 32px;
    }

    .trending-subtitle {
        font-size: 14px;
    }

    .terms-section {
        padding: 80px 20px 60px;
    }

    .terms-main-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .terms-section-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .terms-subtitle {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .terms-text {
        font-size: 15px;
    }

    .terms-list li,
    .terms-ordered-list li {
        font-size: 15px;
    }

    .footer-section {
        padding: 30px 20px 20px;
    }

    .footer-links {
        gap: 20px;
    }

    .footer-link {
        font-size: 14px;
    }

    .footer-copyright p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 40px 15px 15px;
        display: flex;
        border-radius: 0px;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
    }

    .main-title {
        font-size: 28px;
    }

    .photo-gallery {
        gap: 10px;
    }

    .photo-thumbnail {
        flex: 0 0 80px;
        height: 80px;
    }

    .explore-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .sidebar {
        left: 15px;
        top: 80px;
    }

    .logo {
        top: 15px;
        left: 15px;
    }

    .trending-section {
        padding: 40px 15px;
    }

    .trending-title {
        font-size: 28px;
    }

    .card-image {
        height: 200px;
    }

    .card-content {
        padding: 20px;
    }

    .card-location {
        font-size: 16px;
    }

    .card-price {
        font-size: 18px;
    }

    .route-section {
        padding: 40px 15px 60px;
    }

    .route-header {
        margin-bottom: 30px;
    }

    .route-subtitle {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .route-title {
        font-size: 20px;
    }

    .route-path-wrapper {
        min-height: 600px;
    }

    .route-points {
        gap: 50px;
    }

    .point-label {
        font-size: 14px;
    }

    .point-image {
        max-width: 100%;
        height: 160px;
    }

    .contact-section {
        padding: 40px 15px 80px;
        min-height: 600px;
    }

    .contact-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .contact-content-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .contact-info-wrapper {
        align-items: center;
    }

    .contact-info-item {
        font-size: 14px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
        display: flex;
        align-items: center;
    }

    .contact-info-item i {
        font-size: 18px;
    }

    .contact-map {
        order: -1;
    }

    .contact-map iframe {
        height: 300px;
    }

    .contact-social {
        align-items: center;
        gap: 12px;
    }

    .contact-social-link {
        justify-content: center;
        flex-direction: column;
        gap: 8px;
    }

    .contact-social-link i {
        font-size: 20px;
    }

    .contact-social-link span {
        font-size: 14px;
    }

    .contact-copyright {
        bottom: 20px;
    }

    .contact-copyright p {
        font-size: 12px;
    }

    /* Tour Detail Responsive Styles */
    .tour-detail-section {
        padding: 100px 20px 60px;
    }

    .tour-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tour-detail-image {
        position: relative;
        top: 0;
    }

    .tour-detail-title {
        font-size: 32px;
    }

    .tour-detail-meta {
        flex-direction: column;
        gap: 15px;
    }

    .tour-detail-description h2 {
        font-size: 24px;
    }

    .tour-detail-description p {
        font-size: 16px;
    }

    .whatsapp-button {
        width: 100%;
        padding: 16px 30px;
        font-size: 16px;
    }

    .back-button {
        font-size: 14px;
        padding: 8px 16px;
    }

    .terms-section {
        padding: 60px 15px 50px;
    }

    .terms-main-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .terms-section-title {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .terms-subtitle {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .terms-text {
        font-size: 14px;
    }

    .terms-list li,
    .terms-ordered-list li {
        font-size: 14px;
        padding-left: 20px;
    }

    .terms-ordered-list li {
        padding-left: 28px;
    }

    .terms-footer-note {
        padding: 20px;
    }

    .footer-section {
        padding: 25px 15px 15px;
    }

    .footer-links {
        gap: 15px;
        flex-direction: column;
    }

    .footer-link {
        font-size: 14px;
    }

    .footer-copyright {
        padding-top: 15px;
    }

    .footer-copyright p {
        font-size: 12px;
    }

    /* Booking Modal Responsive */
    .booking-modal {
        width: 100%;
    }

    .booking-modal-header {
        padding: 20px;
    }

    .booking-modal-header h2 {
        font-size: 22px;
    }

    .booking-modal-content {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-actions {
        flex-direction: column;
    }

    .cancel-btn,
    .pay-btn {
        width: 100%;
        justify-content: center;
    }
}
