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

        :root {
            --brand-blue: #070b10;
            --brand-gold: #c5a059;
            --white: #ffffff;
        }

        html, body { 
            font-family: 'Montserrat', sans-serif; 
            background-color: var(--brand-blue); 
            color: #fff; 
            overflow-x: hidden; 
            width: 100%;
            position: relative;
            -webkit-overflow-scrolling: touch;
        }

        /* --- NAVIGATION --- */
        .navbar { 
            padding: 15px 0; 
            transition: all 0.4s ease; 
            z-index: 1000; 
        }
        
        .navbar.scrolled {
            background: rgba(7, 11, 16, 0.98);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(197, 160, 89, 0.2);
        }

        .navbar-brand { 
            font-size: 1.2rem; 
            letter-spacing: 2px; 
            font-family: 'Playfair Display', serif; 
        }
        
        .navbar-nav .nav-link {
            color: var(--white) !important;
            font-size: 0.75rem;
            letter-spacing: 1.5px;
            font-weight: 400;
            transition: color 0.3s ease;
            padding: 0.5rem 1rem;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--brand-gold) !important;
        }

        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--brand-blue);
                padding: 2rem;
                border-top: 1px solid rgba(197, 160, 89, 0.3);
                margin-top: 15px;
            }
            .navbar-nav .nav-link { 
                font-size: 0.9rem; 
                padding: 12px 0; 
            }
        }

        /* --- MOBILE CTA BAR --- */
        .mobile-cta-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--brand-gold);
            z-index: 999;
            text-align: center;
            padding: 15px;
            text-decoration: none;
            color: var(--brand-blue);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.8rem;
        }

        @media (max-width: 767px) {
            .mobile-cta-bar { display: block; }
            body { padding-bottom: 60px; } 
            .hero-travel { padding-bottom: 100px; }
        }

        /* --- THE TRAVELSHOP: SIGNATURE FOOTER --- */
          #TravelShopFooter {
            background: #04070b;
            color: #ffffff;
            padding: 80px 0 30px 0;
            border-top: 1px solid rgba(197, 160, 89, 0.2);
            font-family: 'Inter', sans-serif;
            width: 100%;
        }

        #TravelShopFooter .footer-brand-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: var(--brand-gold);
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        #TravelShopFooter .footer-desc {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.8;
            max-width: 100%; /* Changed from 350px to 100% for mobile safety */
            font-size: 0.95rem;
        }

        #TravelShopFooter h5.widget-title {
            font-family: 'Playfair Display', serif;
            color: #fff;
            font-size: 1.25rem;
            margin-bottom: 25px;
            position: relative;
        }

        #TravelShopFooter h5.widget-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 30px;
            height: 1px;
            background: var(--brand-gold);
        }

        #TravelShopFooter .footer-links {
            list-style: none;
            padding: 0;
        }

        #TravelShopFooter .footer-links li {
            margin-bottom: 12px;
        }

        #TravelShopFooter .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        #TravelShopFooter .footer-links a:hover {
            color: var(--brand-gold);
            padding-left: 8px;
        }

        #TravelShopFooter .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        #TravelShopFooter .social-btn {
            text-decoration: none;
            width: 40px;
            height: 40px;
            border: 1px solid rgba(197, 160, 89, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-gold);
            transition: 0.4s;
        }

        #TravelShopFooter .social-btn:hover {
            background: var(--brand-gold);
            color: var(--brand-blue);
            transform: translateY(-5px);
        }

        #TravelShopFooter .newsletter-input {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(197, 160, 89, 0.2);
            color: #fff;
            padding: 12px 15px;
            border-radius: 0;
            width: 100%; /* Now safe because of box-sizing: border-box */
            margin-bottom: 10px;
        }

        #TravelShopFooter .footer-bottom {
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        #TravelShopFooter .copyright-text {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.4);
            letter-spacing: 1px;
        }
        
        
        
        
        /* --- HERO SECTION --- */
        .hero-travel {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: 100px 0 60px;
        }

        .hero-bg-video {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: 1;
        }
        .hero-bg-video iframe {
            width: 100vw; height: 56.25vw; min-height: 100vh; min-width: 177.77vh; 
            position: absolute; top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }
        .hero-bg-video::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(to bottom, rgba(7,11,16,0.8), rgba(7,11,16,0.4) 50%, rgba(7,11,16,0.9));
            z-index: 2;
        }

        .hero-content { position: relative; z-index: 10; }

        .location-tag {
            font-size: 0.6rem; letter-spacing: 4px; color: var(--brand-gold);
            text-transform: uppercase; margin-bottom: 15px;
            border-left: 2px solid var(--brand-gold); padding-left: 12px;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 10vw, 5rem);
            line-height: 1.1; font-weight: 700; margin-bottom: 20px;
        }
        .hero-title span {
            font-style: italic; font-weight: 400; display: block;
            font-size: 0.45em; color: var(--brand-gold); margin-top: 8px;
        }

  .travel-search {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    width: 100%;
    max-width: 850px;
    margin-top: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.search-group {
    flex: 1;
    padding: 15px 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.search-group label {
    display: block;
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--brand-gold);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.search-group select {
    background: transparent;
    border: none;
    width: 100%;
    color: #fff;
    font-size: 0.85rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
}

.search-group select option {
    background: #070b10;
    color: #fff;
}

.search-group::after {
    content: '▼';
    font-size: 0.5rem;
    color: var(--brand-gold);
    position: absolute;
    right: 20px;
    bottom: 22px;
    pointer-events: none;
}

.btn-search {
    background: var(--brand-gold);
    color: var(--brand-blue);
    border: none;
    padding: 15px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    cursor: pointer;
}

.btn-search:hover {
    background: #fff;
}

@media (max-width: 767px) {
    .travel-search { flex-direction: column; background: rgba(7, 11, 16, 0.9); }
    .search-group { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .search-group::after { bottom: 25px; }
}

        /* --- FLOATING CARD --- */
.dest-card-float {
    background: rgba(7, 11, 16, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 15px;
    width: 100%;
    max-width: 280px;
    position: relative;
    z-index: 15;
    margin-top: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    /* FIX 1: Prevent any child element from leaking outside the card borders */
    overflow: hidden; 
}

@media (min-width: 992px) {
    .dest-card-float { position: absolute; right: 5%; bottom: 10%; margin-top: 0; }
}

@media (max-width: 991px) {
    .dest-card-float { max-width: 100%; }
    .hero-travel { height: auto; }
}

/* --- CAROUSEL ITEMS --- */
.carousel-item-custom {
    position: absolute; 
    top: 0; 
    left: 0;
    opacity: 0; 
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s;
    pointer-events: none; 
    width: 100%;
}

.carousel-item-custom.active { 
    position: relative; 
    opacity: 1; 
    visibility: visible; 
    pointer-events: auto; 
}

/* --- IMAGE FIXES --- */
.dest-card-float img { 
    width: 100%; 
    height: 160px; 
    object-fit: cover; 
    margin-bottom: 12px; 
    display: block; 
}

.dest-card-float h3, 
.dest-card-float p {
    margin: 0;
    white-space: normal; 
}

        @media (min-width: 992px) {
            .dest-card-float { position: absolute; right: 5%; bottom: 10%; margin-top: 0; }
        }

        @media (max-width: 991px) {
            .dest-card-float { max-width: 100%; }
            .hero-travel { height: auto; }
        }

        .carousel-item-custom {
            position: absolute; opacity: 0; transition: opacity 1s ease;
            pointer-events: none; width: 100%;
        }
        .carousel-item-custom.active { position: relative; opacity: 1; pointer-events: auto; }
        .dest-card-float img { width: 100%; height: 160px; object-fit: cover; margin-bottom: 12px; }

        .carousel-progress {
            position: absolute; bottom: 0; left: 0;
            height: 2px; background: var(--brand-gold); width: 0%;
        }
        .carousel-progress.running { animation: progressLoop 4s linear infinite; }

        @keyframes progressLoop { from { width: 0%; } to { width: 100%; } }

        .social-sidebar {
            position: absolute; left: 20px; bottom: 40px;
            z-index: 20; display: flex; flex-direction: column; gap: 20px;
        }
        @media (max-width: 767px) { .social-sidebar { display: none; } }
        
/* --- OUR OFFERS SECTION STYLES --- */
#ouroffers {
    background-color: var(--brand-blue);
    border-top: 1px solid rgba(197, 160, 89, 0.1);
}

#ouroffers .service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.15);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

#ouroffers .service-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-gold);
    background: rgba(197, 160, 89, 0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

#ouroffers .img-container {
    height: 240px;
    overflow: hidden;
    position: relative;
}

#ouroffers .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%);
    transition: transform 0.6s ease, filter 0.6s ease;
}

#ouroffers .service-card:hover .img-container img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

#ouroffers .card-content {
    padding: 25px;
}

#ouroffers .card-title {
    font-family: 'Playfair Display', serif;
    color: var(--brand-gold);
    font-size: 1.3rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

#ouroffers .card-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-weight: 300;
}

