/* ============================================================
   THE NEW NOMAD EXPERIENCES - Streamlined Stylesheet
   ============================================================ */

/* ── Fonts & Custom Variables ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Jost:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
    /* Colors */
    --primary-color: #087d06; /* Forest Green */
    --primary-hover: #066405;
    --primary-light: rgba(8, 125, 6, 0.08);
    --accent-color: #edda09; /* Nomad Yellow */
    --text-dark: #2c3e2b; /* Deep Olive Charcoal */
    --text-body: #4a5549; /* Soft Olive Charcoal */
    --text-light: #ffffff;
    --text-muted: #7c8b7a;
    --bg-light: #ffffff;
    --bg-alt: #f4f6f3; /* Very soft warm grayish-green tint */
    --bg-dark: #1b241a; /* Forest Dark */
    --overlay-dark: rgba(22, 33, 21, 0.45); /* Rich forest overlay */
    --border-color: #d8e0d7;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Jost', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
    
    /* Layout properties */
    --container-width: 1140px;
    --header-height: 90px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --box-shadow: 0 15px 35px rgba(22, 33, 21, 0.04), 0 5px 15px rgba(22, 33, 21, 0.02);
    --box-shadow-hover: 0 25px 50px rgba(22, 33, 21, 0.09), 0 10px 25px rgba(22, 33, 21, 0.03);
}

/* ── Base Styles ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--bg-light);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    letter-spacing: 0.02em;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 0.6em;
    color: var(--text-dark);
}

/* ── Common Components ── */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

.section {
    padding: 120px 0;
}

.section-alt {
    background-color: var(--bg-alt);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 70px auto;
}

.section-title {
    font-size: 2.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    margin-bottom: 20px;
    font-weight: 500;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

.section-desc {
    font-family: var(--font-accent);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--text-muted);
    font-weight: 300;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(22, 33, 21, 0.08);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(8, 125, 6, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--text-dark);
    border-color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.btn-whatsapp {
    background-color: transparent;
    color: #25d366;
    border: 2px solid #25d366;
    box-shadow: none;
}

.btn-whatsapp:hover {
    background-color: #25d366;
    color: var(--text-light);
    border-color: #25d366;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
}

.btn-dark {
    background-color: var(--text-dark);
    color: var(--text-light);
}

.btn-dark:hover {
    background-color: #0d120c;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(13, 18, 12, 0.2);
}

/* ── Header / Navigation ── */
header.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: var(--transition);
    color: var(--text-light);
}

header.main-header.scrolled {
    height: 75px;
    background-color: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(8, 125, 6, 0.08);
    color: var(--text-dark);
    box-shadow: 0 10px 30px rgba(8, 125, 6, 0.03);
}

header.main-header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.logo img {
    height: 48px;
    width: auto;
    transition: var(--transition);
}

header.main-header.scrolled .logo img {
    height: 40px;
    filter: drop-shadow(0 2px 5px rgba(8, 125, 6, 0.1));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px; /* reduced default gap to prevent layout wrapping */
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    color: inherit;
    opacity: 0.85;
}

.nav-link:hover {
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: currentColor;
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    margin-left: 10px;
}

/* Ensure CTA changes color inside sticky header */
header.main-header.scrolled .nav-cta .btn {
    box-shadow: 0 4px 15px rgba(8, 125, 6, 0.15);
}

/* Mobile Nav Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
    padding: 6px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: currentColor;
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Menu Open Animation */
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero Sections ── */
.hero {
    height: 85vh;
    min-height: 600px;
    max-height: 950px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: var(--text-light);
    margin-top: 0;
    padding-top: var(--header-height);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay-dark);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-prefix {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 5px;
    display: block;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
    font-weight: 300;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 500;
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 4px 30px rgba(0, 0, 0, 0.4);
    line-height: 1.05;
    color: var(--text-light);
    animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 45px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) both;
    opacity: 0.95;
}

.hero-cta {
    animation: fadeInUp 1.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Page Sub-Hero (Editorial banner style) */
.sub-hero {
    height: 55vh;
    min-height: 400px;
}

.sub-hero .hero-title {
    font-size: 4rem;
    letter-spacing: 1px;
}

/* ── Experience Cards ── */
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 40px;
}

.card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(8, 125, 6, 0.03);
}

.card:hover {
    transform: translateY(-10px) scale(1.005);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(8, 125, 6, 0.08);
}

