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

body,html {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    background: #161b24;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}
.logo {
    display: flex;
    align-items: center;
    color: #FEA05A;
    font-size: 1.8rem;
    font-weight: bold;
    font-family: 'Courier New', Courier, monospace;
    text-decoration: none;
}
.tour {
    display: flex;
    align-items: center;
}
.travel {
    height: 30px;
    margin-right: 0.5rem;
}
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}
.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #FEA05A;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}
.mobile-menu {
    position: fixed;
    top: 80px;
    right: -300px;
    width: 250px;
    height: calc(100vh - 80px);
    background: #000000;
    transition: right 0.3s ease;
    padding: 2rem;
    z-index: 999;
}
.mobile-menu.active {
    right: 0;
}
.mobile-menu ul {
    list-style: none;
}
.mobile-menu ul li {
    margin: 2rem 0;
}
.mobile-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}
.slideshow-container {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.slide.active {
    opacity: 1;
}
.slide:nth-child(1) {
    background-image: url('norway.jpg');
    background-position: center center;
}
.slide:nth-child(2) {
    background-image: url('denmark.jpg');
    background-position: center center;
}
.slide:nth-child(3) {
    background-image: url('iceland.jpg');
    background-position: center center;
}
@media only screen and (max-width: 1024px) {
    .slide:nth-child(1) {
        background-image: url('norway.jpg');
    }
    .slide:nth-child(2) {
        background-image: url('denmark.jpg');
    }
    .slide:nth-child(3) {
        background-image: url('iceland.jpg');
    }
}
@media only screen and (max-width: 768px) {
    .slide:nth-child(1) {
        background-image: url('norway.jpg');
        background-position: top center;
    }
    .slide:nth-child(2) {
        background-image: url('denmark.jpg');
        background-position: center center;
    }
    .slide:nth-child(3) {
        background-image: url('iceland.jpg');
        background-position: center center;
    }
}
.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 3rem 2rem 2rem;
    text-align: center;
    animation: fadeIn 1s ease-out;
}
.page-navigation {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10rem;
    align-items: center;
    z-index: 100;
}
.page-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.8rem 1.5rem;
}

.page-item:hover {
    transform: translateY(-3px);
}
.page-number {
    font-size: 1.1rem;
    font-weight: bold;
    color: #FEA05A;
}
.page-name {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}
.page-item.active .page-name {
    font-weight: bold;
    font-size: 1.4rem;
}
.page-item.active {
    transform: scale(1.05);
}
.progress-bar {
    display: none;
}
.hero-section {
    position: relative;
    width: 100%;
}
.social-iconss {
    position: absolute;
    bottom: 90px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}
.social-icons {
    position: absolute;
    bottom: 100px;
    left: 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}
.social-icons a,
.social-iconss a {
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s;
}
.social-icons a:hover,
.social-iconss a:hover {
    color: #ff9900;
}
.container {
    width: 100%;
    height: 260;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    border-radius: 10px;
}

.top-section {
    position: relative;
    background: #212529;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 50px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    background: #212529;
}

.grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.icon-circle {
    width: 50px;
    height: 50px;
    background-color: #212529;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.icon {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}
.grid-item pre {
    font-size: 16px;
    line-height: 1.4;
    color: #e0e0e0;
}
.scroll-indicator {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
    color: #888888;
    text-transform: uppercase;
}
.scroll-icon {
    width: 20px;
    height: 20px;
    margin-top: 5px;
    animation: bounce 1s infinite;
}
@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}
.bottom-section {
    text-align: center;
    margin-top: 10px;
}
.bottom-section h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 1px;
}
.bottom-section .orange-text {
    color: #FEA05A;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif;
}
.containerr {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}

.search-box {
    background: #292929;
    display: flex;
    padding: 30px;
    border-radius: 10px;
    gap: 20px;
    flex-wrap: wrap;
}

.field {
    display: flex;
    flex-direction: column;
    color: #FEA05A;
    width: 200px;
}