/* Subtle border animation on hover */
#ouroffers .service-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: var(--brand-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

#ouroffers .service-card:hover::after {
    transform: scaleX(1);
}

/* --- SIGNATURE EXPERIENCES SECTION --- */
#SignatureExperiences {
    background: var(--brand-blue);
    color: white;
}

#SignatureExperiences .section-tag {
    color: var(--brand-gold);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 15px;
}

#SignatureExperiences .experience-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px; /* Slightly softer corners */
    cursor: pointer;
    background: #000;
    border: 1px solid rgba(197, 160, 89, 0.1);
}

#SignatureExperiences .experience-card img {
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

#SignatureExperiences .experience-card:hover img {
    transform: scale(1.1);
    opacity: 0.5;
}

#SignatureExperiences .experience-card .overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    background: linear-gradient(to top, rgba(7, 11, 16, 0.9) 0%, transparent 70%);
    transition: background 0.4s ease;
}

#SignatureExperiences .experience-card:hover .overlay {
    background: linear-gradient(to top, rgba(197, 160, 89, 0.4) 0%, transparent 90%);
}

#SignatureExperiences .brand-font {
    font-family: 'Playfair Display', serif;
}

/* Concierge Card - Glassmorphism Effect */
#SignatureExperiences .concierge-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 160, 89, 0.3) !important;
    border-left: 5px solid var(--brand-gold) !important;
    border-radius: 0;
}

