/* ============================================
   CSS VARIABLES - NATURAL EARTH TONES
   ============================================ */
:root {
    --primary: #b87c4b;
    /* Warm earthy brown instead of bright red */
    --primary-dark: #9a6a3f;
    /* Darker earth tone */
    --primary-light: #d4a574;
    /* Lighter warm tone */
    --secondary: #3d3d3d;
    /* Soft dark gray instead of harsh #1e2b2f */
    --gold: #c9a86c;
    /* Softer gold */
    --cream: #f7f2eb;
    /* Warmer cream */
    --white: #fcfaf7;
    /* Warm white */
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 30px 80px rgba(0, 0, 0, 0.08);
    --radius: 30px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --border-color: rgba(0, 0, 0, 0.05);
    --text-muted: #7a7a7a;
    /* Softer muted */
    --bg-body: #f5f0ea;
    /* Natural warm background */
    --topbar-bg: #2d2d2d;
    /* Soft dark */
    --topbar-text: rgba(255, 255, 255, 0.85);
    --text-color: #3d3d3d;
    --card-bg: #f8f4ef;
}

/* Dark Mode Variables - Softer Dark */
/* Dark Mode Variables - More Natural */
[data-theme="dark"] {
    --cream: #1a1a1a;
    --white: #242424;
    --secondary: #d4d4d4;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 30px 80px rgba(0, 0, 0, 0.6);
    --bg-body: #1a1a1a;
    --text-color: #d4d4d4;
    --border-color: rgba(255, 255, 255, 0.06);
    --text-muted: #9a9a9a;
    --topbar-bg: #141414;
    --topbar-text: #d4d4d4;

    /* Card background - warm dark instead of pure black */
    --card-bg: #2a2826;
    /* Warm dark brown-black */

    /* Softer primary in dark mode */
    --primary: #c4956a;
    /* Lighter, warmer brown */
    --primary-dark: #a87d58;
    --primary-light: #dbb492;
    --gold: #c9a86c;
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-body);
    color: var(--secondary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.5s ease, color 0.5s ease;
    padding-top: 80px;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   BUTTONS - SOFTER
   ============================================ */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 1rem 2.8rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(184, 124, 75, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: all 0.6s;
}

.btn-primary:hover::after {
    transform: rotate(45deg) translateX(100%);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(184, 124, 75, 0.35);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 500;
    border: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.85rem;
}

.btn-secondary:hover {
    background: rgba(184, 124, 75, 0.08);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 124, 75, 0.2);
}

.btn-secondary-white {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 1rem 2.8rem;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    cursor: pointer;
}

.btn-secondary-white:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn-google {
    display: inline-block;
    background: #4285f4;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.25);
}