.field label {
    font-weight: bold;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.field select,
.field input {
    padding: 10px;
    border-radius: 5px;
    border: none;
    color: #ffffff;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    background-color: #292929;
}
.local::placeholder {
    color: #ffffff;
}
.vertical-line {
    width: 1px;
    background: linear-gradient(to bottom, transparent, orange, transparent);
    height: 90px;
}
.search-btn {
    background: #FEA05A;
    color: #ffffff;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    align-self: center;
}

.hero {
    margin-top: 50px;
    text-align: center;
}

.hero h2 {
    font-size: 32px;
    color: orange;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.hero button {
    margin-top: 20px;
    padding: 12px 30px;
    background: orange;
    color: black;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}

#home {
    display: none;
    background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb') no-repeat center center/cover;
    min-height: 100vh;
    color: white;
    justify-content: center;
    align-items: center;
    display: flex;
    font-size: 3rem;
    font-weight: bold;
}
.main-content {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 0 1rem;
}
.main-content .services {
    display: none;
}

.subtitle {
    color: #cbd5e0;
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 1rem;
}

.title {
    color: #FEA05A;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .title {
        font-size: 5rem;
    }
}
.services {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1rem;
    width: 100%;
}

.service-item {
    display: flex;
    align-items: center;
    /* Vertically aligns icon with text (Corrected from 'left') */
    gap: 2rem;
    margin-bottom: 2rem;
    /* Optional: you can set a max-width if you want to control line breaks */
    /* max-width: 220px; */
}

/* This adds the circular background and shadow to the icons */
.service-item i {
    color: #FEA05A;
    font-size: 18px;

    /* 1. Create the circular shape */
    min-width: 45px;
    height: 45px;
    border-radius: 50%;

    /* 2. Add the background and shadow */
    background-color: rgba(254, 160, 90, 0.1);
    /* A very light orange for the circle */
    /* 3. Center the icon itself within the circle */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* This ensures the text is styled and aligned correctly */
.service-item h3 {
    color: #FEA05A;
    margin: 0 0 4px 0;
    /* Reset default margin and add a little space below */
    text-align: left;
}

.service-item p {
    color: #ffffff;
    /* A slightly softer color for better readability */
    margin: 0;
    text-align: left;
    font-size: 14px;
    line-height: 1.4;
}

/* This is the existing CSS for the image, included for completeness */
.explore-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.explore-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 1rem;
}
.offers-section {
    /* padding: 6rem 5%; */
    text-align: center;
    margin-top: 20px;
}
.section-title p {
    font-size: 26px;
    margin-bottom:10px;
}