.card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.card-img-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(22, 33, 21, 0.25) 100%);
    z-index: 1;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.card-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.card-desc {
    color: var(--text-body);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.7;
}

.card-inclusions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.card-inclusion-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-inclusion-item span {
    color: var(--primary-color);
    font-weight: bold;
}

.card-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.card-price-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.card-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.card-cta {
    margin-top: 25px;
}

.card-cta .btn {
    width: 100%;
}

/* ── Photo Trips Gallery ── */
.gallery-intro {
    text-align: center;
    max-width: 750px;
    margin: -20px auto 60px auto;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-body);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: var(--box-shadow);
    cursor: pointer;
    background-color: var(--text-dark);
}

/* Modern Masonry grid styling */
.gallery-item.tall {
    grid-row: span 2;
    aspect-ratio: 1 / 2;
}

.gallery-item.wide {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.95;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(22, 33, 21, 0.9) 0%, rgba(22, 33, 21, 0.4) 60%, rgba(22, 33, 21, 0) 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    opacity: 0;
    transition: var(--transition);
    color: var(--text-light);
    padding: 30px;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.06);
    opacity: 0.8;
}

.gallery-overlay-icon {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--accent-color);
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.gallery-overlay-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.gallery-item:hover .gallery-overlay-icon,
.gallery-item:hover .gallery-overlay-title {
    transform: translateY(0);
}

/* ── Nomad Gadgets Section ── */
.gadgets-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
    padding: 140px 0;
    text-align: center;
}

.gadgets-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(22, 33, 21, 0.65); /* Darker overlay for better read */
    z-index: 1;
}

.gadgets-section .container {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.gadgets-title {
    font-size: 3.5rem;
    letter-spacing: -0.5px;
    margin-bottom: 25px;
    color: var(--accent-color) !important;
}

.gadgets-desc {
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 45px;
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 300;
}

/* Affiliates Section styling */
.affiliates-section {
    text-align: center;
    background-color: var(--bg-alt); /* Light gray-green background */
    padding: 80px 0;
}


.affiliates-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
}

.affiliate-item {
    padding: 12px 28px;
    border-radius: 50px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    transition: var(--transition);
}

.affiliate-item:hover {
    background: var(--primary-light);
    border-color: var(--primary-color);
    transform: translateY(-4px);
    color: var(--primary-color);
}

/* ── About Us Specific ── */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-intro-text p {
    color: var(--text-body);
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.about-intro-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow-hover);
}

.about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.value-card {
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    border-top: 4px solid var(--primary-color);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.value-card h3 {
    font-size: 1.7rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-body);
    font-size: 1.05rem;
    line-height: 1.8;
}

.testimonial-section {
    background-color: var(--bg-alt);
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.testimonial-container {
    max-width: 780px;
    margin: 0 auto;
}

.testimonial-quote {
    font-family: var(--font-accent);
    font-size: 2.2rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 35px;
    position: relative;
    color: var(--text-dark);
    font-weight: 300;
}

.testimonial-quote::before {
    content: '“';
    font-size: 7rem;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.08;
    font-family: serif;
    color: var(--primary-color);
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
}

/* ── Why Choose Us / Stats ── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    background-color: var(--bg-light);
    padding: 50px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(8, 125, 6, 0.03);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(8, 125, 6, 0.08);
}

.stat-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 500;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* ── Contact Page Specific ── */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: flex-start;
}

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

.contact-info-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.contact-info-desc {
    color: var(--text-body);
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 24px;
}

.contact-method-icon {
    font-size: 1.4rem;
    color: var(--primary-color);
    padding: 15px;
    background-color: var(--bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(8, 125, 6, 0.04);
}

.contact-method-details h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
    color: var(--text-muted);
    font-weight: 600;
}

.contact-method-details p {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Sleek Minimalist Form Layout */
.contact-form-container {
    background-color: var(--bg-light);
    padding: 60px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-hover);
    border: 1px solid rgba(8, 125, 6, 0.05);
}

.contact-form-title {
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 500;
}