#SignatureExperiences .btn-gold {
    background: var(--brand-gold);
    color: var(--brand-blue);
    border: none;
    font-weight: 700;
    padding: 16px 30px;
    border-radius: 0;
    transition: 0.4s;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

#SignatureExperiences .btn-gold:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
}

#SignatureExperiences .field-preview {
    transition: 0.4s;
    filter: brightness(0.8);
}

#SignatureExperiences .field-preview:hover {
    filter: brightness(1.1);
    transform: translateY(-5px);
}
        
/* --- LUXURY RAIL SECTION --- */
#LuxuryRail {
    background: var(--brand-blue);
    padding: 80px 0;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    position: relative;
    overflow: hidden;
}

#LuxuryRail .rail-list {
    border-left: 1px solid rgba(197, 160, 89, 0.3);
    padding-left: 30px;
}

#LuxuryRail .rail-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

#LuxuryRail .rail-item:hover {
    padding-left: 15px;
    border-bottom-color: var(--brand-gold);
}

#LuxuryRail .rail-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 2px;
    transition: 0.3s;
}

#LuxuryRail .rail-item:hover .rail-name {
    color: var(--brand-gold);
}

#LuxuryRail .rail-meta {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
}

#LuxuryRail .rail-preview-box {
    position: relative;
    height: 450px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

#LuxuryRail .rail-preview-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}

#LuxuryRail .glass-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(7, 11, 16, 0.7);
    backdrop-filter: blur(10px);
    padding: 20px;
    border: 1px solid rgba(197, 160, 89, 0.3);
}  


/* --- EXPLORE BY REGION SECTION --- */
#ExploreByRegion {
    background-color: var(--brand-blue);
    padding: 60px 0;
    color: #ffffff;
    overflow: hidden;
}

@media (min-width: 992px) {
    #ExploreByRegion { padding: 100px 0; }
}

#ExploreByRegion .section-tag { 
    color: var(--brand-gold); 
    font-weight: 700; 
    font-size: 0.85rem; 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    display: block; 
    margin-bottom: 12px; 
}

/* Nav Wrapper: Prevents squishing on small screens */
.region-nav-wrapper {
    gap: 5px;
}