.section-title h2 {
    font-size: 38px;
    margin-bottom: 30px;
}
.offer-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    justify-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.offer-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.offer-icon i {
    font-size: 2rem;
    color: #FEA05A;
    width: 100px;
    height: 100px;
    background-color: rgba(254, 160, 90, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.offer-icon:hover i {
    transform: scale(1.1);
}

.offer-icon span {
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
}

/* View All Button - Centered */
.view-all-container {
    text-align: center;
    margin-top: 2rem;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    color: #FEA05A;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.view-all-btn:hover {
    color: #ffffff;
}

.view-all-btn i {
    margin-left: 0.5rem;
    background-color: #FEA05A;
    color: #fff;
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 0.8rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive design */
@media (max-width: 768px) {
    .offer-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 400px;
    }
    
    .offer-icon i {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}
/* Map Container Styling */
.map-container {
    position: relative;
    max-width: 100vw;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;

}

.world {
    display: flex;
    justify-content: center;
    font-style: codec pro;
}

.world pre {
    font-size: 36px;
}

.world b {
    font-size: 38px;
    font-weight: 900;
}

/* Responsive heading for smaller screens */
@media (min-width: 640px) {

    /* Equivalent to sm breakpoint */
    .map-container h1 {
        font-size: 2.25rem;
        /* Equivalent to sm:text-4xl */
    }
}

.contain {
    max-width: 1200px;
    /* Max width for general content */
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    /* Center the section headings */
}

/* --- Blog News Section Headings --- */
.blog-news-section {
    padding: 80px 20px;
    /* Padding for the entire section */
    width: 100%;
    background-color: var(--dark-bg);
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 400;
    color: #ffffff;
    /* Orange color */
    margin-bottom: 5px;
    /* Space between subtitle and title */
    text-align: center;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    /* Large font size for title */
    font-weight: 800;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 50px;
    /* Space below title before the card */
    text-align: center;
}

/* --- News Card Styling --- */
.news-card {
    background-color: var(--card-bg);
    /* Card background color */
    border-radius: 15px;
    /* Rounded corners */
    overflow: hidden;
    /* Ensures image and elements inside respect border-radius */
    max-width: 1200px;
    /*Max width of the card */
    width: 100%;
    margin: 0 auto;
    /* Center the card */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    /* Subtle shadow */
}

.news-image-container {
    position: relative;
    /* Essential for positioning date tag and profile pic */
    width: 100%;
    /* Aspect ratio for the image container - adjust as needed (e.g., 56.25% for 16:9) */
    padding-bottom: 56.36%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    /* Hide anything outside the container's bounds */
}

.news-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image covers the container */
    display: block;
    border-radius: 15px 15px 0 0;
    /* Match card border-radius for top corners */
}

.date-tag {
    position: absolute;
    top: 20px;
    /* Distance from top */
    left: 20px;
    /* Distance from left */
    background-color: #FEA05A;
    /* Orange background */
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 5px;
    /* Slightly rounded corners for the tag */
    font-family: 'Poppins', sans-serif;
    font-size: 0.9em;
    font-weight: 600;
    z-index: 10;
    /* Ensure it's above the image */
}

.image-profile-pic {
    position: absolute;
    bottom: 20px;
    /* Distance from bottom */
    right: 20px;
    /* Distance from right */
    width: 50px;
    /* Size of the profile picture */
    height: 50px;
    border-radius: 50%;
    /* Circular */
    object-fit: cover;
    border: 3px solid var(--orange-accent);
    /* Orange border */
    z-index: 10;
    /* Ensure it's above the image */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    /* Subtle shadow */
}


/* Hover Card Styles */
.hover-card {
    display: none;
    /* Hidden by default */
    position: absolute;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 15px;
    width: 300px;
    /* Adjust width as needed */
    z-index: 20;
    /* Ensure it's above other elements */
    opacity: 0;
    transform: translateY(10px);
    /* Start slightly below its final position */
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    pointer-events: auto;
    /* Allows interaction with the card */
    text-align: left;
    color: #333;
}

.hover-card .card-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
}

.hover-card .card-details h3 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #333;
    font-size: 1.2em;
}

.hover-card .card-details p {
    margin-bottom: 5px;
    font-size: 0.9em;
    line-height: 1.4;
}

.hover-card .card-details .stars {
    color: #FFD700;
    /* Gold color for stars */
}

.hover-card .card-details strong {
    color: #ff5722;
    /* Orange for pricing */
}

.hover-card .book-now-button {
    background-color: #ff5722;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.hover-card .book-now-button:hover {
    background-color: #e04e1e;
}

.available-dates {
    font-weight: bold;
    color: #28a745;
    /* Green for availability */
}

/* Hide the placeholder hotspotInfo image, as we are using the custom hover card */
#hotspotInfo {
    display: none;
}
.footer {
    padding: 4rem 5% 2rem;
}

.footer-cta {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    padding-bottom: 3rem;
    border-bottom: 1px solid #374151;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.inquiry {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.footer-cta h1 {
    font-size: 38px;
    font-weight: 300;
    line-height: 1.2;
}

.footer-cta h1 span {
    color: #FEA05A;
}

.inquiry-btn {
    display: inline-block;
    color: #FEA05A;
    font-weight: 400;
    text-decoration: none;
}

.inquiry-btn i {
    margin-left: 0.5rem;
    background-color: transparent;
    border: 1px solid #FEA05A;
    color: #FEA05A;
    padding: 0.8rem;
    border-radius: 50%;
    transition: background-color 0.3s, color 0.3s;
}

.inquiry-btn:hover i {
    background-color: #FEA05A;
    color: #fff;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #FEA05A;
}

.footer-col p, .footer-col a {
    color: #ffffff;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.col {
    margin-bottom: 1rem;
    list-style-type: none;
}

.footer-col a:hover {
    color: #FEA05A;
}

.quick {
    display: flex;
    justify-content: center;
}

.news {
    display: flex;
    justify-content: center;
}