.btn-google:hover {
    background: #3367d6;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(66, 133, 244, 0.35);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.section-title span {
    color: var(--primary);
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
    font-weight: 300;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.tour-btn-group {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

/* ============================================
   TOP BAR (FIXED)
   ============================================ */
.top-bar {
    background: var(--topbar-bg);
    color: var(--topbar-text);
    padding: 0.4rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    font-size: 0.8rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    height: 40px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-left: auto;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.dark-toggle-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.7rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-family: 'Inter', sans-serif;
}

.dark-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

[data-theme="dark"] .dark-toggle-btn {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    color: #d4d4d4;
}

/* Language Selector */
.lang-select-wrapper {
    position: relative;
    display: inline-block;
}

.lang-select-wrapper select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 0.25rem 1.8rem 0.25rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    cursor: pointer;
    outline: none;
    appearance: none;
    font-family: 'Inter', sans-serif;
    min-width: 100px;
}

.lang-select-wrapper select option {
    background: var(--topbar-bg);
    color: #fff;
}

.lang-select-wrapper::after {
    content: '\f0d7';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.6rem;
    pointer-events: none;
}

/* Currency Selector */
.currency-select-wrapper {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    font-size: 0.7rem;
}

.currency-select-wrapper select {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.7rem;
    cursor: pointer;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.currency-select-wrapper select option {
    background: var(--topbar-bg);
    color: #fff;
}

.currency-select-wrapper i {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   HEADER / NAV (FLOATING PILL)
   ============================================ */
.header {
    position: fixed;
    top: 45px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.5rem 0;
    display: flex;
    justify-content: center;
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    width: calc(100% - 48px);
    margin: 0 auto;
    padding: 0.35rem 1.5rem 0.35rem 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    transition: var(--transition);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .navbar {
    background: rgba(13, 17, 23, 0.85);
    border-color: rgba(255, 255, 255, 0.08);
}

.header.scrolled .navbar {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.25);
}

[data-theme="dark"] .header.scrolled .navbar {
    background: rgba(13, 17, 23, 0.35);
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 65px;
    border-radius: 12px;
    /* bigger than the navbar itself */
    width: auto;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
    /* purely visual, doesn't block clicks */
}

.logo-text {
    margin-left: 75px;
    /* reserves space so text doesn't sit under the logo */
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
}

.logo-text span {
    color: var(--primary);
}

[data-theme="dark"] .logo-text {
    color: #d4d4d4;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary);
    transition: var(--transition);
    position: relative;
    text-decoration: none;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

[data-theme="dark"] .nav-menu a {
    color: #d4d4d4;
}

.btn-nav {
    background: var(--primary);
    color: #fff;
    padding: 0.5rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(184, 124, 75, 0.25);
    white-space: nowrap;
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 124, 75, 0.35);
}

.btn-nav-mobile {
    display: none;
    text-align: center;
    background: var(--primary);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--secondary);
    border-radius: 3px;
    transition: var(--transition);
}

[data-theme="dark"] .hamburger span {
    background: #d4d4d4;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================
   HERO
   ============================================ */
.hero-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: var(--secondary);
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-video-bg .overlay-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 6rem 2rem;
    color: #fff;
}

.hero-content {
    max-width: 720px;
}

.hero-content .badge {
    display: inline-block;
    background: rgba(184, 124, 75, 0.85);
    color: #fff;
    font-weight: 500;
    font-size: 0.75rem;
    padding: 0.4rem 1.4rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-content h1 .highlight {
    color: #e8c9a0;
    position: relative;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 550px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.8;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.hero-content .btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stats .stat h3 {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
}

.hero-stats .stat p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin: 0;
    font-weight: 300;
}

/* ============================================
   TOURS
   ============================================ */
.tours {
    padding: 6rem 2rem;
    background: var(--bg-body);
    position: relative;
    transition: background 0.5s ease;
}

.tours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.tour-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 2rem 1.8rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tour-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    opacity: 0;
    transition: var(--transition);
}

.tour-card:hover::before {
    opacity: 1;
}

.tour-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.tour-placeholder {
    width: 100%;
    height: 200px;
    border-radius: 20px;
    margin-bottom: 1.2rem;
    overflow: hidden;
}

.tour-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.tour-card:hover .tour-placeholder img {
    transform: scale(1.05);
}

.tour-card .price {
    font-size: 1.6rem;
    font-weight: 600;
    /* Reduced from 800 */
    color: var(--primary);
    opacity: 0.7;
    /* Changed from primary color to secondary */
    font-family: 'Inter', sans-serif;
    /* Changed from Playfair Display */
    letter-spacing: -0.5px;
}

.tour-card .price small {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* In dark mode, price should be lighter */
[data-theme="dark"] .tour-card .price {
    color: #d4d4d4;
}

.tour-tag {
    background: rgba(184, 124, 75, 0.12);
    /* Very subtle background */
    color: var(--primary-dark);
    /* Darker but not too bold */
    padding: 0.2rem 1rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    border: 1px solid rgba(184, 124, 75, 0.08);
    /* Very subtle border */
}

/* Dark mode tag */
[data-theme="dark"] .tour-tag {
    background: rgba(196, 149, 106, 0.15);
    color: #dbb492;
    border-color: rgba(196, 149, 106, 0.1);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-section {
    padding: 6rem 2rem;
    background: var(--white);
    transition: background 0.5s ease;
}

.gallery-carousel {
    position: relative;
    margin-top: 2rem;
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--secondary);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-arrow:hover {
    background: var(--primary);
    color: #fff;
}

.gallery-arrow.prev {
    left: -8px;
}

.gallery-arrow.next {
    right: -8px;
}

.gallery-item {
    flex: 0 0 calc(25% - 1.125rem);
    scroll-snap-align: start;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

@media (max-width: 1024px) {
    .gallery-item {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 600px) {
    .gallery-item {
        flex: 0 0 85%;
    }

    .gallery-arrow.prev {
        left: 4px;
    }

    .gallery-arrow.next {
        right: 4px;
    }
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* ============================================
   FORM
   ============================================ */
.form-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--white), var(--bg-body));
    border-radius: 60px;
    margin: 3rem 0;
    box-shadow: var(--shadow);
    scroll-margin-top: 100px;
    position: relative;
    overflow: hidden;
    transition: background 0.5s ease;
}

.form-section::before {
    content: '✧';
    position: absolute;
    top: -50px;
    right: -50px;
    font-size: 20rem;
    opacity: 0.03;
    color: var(--primary);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
    max-width: 800px;
    margin: 0 auto;
}

.form-grid .full-width {
    grid-column: 1 / -1;
}

.form-grid label {
    font-weight: 600;
    color: var(--secondary);
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    font-size: 1rem;
    background: var(--bg-body);
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    color: var(--secondary);
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(184, 124, 75, 0.08);
}

.form-grid textarea {
    min-height: 120px;
    resize: vertical;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    background: linear-gradient(180deg, var(--bg-body), var(--white));
    padding: 6rem 2rem;
    border-radius: 60px 60px 0 0;
    margin-top: 2rem;
    transition: background 0.5s ease;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testi-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
}

.testi-card::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.1;
    position: absolute;
    top: 0.5rem;
    right: 1.5rem;
}

.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.testi-card .stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

.testi-card p {
    font-style: italic;
    color: var(--secondary);
    margin: 0.8rem 0;
    line-height: 1.7;
}

.testi-card .client {
    font-weight: 700;
    color: var(--secondary);
    font-size: 0.95rem;
}

.testi-card .source {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.google-reviews-container {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    margin: 2.5rem 0;
    border: 1px solid var(--border-color);
    transition: background 0.5s ease;
}

/* ============================================
   WHATSAPP FIXED
   ============================================ */
.whatsapp-fixed {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.whatsapp-fixed .whatsapp-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
    border: none;
    cursor: pointer;
}

.whatsapp-fixed .whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 50px rgba(37, 211, 102, 0.5);
}

.whatsapp-fixed .whatsapp-label {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 500;
    white-space: nowrap;
}

/* Gmail - Red */
.social-links a.gmail {
    color: #EA4335;
    background: #ffffff;
}

.social-links a.gmail:hover {
    background: #EA4335;
    color: #ffffff;
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}


/* ===== ABOUT SECTION STYLES ===== */
.about-agency {
    padding: 5rem 0;
    background: var(--bg-body);
    transition: background 0.5s ease;
}

[data-theme="dark"] .about-agency {
    background: var(--cream);
}

.about-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.about-media {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-image-placeholder {
    width: 100%;
    height: 320px;
    border-radius: 24px;
    overflow: hidden;
    background: var(--card-bg);
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
}

.about-image-placeholder img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.about-image-placeholder .placeholder-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    text-align: center;
}

.about-image-placeholder .placeholder-text i {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.4;
}

.about-image-placeholder .placeholder-text span {
    font-size: 0.9rem;
    font-weight: 500;
}

.about-video-placeholder {
    width: 100%;
    height: 220px;
    border-radius: 24px;
    overflow: hidden;
    background: var(--card-bg);
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.about-video-placeholder:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    opacity: 0.9;
}

.about-video-placeholder .play-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(184, 124, 75, 0.3);
}

.about-video-placeholder:hover .play-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(184, 124, 75, 0.4);
}

.about-video-placeholder .video-label {
    margin-top: 0.8rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.about-video-placeholder video#videoThumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.video-placeholder-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    transition: var(--transition);
}

.about-video-placeholder:hover .video-placeholder-overlay {
    background: rgba(0, 0, 0, 0.45);
}

.video-placeholder-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Video Modal (pop-out player) */
.video-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 800px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.92);
    transition: transform 0.3s ease;
}