@media (max-width: 576px) {
    .region-nav-wrapper {
        justify-content: flex-start !important;
        overflow-x: auto;
        white-space: nowrap;
        display: flex !important;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 15px;
        scrollbar-width: none; /* Hide scrollbar for Chrome/Safari/Firefox */
    }
    .region-nav-wrapper::-webkit-scrollbar { display: none; }
}

#ExploreByRegion .region-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    padding: 10px 20px;
    transition: 0.4s ease;
    cursor: pointer;
    position: relative;
}

#ExploreByRegion .region-btn.active, 
#ExploreByRegion .region-btn:hover {
    color: var(--brand-gold);
}

#ExploreByRegion .region-btn::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: var(--brand-gold);
    transition: width .3s;
    margin: 5px auto 0;
}

#ExploreByRegion .region-btn.active::after {
    width: 100%;
}

/* Experience Card: Luxury Sharp Edges & Consistent Height */
#ExploreByRegion .experience-card { 
    position: relative; 
    overflow: hidden; 
    aspect-ratio: 3 / 4; /* Vital for responsive grid alignment */
    background: #000; 
    border: 1px solid rgba(197, 160, 89, 0.2);
}

#ExploreByRegion .experience-card img { 
    transition: 1.2s cubic-bezier(0.25, 1, 0.5, 1); 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    opacity: 0.6;
}

#ExploreByRegion .experience-card:hover img { 
    transform: scale(1.1); 
    opacity: 0.4; 
}

#ExploreByRegion .experience-card .overlay {
    position: absolute; 
    inset: 0; 
    display: flex; 
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px; 
    background: linear-gradient(to top, rgba(7, 11, 16, 1) 0%, transparent 70%);
}

#ExploreByRegion .experience-card .overlay h6 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 5px;
    line-height: 1.2;
}

#ExploreByRegion .experience-card .card-line {
    width: 30px;
    height: 2px;
    background: var(--brand-gold);
    transition: 0.4s ease;
    margin-bottom: 12px;
}

#ExploreByRegion .experience-card:hover .card-line {
    width: 60px;
}

#regionContentGrid {
    transition: all 0.5s ease;
}

@media (max-width: 767px) {
    #ExploreByRegion .experience-card .overlay { padding: 15px; }
    #ExploreByRegion .experience-card .overlay h6 { font-size: 1.1rem; }
    #ExploreByRegion .experience-card .card-desc { font-size: 0.8rem; }
}

/* --- ITINERARY SECTION: THE TRAVEL SHOP BRANDING --- */
#Itineraries {
    background: var(--brand-blue); /* Assuming this is your deep navy/black */
    padding: 100px 0;
    color: #ffffff;
}

#Itineraries .section-tag {
    color: var(--brand-gold);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

#Itineraries .itinerary-card {
    background: #0b121a; /* Slightly lighter than the background for depth */
    border: 1px solid rgba(197, 160, 89, 0.2); /* Muted Gold Border */
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

#Itineraries .itinerary-card:hover {
    transform: translateY(-12px);
    border-color: var(--brand-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

#Itineraries .itinerary-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

#Itineraries .itinerary-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: 1s ease;
}

#Itineraries .itinerary-card:hover .itinerary-image-wrapper img {
    transform: scale(1.1);
    opacity: 1;
}

#Itineraries .duration-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--brand-gold);
    padding: 8px 15px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--brand-blue);
    z-index: 2;
}

#Itineraries .itinerary-content {
    padding: 30px;
    background: linear-gradient(to bottom, #0b121a, #070b10);
}

#Itineraries .itinerary-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

#Itineraries .itinerary-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    padding-top: 20px;
}

#Itineraries .itinerary-features li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

#Itineraries .itinerary-features li::before {
    content: '◈'; /* More elegant icon */
    margin-right: 12px;
    color: var(--brand-gold);
    font-size: 0.8rem;
}

#Itineraries .btn-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-gold);
    text-decoration: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

#Itineraries .btn-details:hover {
    letter-spacing: 3px;
    color: #ffffff;
}

/* Custom Gold Button for "View More" */
#Itineraries .btn-gold-outline {
    border: 1px solid var(--brand-gold);
    color: var(--brand-gold);
    padding: 12px 30px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 2px;
    transition: 0.4s;
    background: transparent;
}