.newsletter-form {
    display: flex;
    background-color: rgba(254, 160, 90, 0.1);
    border-radius: 50px;
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 1rem 1rem;
    color: #ffffff;
    min-width: 0;
}

.newsletter-form input::placeholder {
    color: #9CA3AF;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    border: none;
    color: #fff;
    background-color: #FEA05A;
    padding: 0.8rem 1rem;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #e8904a;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    padding-top: 2rem;
    border-top: 1px solid #374151;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #9CA3AF;
    margin: 0;
    text-align: left;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    color: #ffffff;
    margin-top: 20px;
    text-decoration: none;
}

.footer-bottom a, .footer-col a, .footer-social a {
    color: #ffffff;
    text-decoration: none;
}

.footer-social a:hover {
    color: #FEA05A;
}

.media {
    display: flex;
    color: #ffffff;
    justify-content: center;
    gap: 2rem;
    font-size: 24px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.media a:hover {
    color: #FEA05A;
}

.media i {
    color: #ffffff;
    transition: color 0.3s ease;
}

.media a:hover i {
    color: #FEA05A;
}

/* Responsive Media Queries */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .footer {
        padding: 3rem 4% 2rem;
    }
    
    .footer-cta h1 {
        font-size: 32px;
    }
    
    .footer-main {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }
}