.video-modal-overlay.active .video-modal-content {
    transform: scale(1);
}

.video-modal-content video {
    width: 100%;
    max-height: 80vh;
    display: block;
    background: #000;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.video-modal-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

@media (max-width: 550px) {
    .video-modal-close {
        top: -44px;
        width: 36px;
        height: 36px;
    }
}

.about-description {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.about-description h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--secondary);
    line-height: 1.2;
}

.about-description h2 span {
    color: var(--primary);
}

.about-description .tagline {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.about-description p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.about-description .stats-mini {
    display: flex;
    gap: 2.5rem;
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.about-description .stats-mini .stat-item {
    text-align: center;
}

.about-description .stats-mini .stat-item h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.about-description .stats-mini .stat-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* Social buttons in footer - Gmail added */
.social-links a.gmail {
    color: #EA4335;
    background: #ffffff;
}

.social-links a.gmail:hover {
    background: #EA4335;
    color: #ffffff;
}

[data-theme="dark"] .social-links a.gmail {
    background: #1a1a1a;
    color: #EA4335;
}

[data-theme="dark"] .social-links a.gmail:hover {
    background: #EA4335;
    color: #ffffff;
}

/* Mobile */
@media (max-width: 850px) {
    .about-grid-2col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image-placeholder {
        height: 240px;
    }

    .about-video-placeholder {
        height: 180px;
    }

    .about-description h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 550px) {
    .about-image-placeholder {
        height: 180px;
    }

    .about-video-placeholder {
        height: 140px;
    }

    .about-description .stats-mini {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .about-description h2 {
        font-size: 1.4rem;
    }
}


.tour-notice {
    margin: 2rem 0;
}

.tour-notice-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary);
    border-radius: 16px;
    padding: 1.4rem 1.6rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.tour-notice-box i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.tour-notice-title {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.4rem;
}

.tour-notice-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.4rem;
}

.tour-notice-box p:last-child {
    margin-bottom: 0;
}

@media (max-width: 550px) {
    .tour-notice-box {
        padding: 1.1rem 1.2rem;
        gap: 0.8rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer-social {
    background: var(--secondary);
    color: var(--cream);
    padding: 4rem 2rem 2.5rem;
    border-radius: 40px 40px 0 0;
    margin-top: 2rem;
}

/* In dark mode, make footer lighter */
[data-theme="dark"] .footer-social {
    background: #2a2826;
    /* Warm dark instead of pure black */
    color: #e8e0d8;
    /* Warm light text */
}

.footer-social .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-social .brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--cream);
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    border-radius: 16px;
    flex-shrink: 0;
}

.brand-text {
    display: block;
}

[data-theme="dark"] .footer-social .brand {
    color: #e8e0d8;
}

.footer-social .brand span {
    color: var(--primary-light);
}

[data-theme="dark"] .footer-social .brand span {
    color: #dbb492;
}

.footer-social .brand small {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    opacity: 0.6;
}

[data-theme="dark"] .footer-social .brand small {
    opacity: 0.7;
    color: #b8b0a8;
}

.social-links {
    display: flex;
    gap: 1.2rem;
    font-size: 1.3rem;
}

.social-links a {
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.6);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

/* TikTok - Black with white accent */
.social-links a.tiktok {
    color: #000000;
    background: #ffffff;
}

.social-links a.tiktok:hover {
    background: #000000;
    color: #ffffff;
}

/* Instagram - Gradient colors */
.social-links a.instagram {
    color: #e4405f;
    background: #ffffff;
}

.social-links a.instagram:hover {
    background: linear-gradient(135deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: #ffffff;
}

/* WhatsApp - Green */
.social-links a.whatsapp {
    color: #25d366;
    background: #ffffff;
}

.social-links a.whatsapp:hover {
    background: #25d366;
    color: #ffffff;
}

/* Dark mode - keep colors but with dark backgrounds */
[data-theme="dark"] .social-links a.tiktok {
    background: #1a1a1a;
    color: #ffffff;
}

[data-theme="dark"] .social-links a.tiktok:hover {
    background: #ffffff;
    color: #000000;
}

[data-theme="dark"] .social-links a.instagram {
    background: #1a1a1a;
    color: #e4405f;
}

[data-theme="dark"] .social-links a.instagram:hover {
    background: linear-gradient(135deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: #ffffff;
}

[data-theme="dark"] .social-links a.whatsapp {
    background: #1a1a1a;
    color: #25d366;
}

[data-theme="dark"] .social-links a.whatsapp:hover {
    background: #25d366;
    color: #ffffff;
}

.footer-copy {
    text-align: center;
    margin-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

[data-theme="dark"] .footer-copy {
    border-top-color: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
}

[data-theme="dark"] .footer-copy p {
    color: #b8b0a8;
}

[data-theme="dark"] .footer-copy p i {
    color: #b8b0a8;
}


/* Thank you */


.thankyou-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.thankyou-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 3rem 2.5rem;
    text-align: center;
    max-width: 480px;
    width: 100%;
}

.thankyou-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(184, 124, 75, 0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.thankyou-card h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 0.8rem;
}

.thankyou-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.thankyou-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 2rem;
}

.thankyou-divider {
    border-top: 1px solid var(--border-color);
    margin: 2rem 0 1.5rem;
}

.thankyou-review-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

@media (max-width: 550px) {
    .thankyou-card {
        padding: 2.2rem 1.6rem;
    }

    .thankyou-card h1 {
        font-size: 1.7rem;
    }
}

/* ============================================
   MOBILE PERFORMANCE OPTIMIZATIONS
   ============================================ */

/* Disable heavy animations & transitions on mobile */
@media (max-width: 850px) {

    /* Disable scroll reveal animations */
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    /* Disable card hover effects */
    .tour-card {
        transition: none !important;
    }

    .tour-card:hover {
        transform: none !important;
        box-shadow: var(--shadow) !important;
    }

    .tour-card::before {
        display: none !important;
    }

    /* Disable gallery hover effects */
    .gallery-item {
        transition: none !important;
    }

    .gallery-item:hover {
        transform: none !important;
        box-shadow: var(--shadow) !important;
    }

    .gallery-item:hover img {
        transform: none !important;
    }

    /* Disable testi card hover */
    .testi-card {
        transition: none !important;
    }

    .testi-card:hover {
        transform: none !important;
        box-shadow: var(--shadow) !important;
    }

    /* Reduce backdrop blur for better performance */
    .navbar {
        backdrop-filter: blur(4px) !important;
        -webkit-backdrop-filter: blur(4px) !important;
        background: rgba(255, 255, 255, 0.2) !important;
    }

    [data-theme="dark"] .navbar {
        background: rgba(13, 17, 23, 0.4) !important;
    }

    /* Disable smooth scrolling */
    html {
        scroll-behavior: auto !important;
    }

    /* Slow down gallery auto-scroll */
    .gallery-track {
        animation-duration: 40s !important;
    }

    .hero-video-bg video {
        display: none !important;
    }

    .hero-video-bg {
        background: var(--secondary) url('assets/images/backup.jpg') center/cover no-repeat !important;
    }

    /* Disable gradient animations */
    .tours::before {
        animation: none !important;
    }

    /* Reduce form input transitions */
    .form-grid input,
    .form-grid select,
    .form-grid textarea {
        transition: none !important;
    }

    .form-grid input:focus,
    .form-grid select:focus,
    .form-grid textarea:focus {
        box-shadow: none !important;
    }

    /* Disable button hover effects */
    .btn-primary {
        transition: none !important;
    }

    .btn-primary:hover {
        transform: none !important;
        box-shadow: 0 8px 25px rgba(184, 124, 75, 0.25) !important;
    }

    .btn-primary::after {
        display: none !important;
    }

    .btn-secondary {
        transition: none !important;
    }

    .btn-secondary:hover {
        transform: none !important;
        background: transparent !important;
        color: var(--primary) !important;
        box-shadow: none !important;
    }

    /* Disable back-top button animation */
    .back-top {
        transition: none !important;
    }
}

/* Extra small screens */
@media (max-width: 550px) {
    .navbar {
        backdrop-filter: blur(2px) !important;
        -webkit-backdrop-filter: blur(2px) !important;
        background: rgba(255, 255, 255, 0.3) !important;
    }

    [data-theme="dark"] .navbar {
        background: rgba(13, 17, 23, 0.5) !important;
    }
}

/* ============================================
   MOBILE LAYOUT FIXES
   (actual structural fixes, not just disabling effects)
   ============================================ */
@media (max-width: 850px) {

    /* ---- Nav: turn the inline menu into a slide-in panel ---- */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(80%, 320px);
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 1.6rem;
        padding: 6rem 2.5rem;
        margin: 0;
        transition: right 0.35s ease;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        z-index: 1001;
    }

    .nav-menu.active {
        right: 0;
    }

    [data-theme="dark"] .nav-menu {
        background: var(--cream);
    }

    .nav-menu a {
        font-size: 1.05rem;
    }

    .btn-nav-mobile {
        display: inline-block;
    }

    .nav-actions .btn-nav {
        display: none;
    }

    .logo img {
        height: 50px;
    }

    .logo-text {
        margin-left: 58px;
        font-size: 1.15rem;
    }

    /* ---- Hero: keep the headline from overflowing tiny screens ---- */
    .hero-content h1 {
        font-size: 2.6rem;
        letter-spacing: -1px;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-content .badge {
        font-size: 0.68rem;
        padding: 0.35rem 1rem;
    }

    .hero-content-wrapper {
        padding: 4rem 1.2rem;
    }

    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .hero-stats .stat h3 {
        font-size: 1.6rem;
    }

    /* ---- Form: one column instead of squeezed two ---- */
    .form-grid {
        grid-template-columns: 1fr;
    }

    /* ---- Footer: stack and center instead of cramming into a row ---- */
    .footer-social .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-social .brand {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 550px) {
    .hero-content h1 {
        font-size: 2.1rem;
    }
}

/* Safety margin in case the top bar wraps to two lines on very narrow phones */
@media (max-width: 480px) {
    body {
        padding-top: 96px;
    }

    .top-bar {
        font-size: 0.65rem;
        padding: 0.3rem 0.8rem;
    }
}

/* ---- Reclaim width lost to stacked section + container padding ---- */
@media (max-width: 600px) {
    .container {
        padding: 0 1rem;
    }

    .tours,
    .testimonials,
    .gallery-section,
    .form-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .tour-card {
        padding: 1.6rem 1.2rem;
    }

    .testi-card {
        padding: 1.6rem;
    }

    .google-reviews-container {
        padding: 1.6rem;
    }
}



/* ============================================
   MOBILE FONT SIZE - SECTION TITLES & HEADERS
   ============================================ */

/* Tablet */
@media (max-width: 850px) {

    /* Section Titles */
    .section-title {
        font-size: 2.2rem !important;
    }

    /* Hero Title */
    .hero-content h1 {
        font-size: 2.8rem !important;
    }

    /* Tour Card Titles */
    .tour-card h3 {
        font-size: 1.1rem !important;
    }

    /* Detail Page Hero */
    .detail-hero h1 {
        font-size: 2.5rem !important;
    }

    .detail-hero p {
        font-size: 1rem !important;
    }

    /* Detail Description */
    .detail-description h2 {
        font-size: 1.8rem !important;
    }

    .detail-description p {
        font-size: 1rem !important;
    }

    /* Footer Brand */
    .footer-social .brand {
        font-size: 1.5rem !important;
    }
}

/* Phone */
@media (max-width: 550px) {

    /* Section Titles - Main */
    .section-title {
        font-size: 1.6rem !important;
    }

    /* Section Subtitle */
    .section-sub {
        font-size: 0.9rem !important;
    }

    /* Hero */
    .hero-content h1 {
        font-size: 1.8rem !important;
    }

    .hero-content p {
        font-size: 0.95rem !important;
    }

    .hero-content .badge {
        font-size: 0.6rem !important;
    }

    /* Tour Cards */
    .tour-card h3 {
        font-size: 0.95rem !important;
    }

    .tour-card p {
        font-size: 0.85rem !important;
    }

    .tour-card .price {
        font-size: 1.3rem !important;
    }

    /* Detail Page */
    .detail-hero h1 {
        font-size: 1.8rem !important;
    }

    .detail-hero p {
        font-size: 0.9rem !important;
    }

    .detail-hero .price-badge {
        font-size: 1rem !important;
    }

    .detail-description h2 {
        font-size: 1.4rem !important;
    }

    .detail-description p {
        font-size: 0.9rem !important;
    }

    .detail-description ul li {
        font-size: 0.9rem !important;
    }

    /* Gallery */
    .gallery-section .section-title {
        font-size: 1.6rem !important;
    }

    /* Testimonials */
    .testimonials .section-title {
        font-size: 1.6rem !important;
    }

    .testi-card p {
        font-size: 0.85rem !important;
    }

    .testi-card .client {
        font-size: 0.85rem !important;
    }

    /* Form */
    .form-section .section-title {
        font-size: 1.6rem !important;
    }

    .form-grid label {
        font-size: 0.8rem !important;
    }

    .form-grid input,
    .form-grid select,
    .form-grid textarea {
        font-size: 0.9rem !important;
    }

    /* Footer */
    .footer-social .brand {
        font-size: 1.1rem !important;
    }

    .footer-social .brand small {
        font-size: 0.7rem !important;
    }

    .footer-copy p {
        font-size: 0.75rem !important;
    }

    /* Back to Top Button */
    .back-top {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
}

/* Extra Small Phones */
@media (max-width: 400px) {
    .section-title {
        font-size: 1.4rem !important;
    }

    .hero-content h1 {
        font-size: 1.5rem !important;
    }

    .detail-hero h1 {
        font-size: 1.5rem !important;
    }

    .tour-card h3 {
        font-size: 0.85rem !important;
    }
}