#Itineraries .btn-gold-outline:hover {
    background: var(--brand-gold);
    color: var(--brand-blue);
}

@media (max-width: 768px) {
    #Itineraries .itinerary-image-wrapper { height: 220px; }
    #Itineraries .itinerary-title { font-size: 1.3rem; }
}

/* --- ABOUT & WHY US: DARK LUXURY THEME --- */
#AboutTravelShop {
    padding: 120px 0;
    background: var(--brand-blue); /* Your deep navy/black */
    color: #ffffff;
    overflow: hidden;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

#AboutTravelShop .image-container {
    position: relative;
    padding: 15px;
    z-index: 1;
}

#AboutTravelShop .image-container img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    filter: brightness(0.9);
    transition: filter 0.5s ease;
}

#AboutTravelShop .image-container:hover img {
    filter: brightness(1.1);
}

/* The Gold Offset Border */
#AboutTravelShop .image-container::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 80%;
    height: 80%;
    border: 1px solid var(--brand-gold);
    z-index: -1;
}

#AboutTravelShop .experience-tag {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--brand-gold);
    color: var(--brand-blue);
    padding: 35px 25px;
    text-align: center;
    min-width: 200px;
    box-shadow: 15px 15px 40px rgba(0,0,0,0.5);
}

#AboutTravelShop .experience-tag h2 {
    font-size: 3.5rem;
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 0.9;
}

#AboutTravelShop .experience-tag p {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: 700;
}

#AboutTravelShop .content-box {
    padding-left: 80px;
}

#AboutTravelShop .brand-font {
    font-family: 'Playfair Display', serif;
}

#AboutTravelShop .text-gold {
    color: var(--brand-gold) !important;
}

#AboutTravelShop .feature-grid {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    margin-top: 40px;
}

#AboutTravelShop .why-box {
    padding: 20px;
    transition: background 0.3s ease;
}

#AboutTravelShop .why-box:hover {
    background: rgba(197, 160, 89, 0.05);
}

#AboutTravelShop .why-icon {
    font-size: 1.2rem;
    color: var(--brand-gold);
    margin-bottom: 15px;
    display: block;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    #AboutTravelShop .content-box { padding-left: 15px; margin-top: 80px; }
    #AboutTravelShop .image-container img { height: 450px; }
    #AboutTravelShop .experience-tag { right: 10px; padding: 25px 15px; min-width: 160px; }
}


#TravelShopReviews {
    background: var(--brand-blue);
    padding: 80px 0;
    overflow: hidden;
}

#TravelShopReviews .section-divider {
    width: 60px; height: 2px; background: var(--brand-gold); margin: 20px auto;
}

#TravelShopReviews .testimonial-carousel {
    display: flex;
    gap: 20px;
    padding: 20px 40px; /* Side padding allows first card to be centered */
    overflow-x: auto;
    cursor: grab;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

#TravelShopReviews .testimonial-carousel::-webkit-scrollbar { display: none; }

#TravelShopReviews .video-card {
    flex: 0 0 320px; /* Fixed width for better control */
    height: 580px;
    background: #000;
    position: relative;
    border: 1px solid rgba(197, 160, 89, 0.2);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

#TravelShopReviews .video-card:hover {
    border-color: var(--brand-gold);
}

/* Fix Instagram aspect ratio */
#TravelShopReviews .insta-embed-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Target the injected iframe */
#TravelShopReviews .insta-embed-container iframe {
    height: 100% !important;
    width: 100% !important;
    min-height: 100% !important;
    margin: 0 !important;
}

#TravelShopReviews .video-footer {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 40px 20px 20px;
    background: linear-gradient(transparent, #070b10 85%);
    z-index: 5;
    pointer-events: none; /* CRITICAL: Allows user to click "Play" through the text */
}

/* Tablet (iPad) */
@media (max-width: 991px) {
    #TravelShopReviews .video-card { flex: 0 0 300px; height: 520px; }
}

/* Mobile (Phone) */
@media (max-width: 576px) {
    #TravelShopReviews { padding: 50px 0; }
    #TravelShopReviews .testimonial-carousel { padding: 10px 20px; gap: 15px; }
    #TravelShopReviews .video-card { flex: 0 0 280px; height: 480px; }
}