/* Tablets */
 @media (max-width: 768px) { 
    .footer {
        padding: 3rem 3% 2rem;
    }
    
    .footer-cta {
        flex-direction: column;
        /* text-align: center; */
        gap: 1.5rem;
    }
    
    .footer-cta h1 {
        font-size: 28px;
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .media {
        gap: 1.5rem;
        font-size: 20px;
    }
}

/* Mobile Devices */
@media (max-width: 480px) {
    .footer {
        padding: 2rem 5% 1.5rem;
    }
    
    .footer-cta {
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-cta h1 {
        font-size: 24px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        border-radius: 25px;
        padding: 0.5rem;
    }
    
    .newsletter-form input {
        padding: 1rem;
        border-radius: 20px;
        margin-bottom: 0.5rem;
    }
    
    .newsletter-form button {
        border-radius: 20px;
        padding: 1rem;
        align-self: center;
        min-width: 120px;
    }
    
    .media {
        gap: 1rem;
        font-size: 18px;
    }
    
    .inquiry-btn i {
        padding: 0.6rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 320px) {
    .footer {
        padding: 1.5rem 3% 1rem;
    }
    
    .footer-cta h1 {
        font-size: 20px;
    }
    
    .media {
        font-size: 16px;
    }
    
    .footer-main {
        gap: 1rem;
    }
}

.map-container {
      position: relative;
      width: 100%;
      max-width: 1000px;
      margin: 50px auto;
      padding: 10px;
    }

    #worldMap {
      width: 100%;
      transition: opacity 0.5s ease-in-out;
    }

    .loader {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
    }

    .hotspot {
      position: absolute;
      color:#ffffff;
      font-size: 24px;
      cursor: pointer;
      transition: transform 0.2s;
    }

    .hotspot:hover {
      transform: scale(1.2);
    }

    /* Unified Card */
    .hotspot-card {
      display: none;
      position: absolute;
      top: 20%;
      left: 55%;
      width: 300px;
      background-color: #292929;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
      overflow: hidden;
      z-index: 20;
      color: #ffffff;
      font-family: 'Poppins', sans-serif;
    }

    .hotspot-card img {
      width: 100%;
      height: 160px;
      object-fit: cover;
    }

    .hotspot-content {
      padding: 15px;
    }

    .hotspot-content h3 {
      margin: 0 0 5px;
      font-size: 18px;
    }

    .hotspot-content .location {
      font-size: 14px;
      color: #cbd5e1;
    }

    .stars {
      color: #facc15;
      margin-left: 5px;
    }

    .info {
      display: flex;
      justify-content: space-between;
      margin: 10px 0;
      font-size: 14px;
    }
    
    .info i{
        color:#FEA05A;
    }
    .price {
      color: #ffffff;
      font-weight: 600;
    }
    .location{
        color:#ffffff;
    }
    .amount {
      color: #FEA05A;
      font-size: 16px;
    }
/* Responsive heading for smaller screens */
@media (min-width: 640px) {

    /* Equivalent to sm breakpoint */
    .map-container h1 {
        font-size: 2.25rem;
        /* Equivalent to sm:text-4xl */
    }
}

.hotspot:hover {
    color: #FEA05A;
}


.blog-card-section {
    width: 100%;
    display: flex;
    justify-content: center;
}

.blog-card {
    background-color: #292929;
    border-radius: 10px;
    padding: 30px;
    max-width: 600px;
    /* Max width for the card */
    width: 100%;
    /* Make it responsive */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    /* Subtle shadow */
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.profile-pic {
    width: 45px;
    /* Size of the profile picture */
    height: 45px;
    border-radius: 50%;
    /* Circular */
    object-fit: cover;
    /* Ensure image covers the circle */
    margin-right: 15px;
    border: 2px solid var(--orange-accent);
    /* Orange border for the profile pic */
}

.user-details {
    text-align: left;
}

.content a {
    color: #FEA05A;
}

.user-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95em;
    color: var(--light-text);
    margin: 0;
}

.user-title {
    font-size: 0.8em;
    color: var(--gray-text);
    /* Gray text for 'Traveller' */
    margin: 0;
    text-transform: uppercase;
}

.post-meta {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
}

.tour-guide-tag {
    background-color: #FEA05A;
    /* Orange background for the tag */
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 10px;
    /* Rounded corners */
    font-size: 0.8em;
    font-weight: 600;
    margin-right: 20px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    /* Prevent tag text from breaking */
    margin-bottom: 10px;
    /* Space if wraps */
}

.post-meta :hover {
    color: black;
    cursor: pointer;
}

.post-date {
    font-size: 0.9em;
    color: var(--gray-text);
    display: flex;
    align-items: center;
    white-space: nowrap;
    /* Prevent date text from breaking */
    margin-bottom: 10px;
    /* Space if wraps */
}

.post-date i {
    margin-right: 8px;
    color: #FEA05A;
    /* Orange icon */
}

.post-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    /* Adjust size as needed */
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.3;
    text-align: left;
}

/* Read More Button (General Style for both sections) */
.read-more-btn {
    display: flex;
    justify-content: right;
    align-items: center;
    background: none;
    border: none;
    /* No border initially */
    color: #FEA05A;
    padding: 10px 0;
    /* Padding for text area */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: #ffffff;
    /* Orange text on hover */
}

.arrow-circle-small {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    /* Smaller circle size */
    height: 30px;
    border: 2px solid var(--light-text);
    /* White border */
    border-radius: 50%;
    margin-left: 15px;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.arrow-circle-small {
    background-color: #FEA05A;
    color: #ffffff;
    /* Orange border on hover */
}

.arrow-circle-small i {
    font-size: 0.9em;
    color: white;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: #ffffff;
    /* Orange arrow on hover */
}

/* --- Section 2: Travel Guide Promo --- */
.travel-guide-promo-section {
    position: relative;
    width: 100%;
    height: 500px;
    /* Fixed height for the section */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* Important to contain the image */
    margin-top: 50px;
    /* Space between the two sections */
    margin-bottom: 50px;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cover the entire area */
    filter: brightness(0.6);
    /* Slightly darken the image */
    z-index: 1;
    /* Behind content */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.2));
    /* Gradient overlay */
    z-index: 2;
    /* Between image and content */
}

.travel-guide-promo-section .content {
    position: relative;
    z-index: 3;
    /* Above overlay and image */
    text-align: left;
    /* Align text to the left as in image */
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.guide-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    /* Large font size */
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.2;
}

.guide-title .highlight {
    color: #ffffff;
    /* Orange for "Travel Guide" */
    font-weight: 800;
    /* Keep same weight as parent */
    font-size: 38px;
}

/* Specific styling for the Read More button in the light section */
.read-more-btn.light {
    color: var(--light-text);
    /* White text */
}

.read-more-btn.light .arrow-circle-small {
    border-color: var(--light-text);
    /* White border */
}

.read-more-btn.light:hover {
    color: var(--orange-accent);
    /* Orange text on hover */
}