.form-group {
    margin-bottom: 35px;
    position: relative;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.form-control {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid var(--border-color);
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 1.05rem;
    transition: var(--transition);
    background-color: transparent;
    color: var(--text-dark);
}

.form-control::placeholder {
    color: #b0c0af;
    opacity: 0.8;
}

.form-control:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.contact-form-container .btn {
    width: 100%;
    margin-top: 15px;
}

/* ── Footer ── */
.site-footer {
    background-color: var(--bg-dark);
    color: #cbd8ca;
    padding: 100px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-brand h3 {
    color: var(--text-light);
    font-size: 1.8rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-brand p {
    margin-bottom: 30px;
    max-width: 380px;
    line-height: 1.8;
    color: #a4b4a3;
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 600;
}

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

.footer-links a {
    font-size: 0.95rem;
    color: #cbd8ca;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 6px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: var(--text-light);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.footer-logo {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-light);
}

.footer-logo img {
    height: 48px;
    width: auto;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 40px;
    text-align: center;
    font-size: 0.85rem;
    color: #a4b4a3;
}

/* Footer Image Grid (From original footer) */
.footer-instagram {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 0;
}

.footer-instagram-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    background-color: #000;
}

.footer-instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    opacity: 0.85;
}

.footer-instagram-item:hover img {
    transform: scale(1.08);
    opacity: 0.6;
}

.footer-instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 125, 6, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    opacity: 0;
    transition: var(--transition);
    font-size: 1.4rem;
}

.footer-instagram-item:hover .footer-instagram-overlay {
    opacity: 1;
}

/* ── Lightbox (Modal) ── */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 18, 12, 0.98); /* Forest Dark backdrop */
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    padding: 40px;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    transform: scale(0.97);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.lightbox-caption {
    color: var(--text-light);
    text-align: center;
    margin-top: 20px;
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.35rem;
    font-weight: 300;
}

/* ── Scroll Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Responsive Styling ── */
@media (max-width: 1024px) {
    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-intro-grid {
        gap: 50px;
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        gap: 50px;
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 80px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Header & Mobile Navigation */
    .logo a {
        font-size: 1.25rem;
        gap: 8px;
    }
    
    .logo span {
        display: inline;
    }
    
    .logo img {
        height: 38px;
    }
    
    header.main-header.scrolled .logo img {
        height: 32px;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 340px;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: -15px 0 40px rgba(22, 33, 21, 0.1);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 1000;
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        color: var(--text-dark) !important; /* Force dark text in mobile menu sidebar */
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 15px;
    }
    
    /* Layouts stack to 1 column */
    .experiences-grid,
    .gallery-grid,
    .about-values-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.tall,
    .gallery-item.wide {
        grid-row: span 1;
        grid-column: span 1;
        aspect-ratio: 1;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-prefix {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        letter-spacing: 4px;
    }
    
    .sub-hero {
        height: 40vh;
    }
    
    .sub-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .footer-instagram {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-form-container {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .logo a {
        font-size: 1.05rem;
        gap: 6px;
    }
    
    .logo span {
        display: none;
    }
    
    .logo img {
        height: 32px;
    }
    
    header.main-header.scrolled .logo img {
        height: 28px;
    }
    
    .mobile-toggle {
        padding: 4px;
    }
}

/* ============================================================
   NEW STYLES - JUNE 2026 MODIFICATIONS
   ============================================================ */

/* Experiences Carousel Styling */
.experiences-carousel-container {
    position: relative;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 45px;
}
.experiences-carousel-track-wrapper {
    overflow: hidden;
    width: 100%;
}
.experiences-carousel-track {
    display: flex;
    align-items: stretch;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}
.experiences-carousel-track .card {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    height: auto;
}
@media (max-width: 1024px) {
    .experiences-carousel-track .card {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}
@media (max-width: 768px) {
    .experiences-carousel-container {
        padding: 0 10px;
    }
    .experiences-carousel-track .card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: var(--text-dark);
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}
.carousel-control:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}
.carousel-control.prev {
    left: -10px;
}
.carousel-control.next {
    right: -10px;
}

/* Thinner Typography class */
.hero-subtitle-thin {
    font-weight: 300 !important;
    text-transform: none !important;
    font-size: 1.4rem !important;
    letter-spacing: 1px !important;
    font-family: var(--font-accent) !important;
    font-style: italic !important;
}

/* Sizing and Layout Adjustments for Navbar Links */
@media (max-width: 1250px) {
    .nav-menu {
        gap: 14px;
    }
    .nav-link {
        font-size: 0.72rem;
        letter-spacing: 0.8px;
    }
    .logo a {
        font-size: 1.25rem;
    }
}
@media (max-width: 1050px) {
    .nav-menu {
        gap: 8px;
    }
    .nav-link {
        font-size: 0.68rem;
        letter-spacing: 0.5px;
    }
    .logo span {
        display: none;
    }
}

/* Image Grid larger size (3x3 Grid) */
.gallery-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
}
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Floating WhatsApp Widget */
.whatsapp-floating-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #25d366;
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}
.whatsapp-floating-widget:hover {
    transform: translateY(-5px);
    background-color: #20ba5a;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    color: #fff;
}
.whatsapp-floating-widget svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-floating-widget:hover svg {
    transform: scale(1.15) rotate(10deg);
}
.whatsapp-floating-text {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.4s ease;
}
.whatsapp-floating-widget:hover .whatsapp-floating-text {
    max-width: 200px;
}

/* AJAX PHP Form States */
.php-email-form .loading {
    display: none;
    background: var(--bg-light);
    text-align: center;
    padding: 15px;
    font-weight: 500;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}
.php-email-form .error-message {
    display: none;
    color: #fff;
    background: #df3b3b;
    text-align: left;
    padding: 15px;
    font-weight: 500;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}
.php-email-form .sent-message {
    display: none;
    color: #fff;
    background: var(--primary-color);
    text-align: center;
    padding: 15px;
    font-weight: 500;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}
.php-email-form .loading.d-block,
.php-email-form .error-message.d-block,
.php-email-form .sent-message.d-block {
    display: block;
}

/* Visual Pillars Grid */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.pillar-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: var(--box-shadow);
}
.pillar-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.pillar-item:hover img {
    transform: scale(1.05);
}
.pillar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(22, 33, 21, 0.8) 0%, rgba(22, 33, 21, 0.3) 50%, rgba(22, 33, 21, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: var(--text-light);
}
.pillar-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-light) !important;
    margin-bottom: 5px;
    line-height: 1.2;
}
.pillar-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    font-weight: 600;
}
@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Experience Details Page Styling ── */
.exp-back-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    transition: var(--transition);
}
.exp-back-nav:hover {
    color: var(--primary-hover);
    transform: translateX(-4px);
}
.exp-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}
@media (min-width: 992px) {
    .exp-detail-grid {
        grid-template-columns: 7fr 5fr;
        gap: 60px;
    }
}
.exp-info-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}
.exp-info-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}
.exp-info-content h3 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    letter-spacing: 1px;
}
.exp-highlights-list {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.exp-highlights-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
}
.exp-highlights-item .icon {
    color: var(--primary-color);
    font-weight: bold;
    margin-top: 2px;
}
.exp-booking-card {
    background-color: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--box-shadow);
    align-self: start;
}
@media (min-width: 992px) {
    .exp-booking-card {
        position: sticky;
        top: 115px;
    }
}
.exp-price-box {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 25px;
}
.exp-price-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}
.exp-price-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-dark);
}
.exp-inclusions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}
.exp-inclusions-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-body);
}
.exp-inclusions-item span {
    color: var(--primary-color);
    font-weight: bold;
}
.exp-booking-card .contact-form-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

