/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
    --primary-color: #F25F4C;
    --primary-hover: #D84E3C;
    --text-dark: #0F172A;
    --text-gray: #64748B;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--text-dark);
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.section-title p {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Header */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 24px 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    padding: 16px 0;
    box-shadow: var(--shadow-sm);
}

header.scrolled .nav-link {
    color: var(--text-dark);
}

header.scrolled .logo {
    color: var(--primary-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('images/mb3.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-buttons {
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
    display: flex;
    gap: 16px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features/Partners - "Why We're Your Perfect Travel Partner" */
.features {
    background-color: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.feature-item {
    padding: 24px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background-color: #FFF1F0;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.5rem;
}

.feature-item h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.feature-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Banner Section "Unforgettable Journeys" */
.banner-section {
    position: relative;
    padding: 120px 0;
    /* Background fallback removed or kept as fallback behind video if needed */
    background: #000;
    color: var(--white);
    text-align: left;
    overflow: hidden;
}

.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.banner-section .container {
    position: relative;
    z-index: 2;
}

.banner-content {
    max-width: 600px;
}

.banner-content h2 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 24px;
}

.banner-content p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.play-btn:hover {
    transform: scale(1.1);
}

/* Trending Activities */
.trending {
    background: var(--bg-light);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.activity-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.activity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.activity-card:hover img {
    transform: scale(1.1);
}

.activity-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
}

.activity-info h4 {
    color: var(--white);
    font-size: 1.1rem;
}

/* Popular Tours */
.tours {
    background: var(--white);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.tour-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid #eee;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.tour-image {
    position: relative;
    height: 220px;
}

.tour-image img {
    width: 100%;
    height: 100%;
}

.like-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    cursor: pointer;
}

.tour-details {
    padding: 24px;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.tour-details h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.tour-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.tour-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.price span {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.rating i {
    color: #FBBF24;
}

/* Top Places - Slider Style */
.places {
    background: var(--bg-light);
}

.places-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.places-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 0;
}

.places-slider-container .place-card {
    flex: 0 0 33.333%;
    /* 3 Visible cards by default */
    max-width: 33.333%;
    padding: 0 12px;
    box-sizing: border-box;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    height: 400px;
    /* Specific height for uniform look */
}

.places-slider-container .place-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.places-slider-container .place-card:hover img {
    transform: scale(1.05);
}

.place-content {
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    margin-bottom: 0;
    padding: 24px;
    color: var(--white);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    border-bottom-left-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
}

.place-content h3 {
    color: var(--white);
    font-size: 1.5rem;
}

/* Adjust Arrow Positions for Place Slider */
.places-slider-container .slider-arrow {
    top: 50%;
    transform: translateY(-50%);
}

.places-slider-container .slider-arrow.prev {
    left: -10px;
}

.places-slider-container .slider-arrow.next {
    right: -10px;
}

/* Responsive Places Slider */
@media (max-width: 1024px) {
    .places-slider-container .place-card {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 600px) {
    .places-slider-container .place-card {
        flex: 0 0 100%;
        max-width: 100%;
        height: 300px;
    }
}

/* Testimonials */
.testimonials {
    background: var(--white);
}

.testimonial-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 0;
}

.testimonial-card {
    flex: 0 0 33.333%;
    /* Show 3 cards on desktop */
    max-width: 33.333%;
    padding: 0 16px;
    /* Gutter manually handled */
    box-sizing: border-box;
}

.testimonial-content-inner {
    padding: 32px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    background: #f8fafc;
    height: 100%;
}

/* We need to restructure the card inner slightly if we just use the card as a wrapper */


/* Let's redefine card to be just the spacing wrapper, and I will strictly use padding for gaps */

.testimonial-card {
    /* override previous styles */
    background: transparent;
    padding: 15px;
    border-radius: 0;
}

/* Since I didn't verify inner structure, I probably need to add a wrapper via JS or target children? 
   No, let's just make the .testimonial-card the visible block but use margin. 
   Ah, scroll/track math is easier if card width is exact %. 
   Let's keep flex 33.33% and use internal padding. 
   But the background color was on .testimonial-card. 
   If I keep background on .testimonial-card, the cards will touch unless I use border-right transparent? 
   Let's use a pseudo element or simply style the card to look like a card 
   but use `margin-right` in calculation? No, flex-basis is safer.
   
   Better workaround without changing HTML structure massively:
   Style .testimonial-card as the container.
   But give it `background-clip: content-box;`? No.
   
   Okay, I will change the HTML structure in the slider to wrap content? 
   No, I already wrote the HTML.
   
   Let's just use a high padding on the card and background on the card is problematic.
   
   Wait, I can style the card with background, but then use `gap` in flex container?
   If I use `gap: 32px`, then `flex-basis` logic gets complex (calc(33% - 32px)).
   
   Let's go with:
   .testimonial-slider { gap: 30px; }
   .testimonial-card { flex: 0 0 calc(33.333% - 20px); } 
   This works but navigation logic needs to know the exact step size.
   
   Easiest is:
   track { gap: 0; }
   card { flex: 0 0 33.333%; padding: 0 15px; background: transparent; }
   card-inner (pseudo-like) -> I don't have an inner wrapper.
   
   Okay, I will rely on the fact that I can set background on the card 
   but use `box-shadow` or `border` for separation?
   
   Actually, the best way without inner div is:
   .testimonial-card {
       margin: 0 15px;
       flex: 0 0 calc(33.333% - 30px);
   }
   
   Let's try that.
*/

.testimonial-card {
    flex: 0 0 calc(33.333% - 32px);
    margin: 0 16px;
    padding: 32px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    /* reset other styles if needed */
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    color: var(--primary-color);
}

.slider-arrow:hover {
    background: var(--primary-color);
    color: var(--white);
}

.slider-arrow.prev {
    left: 10px;
}

.slider-arrow.next {
    right: 10px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 10px;
}

.stars {
    color: #FBBF24;
    margin-bottom: 16px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.user-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.user-info span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Articles */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.article-card img {
    width: 100%;
    height: 240px;
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
}

.article-meta {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.article-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

/* Footer */
footer {
    background: var(--white);
    padding: 80px 0 24px;
    border-top: 1px solid #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-gray);
    margin: 24px 0;
    max-width: 300px;
}

.footer-col h4 {
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid #eee;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .places-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .place-card.large {
        grid-column: span 2;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .navbar .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 24px;
        box-shadow: var(--shadow-md);
        text-align: center;
        gap: 20px;
        animation: slideDown 0.3s ease forwards;
        z-index: 101;
        /* Ensure it's above other content */
    }

    .section-padding {
        padding: 50px 0;
    }

    .navbar .nav-menu.active {
        display: flex;
    }

    .nav-link {
        color: var(--text-dark);
        font-size: 1.1rem;
    }

    .nav-link::after {
        background-color: var(--primary-color);
    }

    .mobile-toggle {
        display: block;
        color: var(--white);
    }

    /* Ensure toggle is visible on white background if header is scrolled */
    header.scrolled .mobile-toggle {
        color: var(--text-dark);
    }

    /* When menu is open, ensure header background is solid */
    header.menu-open {
        background-color: var(--text-dark);
        /* Match dark theme or black overlay */
    }

    header.menu-open .logo,
    header.menu-open .mobile-toggle {
        color: var(--white);
    }

    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .banner-content h2 {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        flex: 0 0 calc(100% - 32px);
        /* 1 card on mobile */
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Tour Detail Page Styles */
.breadcrumb {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb i {
    font-size: 0.7rem;
}

.tour-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.tour-title-wrap h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.tour-meta-header {
    display: flex;
    gap: 24px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.tour-actions {
    display: flex;
    gap: 12px;
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.action-btn:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
    height: 400px;
}

.gallery-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
}

.gallery-main img,
.gallery-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.view-photos-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    height: 100%;
}

.gallery-side img {
    border-radius: var(--radius-lg);
}

.tour-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.tour-stats {
    display: flex;
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #eee;
    margin-bottom: 32px;
}

.stat-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.stat-item div {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-size: 0.9rem;
}

.stat-item span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.content-block {
    margin-bottom: 40px;
}

.content-block h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.highlight-list li,
.included-list li,
.excluded-list li,
.benefits-list li {
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.highlight-list i,
.included-list i {
    color: #22c55e;
    margin-top: 4px;
}

.benefits-list i {
    color: #22c55e;
}

.excluded-list i {
    color: var(--primary-color);
}

.inc-exc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-weight: 500;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: var(--text-gray);
}

.accordion-item.active .accordion-body {
    max-height: 150px;
    padding-bottom: 20px;
}

.accordion-item.active .accordion-header {
    color: var(--primary-color);
}

.booking-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid #eee;
    position: sticky;
    top: 100px;
}

.price-header {
    margin-bottom: 24px;
}

.price-header .amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
}

.form-control {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

.btn-block {
    width: 100%;
    margin-bottom: 12px;
    text-align: center;
}

.sidebar-box {
    margin-top: 32px;
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-lg);
}

.sidebar-box h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
}

/* Helper Icons */
.icon-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.icon-btn:hover {
    color: var(--primary-color);
}

@media (max-width: 900px) {
    .tour-layout {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .gallery-side {
        display: none;
    }

    .tour-header {
        flex-direction: column;
        gap: 16px;
    }

    .inc-exc-grid {
        grid-template-columns: 1fr;
    }
}

/* Customer Reviews Styles matching reference */
.review-summary-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    /* Flex row by default */
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
    box-shadow: none;
    transform: none;
}

.review-summary-card:hover {
    transform: none;
    box-shadow: none;
}

.overall-rating {
    flex: 0 0 180px;
    border-right: 1px solid #e0e0e0;
    padding-right: 32px;
    padding-bottom: 0;
    margin-bottom: 0;
    text-align: left;
}

.overall-rating h3,
.rating-breakdown h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
    /* Back to clean font */
    color: #333;
}

.rating-big {
    font-size: 2.8rem;
    font-weight: 700;
    color: #F25F4C;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
    justify-content: flex-start;
}

.rating-big i {
    color: #F25F4C;
    font-size: 1.8rem;
}

.rating-big span {
    font-size: 1.4rem;
    color: #333;
    font-weight: 400;
}

.review-count {
    color: #666;
    font-size: 0.95rem;
    margin-top: 4px;
}

.rating-breakdown {
    flex: 1;
}

.breakdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
    row-gap: 24px;
}

.breakdown-track {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #555;
    font-weight: 400;
}

.breakdown-score {
    color: #333;
    font-weight: 500;
}

.progress-bar {
    height: 6px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar .fill {
    background: #F25F4C;
    height: 100%;
    border-radius: 10px;
    animation: none;
}

.progress-bar .fill::after {
    display: none;
}

/* Review Item Updates */
/* Review Item Updates - Side by Side Layout */
.review-item {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #eee;
    /* Light separator */
    background: transparent;
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.review-item:hover {
    box-shadow: none;
}

/* User Profile Column (Left) */
.review-user-profile {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 0 0 160px;
    /* Fixed width for profile column */
}

.reviewer-avatar img {
    width: 140px;
    /* Large square avatar */
    height: 140px;
    border-radius: 8px;
    /* Slightly rounded corners */
    object-fit: cover;
    margin-bottom: 8px;
    box-shadow: none;
    border: none;
}

.reviewer-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: #1F2937;
    /* Darker text */
    font-family: 'Playfair Display', serif;
    /* Or serif as per image style */
}

.reviewer-info span {
    font-size: 0.95rem;
    color: #4B5563;
    display: block;
    margin-top: 2px;
}

.review-stars {
    color: #E76F51;
    /* Reddish star color */
    font-size: 1rem;
    display: flex;
    gap: 2px;
    margin-top: 4px;
    /* Space above stars */
}

/* Content Column (Right) */
.review-body {
    flex: 1;
}

.review-text {
    color: #374151;
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.review-images {
    display: flex;
    gap: 12px;
}

.review-images img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
}

/* Mobile Responsive Override */
@media (max-width: 768px) {
    .review-item {
        flex-direction: column;
        gap: 20px;
    }

    .review-user-profile {
        width: 100%;
        flex-direction: row;
        gap: 16px;
        align-items: center;
        flex: auto;
    }

    .reviewer-avatar img {
        width: 64px;
        height: 64px;
        margin-bottom: 0px;
    }

    .review-stars {
        margin-top: 2px;
    }

    .review-summary-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

    .overall-rating {
        width: 100%;
        border-right: none;
        border-bottom: none;
        padding-right: 0;
        margin-bottom: 24px;
    }

    .breakdown-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Related Tours Slider */
.related-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.related-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 0;
}

.related-slider-container .tour-card {
    flex: 0 0 33.333%;
    /* 3 Cards on Desktop */
    max-width: 33.333%;
    padding: 0 16px;
    box-sizing: border-box;
    /* Reset margins/shadows that might conflict if reused from grid */
    margin: 0;
}

/* Adjust navigation arrows for related slider */
.related-slider-container .slider-arrow {
    top: 50%;
    transform: translateY(-50%);
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.related-slider-container .slider-arrow.prev {
    left: -10px;
}

.related-slider-container .slider-arrow.next {
    right: -10px;
}

@media (max-width: 1024px) {
    .related-slider-container .tour-card {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 600px) {
    .related-slider-container .tour-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Mega Menu Styles */
/* Ensure the list item is static so the absolute menu positions relative to the header or nav container */
.nav-item-dropdown {
    position: static !important;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
    border-top: 1px solid #f0f0f0;
}

/* Hover state for desktop */
.nav-item-dropdown:hover .mega-menu,
.nav-item-dropdown:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 24px;
    display: grid;
    grid-template-columns: 250px 1fr 300px;
    gap: 40px;
}

/* Col 1: Links */
.links-col {
    border-right: 1px solid #eee;
    padding-right: 20px;
}

.menu-heading-red {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}

.menu-heading-red i {
    font-size: 0.9em;
}

.mega-links li {
    margin-bottom: 15px;
}

.mega-links a {
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    padding: 5px 0;
}

.mega-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.mega-links a i {
    font-size: 0.8em;
    color: #ccc;
}

.view-all-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

/* Col 2: Images */
.menu-heading {
    font-size: 1rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.dest-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dest-img-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.dest-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.dest-item:hover .dest-img-wrap img {
    transform: scale(1.1);
}

.dest-item span {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1.05rem;
}

/* Col 3: Banner */
.promo-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    min-height: 250px;
}

.promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 30px;
    color: var(--white);
}

.promo-overlay h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.promo-overlay p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.promo-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.promo-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .mega-menu {
        display: none;
        position: static;
        box-shadow: none;
        border-top: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
    }

    .nav-item-dropdown.active .mega-menu {
        display: block;
    }

    .nav-item-dropdown.active>.nav-link {
        color: var(--primary-color) !important;
        background: rgba(0, 0, 0, 0.03);
    }

    .nav-item-dropdown.active>.nav-link i {
        transform: rotate(180deg);
        transition: transform 0.3s ease;
    }

    .mega-menu-content {
        display: flex;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        background: #f9f9f9;
    }

    .mega-menu-content>.mega-col {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
    }

    .mega-menu-content>.mega-col:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .dest-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}

/* Pages Dropdown */
.nav-item-dropdown {
    position: relative;
}

.simple-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    list-style: none;
    z-index: 1000;
}

.nav-item-dropdown:hover .simple-dropdown {
    display: block;
}

.simple-dropdown li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    font-weight: 500;
    transition: 0.3s;
}

.simple-dropdown li a:hover {
    padding-left: 25px;
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .simple-dropdown {
        display: none;
        position: static;
        box-shadow: none;
        padding: 0 20px;
        background: #f9f9f9;
        width: 100%;
    }

    .nav-item-dropdown.active .simple-dropdown {
        display: block;
    }

    .simple-dropdown li a {
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }

    .simple-dropdown li:last-child a {
        border-bottom: none;
    }
}

/* Logo Image Styling */
.logo img {
    height: 48px;
    width: auto;
}