.read-more-btn.light:hover .arrow-circle-small {
    border-color: var(--orange-accent);
    /* Orange border on hover */
}

.read-more-btn.light:hover .arrow-circle-small i {
    color: var(--orange-accent);
    /* Orange arrow on hover */
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .blog-card {
        padding: 25px;
        max-width: 90%;
    }

    .user-name {
        font-size: 0.9em;
    }

    .user-title {
        font-size: 0.75em;
    }

    .tour-guide-tag,
    .post-date {
        font-size: 0.75em;
    }

    .post-title {
        font-size: 1.5em;
    }

    .read-more-btn {
        font-size: 0.85em;
    }

    .arrow-circle-small {
        width: 25px;
        height: 25px;
    }

    .guide-title {
        font-size: 2.5em;
    }

    .travel-guide-promo-section {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .blog-card {
        padding: 20px;
    }

    .user-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-pic {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .post-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .tour-guide-tag {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .post-title {
        font-size: 1.3em;
    }

    .guide-title {
        font-size: 2em;
        text-align: center;
        /* Center for very small screens */
    }

    .travel-guide-promo-section .content {
        text-align: center;
        /* Center for very small screens */
    }

    .read-more-btn,
    .read-more-btn.light {
        justify-content: center;
        /* Center button text and icon for small screens */
        width: 100%;
    }
}


.pack-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.pack-container h2 {
    font-size: 26px;
    font-weight: 300;
}

.pack-container b {
    font-size: 38px;
    font-weight: 800;
}

.packages-section {
    /* padding: 80px 20px; */
    width: 100%;
    /* background-color: var(--black-bg); */
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3em;
    font-weight: 700;
    color: var(--light-text);
    margin-top: 0;
    /* margin-bottom: 60px; */
    line-height: 1.2;
    text-align: center;
}

/* --- Packages Grid Layout --- */
.packages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Default: Two columns for medium screens */
    max-width: 1000px;
}

/* Small screens (mobile) - 1 column */
/* @media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .section-title {
        font-size: 2.2em; /* Slightly smaller title for mobile 
    }
} */

/* Large screens (laptop/desktop) - 4 columns */
@media (min-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1400px; /* Increase max-width for 4 columns */
    }
}

.package-item {
    position: relative;
    /* border-radius: 15px; */
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* .package-item:hover {
    transform: translateY(-5px);
} */

.package-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.package-item:hover .package-image {
    transform: scale(1.05);
}

/* --- Image Overlay for Hover Effect --- */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    /* padding: 40px; */
    box-sizing: border-box;
    text-align: left;
}

.package-item:hover .image-overlay {
    opacity: 1;
}

/* Orange Vertical Line */
.image-overlay::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 20px;
    width: 4px;
    height: 40px;
    background-color: #FEA05A;
}

.overlay-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1;
    margin-top: 50px;
    padding-left: 25px;
}

/* Responsive overlay text sizing */
@media (max-width: 768px) {
    .overlay-title {
        font-size: 1.8em;
    }
}

@media (min-width: 1200px) {
    .overlay-title {
        font-size: 1.6em; /* Smaller text for 4-column layout */
    }
}

.overlay-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8em;
    font-weight: normal;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 30px;
    padding-left: 25px;
}

/* Responsive overlay text sizing */
@media (min-width: 1200px) {
    .overlay-text {
        font-size: 0.7em; /* Smaller text for 4-column layout */
        line-height: 1.3;
    }
}

.explore-now-btn {
    display: inline-flex;
    align-items: center;
    background: none;
    border: none;
    color: #FEA05A;
    padding: 10px 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-left: 25px;
}

.explore-now-btn:hover {
    color: #ffffff;
}