/* ============================================================
   TRAVEL GADGETS & GEAR MYTHS PAGE STYLES
   ============================================================ */

.local-store-banner {
    background-color: #f7f9f6;
    border-left: 4px solid var(--primary-color);
    padding: 24px 30px;
    border-radius: 6px;
    margin-bottom: 50px;
    box-shadow: 0 4px 15px rgba(22, 33, 21, 0.02);
}

.local-store-banner h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.local-store-banner p {
    color: var(--text-body);
    font-size: 1.05rem;
    line-height: 1.6;
}

.gadgets-section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    margin: 40px 0 20px;
    border-bottom: 2px solid var(--bg-alt);
    padding-bottom: 10px;
}

.myth-card {
    position: relative;
    background: var(--bg-light);
    border: 1px solid rgba(220, 53, 69, 0.12);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.myth-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(220, 53, 69, 0.06);
    border-color: rgba(220, 53, 69, 0.25);
}

.myth-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e63946;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 4px;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.25);
}

.myth-card .card-img-wrap {
    filter: grayscale(40%);
    transition: var(--transition);
}

.myth-card:hover .card-img-wrap {
    filter: grayscale(0%);
}

.myth-card .card-body {
    padding: 25px;
}

.myth-card .card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.myth-card .card-title::after {
    content: "✗";
    color: #e63946;
    font-weight: bold;
}

.myth-explanation {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed rgba(220, 53, 69, 0.15);
}

.myth-explanation-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e63946;
    font-weight: 600;
    margin-bottom: 6px;
}