.arrow-circle-explore {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 2px solid var(--orange-accent);
    border-radius: 50%;
    margin-left: 15px;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.explore-now-btn:hover .arrow-circle-explore {
    background-color: #FEA05A;
}

.arrow-circle-explore i {
    font-size: 0.9em;
    color: var(--orange-accent);
    transition: color 0.3s ease;
}

.explore-now-btn:hover .arrow-circle-explore i {
    color: #ffffff;
}

/* Responsive button sizing for 4-column layout */
@media (min-width: 1200px) {
    .explore-now-btn {
        font-size: 0.85em;
    }
    
    .arrow-circle-explore {
        width: 25px;
        height: 25px;
        margin-left: 10px;
    }
    
    .arrow-circle-explore i {
        font-size: 0.8em;
    }
}

/* --- Scroll To Top Button --- */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--orange-accent);
    color: var(--light-text);
    border: none;
    /* border-radius: 50%; */
    width: 50px;
    height: 50px;
    font-size: 1.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: 1000;
}

.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top-btn:hover {
    background-color: #e05e53;
    transform: translateY(-2px);
}
:root {
    --black-bg: #000000;
    --light-text: #ffffff;
    --orange-accent: #ff6f61;
    --gray-text: #a0aec0;
    --card-bg: #2d3748;
}

/* Main video section container */
.video-section {
    width: 100%;
    max-width: 900px;
    margin: 0 auto; /* Center the section */
    text-align: center;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Typography */
.section-titles {
    font-size: 36px;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
    color: #ffffff;
    line-height: 1.2;
}

.section-title {
    font-size: 28px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.3;
}

.learn-more {
    margin-bottom: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.learn-now-link {
    color: #ff914d;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.learn-now-link:hover {
    color: #ffffff;
}

.learn-now-link .arrow {
    margin-left: 8px;
    font-size: 1.4em;
    color: #FEA05A;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
}

.learn-now-link:hover .arrow {
    margin-left: 15px;
    background-color: #FEA05A;
    color: #ffffff;
}

/* Video container */
.video-container {
    position: relative;
    width: 100%;
    max-width: 650px;
    height: 550px;
    overflow: hidden;
    cursor: pointer;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    transition: background 0.3s ease;
}

.video-container:hover .play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid #333;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.video-container:hover .play-button {
    background: white;
    transform: scale(1.1);
}

.play-text {
    color: white;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 600;
}

.youtube-player {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.hidden {
    display: none;
}

.back-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.back-button:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.05);
}

/* Responsive Design */

/* Large Tablets and Small Desktops (1024px and below) */
@media (max-width: 1024px) {
    .video-section {
        max-width: 800px;
        padding: 3rem 4%;
    }
    
    .section-titles {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .video-container {
        max-width: 600px;
        height: 450px;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
    }
    
    .play-button::before {
        border-left: 18px solid #333;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .video-section {
        max-width: 100%;
        padding: 2.5rem 3%;
    }
    
    .section-titles {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .learn-more {
        margin-bottom: 30px;
    }
    
    .learn-now-link {
        font-size: 1rem;
    }
    
    .video-container {
        max-width: 500px;
        height: 350px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button::before {
        border-left: 16px solid #333;
        border-top: 9px solid transparent;
        border-bottom: 9px solid transparent;
    }
    
    .play-text {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .back-button {
        top: 15px;
        right: 15px;
        padding: 8px 12px;
        font-size: 14px;
    }
}

/* Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .video-section {
        padding: 2rem 5%;
    }
    
    .section-titles {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .section-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .learn-more {
        margin-bottom: 25px;
    }
    
    .learn-now-link {
        font-size: 0.95rem;
    }
    
    .learn-now-link .arrow {
        font-size: 1.2em;
        padding: 6px;
    }
    
    .video-container {
        max-width: 100%;
        height: 280px;
        border-radius: 8px;
    }
    
    .video-cover {
        border-radius: 8px;
    }
    
    .play-overlay {
        border-radius: 8px;
    }
    
    .youtube-player {
        border-radius: 8px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .play-button::before {
        border-left: 14px solid #333;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        margin-left: 3px;
    }
    
    .play-text {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .back-button {
        top: 10px;
        right: 10px;
        padding: 6px 10px;
        font-size: 12px;
        border-radius: 20px;
    }
}

/* Extra Small Mobile Devices (320px and below) */
@media (max-width: 320px) {
    .video-section {
        padding: 1.5rem 3%;
    }
    
    .section-titles {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 16px;
    }
    
    .video-container {
        height: 220px;
    }
    
    .play-button {
        width: 45px;
        height: 45px;
    }
    
    .play-button::before {
        border-left: 12px solid #333;
        border-top: 7px solid transparent;
        border-bottom: 7px solid transparent;
    }
    
    .play-text {
        font-size: 0.8rem;
    }
}

/* Landscape orientation for mobile devices */
@media (max-width: 768px) and (orientation: landscape) {
    .video-section {
        padding: 2rem 5%;
    }
    
    .video-container {
        max-width: 70%;
        height: 60vh;
    }
    
    .section-titles {
        font-size: 26px;
    }
    
    .section-title {
        font-size: 18px;
    }
}

.travel-slider-wrapper {
    position: relative;
    width: 100%;
    /* max-width: 800px; */
    height: 550px;
    overflow: hidden;
    border-radius: 35px;
}

.travel-slide-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    border-radius: 35px;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.travel-slide-item.active-slide {
    opacity: 1;
}

.travel-slide-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.6) 100%);
}

.travel-slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: white;
}

.travel-discount-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: #FEA05A;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 12px;
}

.travel-rating-section {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.travel-stars-group {
    display: flex;
    gap: 2px;
}

.travel-star-icon {
    font-size: 20px;
    color: #ffd700;
}

.travel-star-icon.empty-star {
    color: #444;
}

.travel-review-count {
    color: #ccc;
    font-size: 14px;
}

.travel-destination-heading {
    font-size: 32px;
    margin-bottom: 15px;
    background: #FEA05A;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.travel-title-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    margin-bottom: 20px;
    border-radius: 2px;
}

.travel-destination-description {
    font-size: 14px;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 10px;
    max-width: 400px;
}

.travel-duration-text {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 0;
}
.travel-content-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}
.travel-left-panel {
    flex: 1;
    max-width: 50%;
}
.travel-right-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}
.travel-pricing-label {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 8px;
    margin-right: 5px;
}
.travel-price-display {
    background: #FEA05A;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 15px;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}
.travel-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}
.travel-nav-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}
.travel-prev-button {
    left: 20px;
}
.travel-next-button {
    right: 20px;
}
.travel-nav-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-top: 2px solid white;
    border-right: 2px solid white;
}
.travel-prev-button::before {
    transform: translate(-30%, -50%) rotate(-135deg);
}
.travel-next-button::before {
    transform: translate(-70%, -50%) rotate(45deg);
}
.travel-slide-item:nth-child(1) {
    background-image: url('amazon-andes.jpg');
}
.travel-slide-item:nth-child(2) {
    background-image: url('iceland-spring.jpg');
}
.travel-slide-item:nth-child(3) {
    background-image: url('monk-blanc.jpg');
}
.travel-slide-item:nth-child(4) {
    background-image: url('norway-beauty.jpg');
}
.travel-slide-item:nth-child(5) {
    background-image: url('sweden-fun.jpg');
}
.cs-header {
    color: white;
    font-size: 3em;
    margin-bottom: 30px;
}
.cs-p {
    font-size: 26px;
}
.cs-slider-container {
    width: 300px;
    height: 450px;
    perspective: 1000px;
    position: relative;
}
.cs-slider {
    position: relative;
    width: 100%;
    height: 100%;
}
.cs-card {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease, opacity 0.5s ease;
    cursor: pointer;
    opacity: 0;
    z-index: 0;
    transform-origin: center center;
}
.cs-card-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: white;
    display: none;
}
.cs-card h2 {
    color: #FEA05A;
    margin-bottom: 10px;
}
.cs-card p {
    font-size: 14px;
}
.cs-card a {
    display: inline-block;
    margin-top: 10px;
    color: #FEA05A;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px solid orange;
}
.cs-center {
    transform: scale(1.1);
    opacity: 1;
    z-index: 3;
}
.cs-center .cs-card-content {
    display: block;
}
.cs-left {
    transform: translateX(-80%) scale(0.9) rotateY(20deg);
    opacity: 0.7;
    z-index: 2;
}
.cs-right {
    transform: translateX(80%) scale(0.9) rotateY(-20deg);
    opacity: 0.7;
    z-index: 2;
}
.cs-hidden {
    opacity: 0;
    transform: scale(0.7);
    z-index: 1;
    pointer-events: none;
}
.body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}