/* Reset and Base Styles */
:root {
    --footer-bg:#050714;
    --primary-color: #c1624f; /* Requested accent color */
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --transition:0.3s all ease;
    --font:"Montserrat";
    --border-color: rgba(255, 255, 255, 0.1);
    --darker-primary-color:#a84a38;
    --easing: all 500ms linear(0,
       0.012 0.9%,
       0.05 2%,
       0.411 9.2%,
       0.517 11.8%,
       0.611 14.6%,
       0.694 17.7%,
       0.765 21.1%,
       0.824 24.8%,
       0.872 28.9%,
       0.91 33.4%,
       0.939 38.4%,
       0.977 50.9%,
       0.994 68.4%,
       1);
        --snap:
    linear(0, 0.03 1.1%, 0.125 2.4%, 0.906 9.8%, 1.046 12.3%, 1.11 15%, 1.116 16.3%, 1.11 17.8%, 1.014 25.8%, 0.987 31.2%, 1.001 47.2%, 1);
}


.playFair{
    font-family: 'Playfair Display', serif !important;
}

.pb{
    padding-bottom: 80px !important;
}


/* Navbar Styles */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent; /* Initially transparent */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    padding: 2rem 0; /* Initial padding */
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

nav.scrolled {
    background-color: rgba(5, 7, 20, 0.95); /* bg-night-900/95 */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 1rem 0; /* Scrolled padding */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-img {
    height: 48px; /* Slightly smaller to match proportion */
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
    scale: 1.5;
    margin-right: 2rem;
}

.nav-logo:hover .logo-img {
    opacity: 0.9;
}

/* Desktop Navigation */
.desktop-nav {
    display: none; /* Hidden on mobile */
    align-items: center;
    width: 100%;
    gap: 1rem;
    max-width: 1200px;
    justify-content: space-between;
}

.nav-link {
    font-size: 14px; /* Slightly smaller text */
    font-weight: 800; /* Extra bold */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link:hover {
    color: #ffffff;
}

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

/* Active State matching the image */
.nav-link.active {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

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

/* Hide old underline span */
.link-underline {
    display: none;
}

.btn-plan-trip {
    background-color: var(--darker-primary-color); /* earth-600 approx */
    color: white;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: inline-block;
    white-space: nowrap;
}

.btn-plan-trip:hover {
    background-color: #d67a68; /* lighter shade */
    transform: translateY(-1px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--primary-color);
}

.mobile-menu-content{
        max-height: 100%;
    width: 100%;
    overflow-y: auto;
    padding-block: 2rem;
}

/* Mobile Menu Overlay - Full Screen Dropdown */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: black;
    backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
}

.menu-item {
    opacity: 0;
}

/* Staggered Animations on Open */
.mobile-menu.active .menu-item {
    animation: snappyUp 0.8s var(--snap) forwards;
}

.mobile-menu.active .menu-item:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu.active .menu-item:nth-child(2) { animation-delay: 0.15s; }
.mobile-menu.active .menu-item:nth-child(3) { animation-delay: 0.2s; }
.mobile-menu.active .menu-item:nth-child(4) { animation-delay: 0.25s; }
.mobile-menu.active .menu-item:nth-child(5) { animation-delay: 0.3s; }
.mobile-menu.active .menu-item:nth-child(6) { animation-delay: 0.35s; }
.mobile-menu.active .menu-item:nth-child(7) { animation-delay: 0.4s; }

.mobile-link-large {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem; /* text-3xl */
    letter-spacing: 0.025em;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-link-large:hover {
    color: #e2a088;
}

.mobile-link-large.active {
    color: #cb7a63;
    font-style: italic;
}

.btn-mobile-large {
    display: inline-block;
    background-color: #c05621;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 16px 40px;
    border-radius: 9999px;
    font-size: 0.875rem;
    text-decoration: none;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: background-color 0.3s ease;
}

.btn-mobile-large:hover {
    background-color: #9c421a;
}

.pt-8 {
    padding-top: 32px;
}

/* Footer Styles */
footer {
    background-color: var(--footer-bg);
    color: var(--text-white);
    padding: 64px 0; /* py-16 */
    font-size: 14px;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* border-white/5 */
}

footer .container{
    background-color: var(--footer-bg);

}
footer a{
    width: fit-content;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px; /* gap-12 */
    margin-bottom: 48px; /* mb-12 */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* border-white/10 */
    padding-bottom: 48px; /* pb-12 */
}



/* Brand Section */
.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 24px; /* space-y-6 */
}

.footer-logo-link {
    display: block;
}

.footer-logo {
    height: 56px; /* h-14 */
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.brand-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px; /* text-lg */
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em; /* tracking-wide */
    margin-bottom: 12px;
    text-transform: uppercase;
}

.brand-text p {
    color: rgba(255, 255, 255, 0.6); /* text-white/60 */
    font-size: 14px;
    line-height: 1.625; /* leading-relaxed */
    max-width: 320px; /* max-w-xs */
}

.social-icons {
    display: flex;
    gap: 16px; /* space-x-4 */
    padding-top: 8px; /* pt-2 */
}

.social-icon {
    color: rgba(255, 255, 255, 0.6); /* text-white/60 */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: var(--primary-color); /* hover:text-earth-500 */
    transform: scale(1.1); /* hover:scale-110 */
}

/* Navigation Links */
.footer-nav h4, .footer-contact h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color); /* text-earth-500 */
    text-transform: uppercase;
    letter-spacing: 0.1em; /* tracking-widest */
    margin-bottom: 24px; /* mb-6 */
    font-family: 'Playfair Display', serif;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px; /* space-y-3 */
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7); /* text-white/70 */
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px; /* gap-2 */
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ffffff; /* hover:text-white */
}

.hover-line {
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-nav a:hover .hover-line {
    width: 8px; /* w-2 */
}

/* Adventure Section */
.adventure-section {
    padding: 80px 0;
    background-color: #faf7f2; /* sand-50 approx */
}

/* Iconic Journeys Section */
.journeys-section {
    padding: 80px 0;
    background-color: #ffffff;
}

/* Reviews Section Styles */
.reviews-section {
    padding: 100px 0;
    background-color: #ffffff;
    color: var(--footer-bg);
}

.adventure-header {
    text-align: center;
    margin-bottom: 48px;
}

.adventure-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}

.adventure-header p {
    color: #666;
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.adventure-card {
    height: 500px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: grab;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.adventure-card:active {
    cursor: grabbing;
}

.adventure-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.adventure-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1s ease;
}

.adventure-card:hover .adventure-bg {
    transform: scale(1.1);
}

.adventure-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2), transparent);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.adventure-card:hover .adventure-overlay-gradient {
    opacity: 0.9;
}

.adventure-overlay-tint {
    position: absolute;
    inset: 0;
    background-color: rgba(67, 30, 20, 0.1); /* earth-900/10 */
    mix-blend-mode: overlay;
}

.adventure-content {
    position: absolute;
    inset: 0;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}

/* Inner content logic to match growing line and fading text */
.adventure-content-inner {
    transform: translateY(16px);
    transition: transform 0.5s ease;
}

.adventure-card:hover .adventure-content-inner {
    transform: translateY(0);
}

.adventure-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.025em;
    text-shadow: 0 4px 6px rgba(0,0,0,0.3);
    color: white;
}

.adventure-line {
    width: 48px;
    height: 4px;
    background-color: var(--primary-color); /* earth-500 */
    border-radius: 9999px; /* rounded-full */
    margin-bottom: 16px;
    transition: width 0.5s ease;
}

.adventure-card:hover .adventure-line {
    width: 80px; /* grow to w-20 */
}

.adventure-desc {
    font-size: 1.125rem; /* text-lg */
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.5s ease 0.1s; /* delayed slightly */
}

.adventure-card:hover .adventure-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Adventure Swiper Buttons - Glassy */
.adventure-swiper {
    padding-bottom: 60px;
    padding-top: 20px;
}

.adventure-swiper .swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    background-color: var(--primary-color);
    opacity: 0.5;
    width: 10px;
    height: 10px;
    margin: 0 6px !important;
}

 .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--primary-color) !important;
}

.adventure-swiper .swiper-button-next,
.adventure-swiper .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%; /* rounded-full */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white !important;
    box-shadow: none;
    transition: all 0.3s ease;
}

.adventure-swiper .swiper-button-next:hover,
.adventure-swiper .swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05); /* slightly less scale for these */
}

.adventure-swiper .swiper-button-next svg,
.adventure-swiper .swiper-button-prev svg {
    width: 20px;
    height: 20px;
}


/* Hero Section */
.hero-slider-section {
    position: relative;
    height: 100dvh;
    width: 100%;
    padding: 0 !important;
    overflow: hidden;
    background-color: #0c0c0c; /* bg-night-900 */
}

/* We will likely remove the spacer in HTML or overlay nav, for now assume overlay nav logic will be handled */

.hero-swiper {
    height: 100%;
    width: 100%;
}

.hero-slide {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.animate-ken-burns {
    animation: ken-burns 20s ease-out infinite alternate;
}

.hero-overlay-1 {
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.4);
}

.hero-overlay-2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent, rgba(0,0,0,0.7));
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 24px;
    z-index: 10;
    color: white;
}

.hero-subtitle {
    color: #e6dace; /* sand-200 */
    font-family: 'Playfair Display', serif; /* Added Playfair */
    font-weight: 700;
    letter-spacing: 0.2em;
    font-size: 0.875rem; /* Decreased slightly from 1rem */
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem; /* Decreased from 3.5rem */
    font-weight: 700;
    color: white;
    margin-bottom: 32px;
    line-height: 1.1;
    text-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}
header h1{
    max-width: 900px !important;
}

.hero-desc {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem; /* Decreased from 1.25rem */
    font-weight: 300;
    margin-bottom: 36px;
    max-width: 800px;
    text-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 2rem;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 2px;
    cursor: pointer;
    padding: 20px 48px; /* Bigger buttons */
    font-size: 1rem;
    text-decoration: none;
}

.btn-primary-hero {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary-hero:hover {
    background-color: #9c4232; /* earth-700 */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-white-hero {
    background-color: white;
    color: #1a1a1a;
}

.btn-white-hero:hover {
    background-color: #faf7f2 !important;
    color: var(--footer-bg) !important;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255,255,255,0.8);
    z-index: 20;
    cursor: pointer;
    animation: scroll-bounce-vertical 2s ease-in-out infinite;
    pointer-events: auto; /* Ensure clickable/interactive */
}

/* ... existing button styles ... */
.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 6px; /* increased from 2px */
    cursor: pointer;
    padding: 20px 48px;
    font-size: 1rem;
    text-decoration: none;
}

.btn-white-hero {
    background-color: white;
    color: #1a1a1a;
}

.btn-white-hero:hover {
    background-color: var(--primary-color); /* Change to primary color */
    color: white;
    border-color: var(--primary-color);
}


.scroll-text {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 8px;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, white, transparent);
}

/* Hero Pagination */
.hero-swiper .swiper-pagination {
    bottom: 115px !important; /* Move up to avoid scroll indicator overlap if any */
    z-index: 30; /* Higher Z-index */
    position: absolute;
    width: 100%;
    pointer-events: none; /* Container passes clicks */
}

.hero-swiper .swiper-pagination-bullet {
    width: 13px; /* Increased size */
    height: 13px;
    background-color: white;
    opacity: 0.5; /* Increased visibility */
    margin: 0 8px !important;
    transition: all 0.3s;
    pointer-events: auto; /* Bullets catch clicks */
    cursor: pointer;
}

.hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: white; /* Ensure white */
    transform: scale(1.2); /* Slight active grow */
}

.footer-contact .contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px; /* space-y-4 */
    color: rgba(255, 255, 255, 0.7); /* text-white/70 */
}

.contact-list li {
    display: flex;
    align-items: flex-start; /* items-start for address */
    gap: 12px; /* gap-3 */
}

/* Specific alignment fix for items that should be centered vertically like email/phone */
.contact-list li:not(:first-child) {
    align-items: center;
}

.contact-list li svg {
    color: var(--primary-color); /* text-earth-500 */
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.contact-list li:hover svg {
    color: #a65544; /* group-hover:text-earth-400 (slightly lighter/different shade) or similar */
}

.contact-list a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: #ffffff; /* hover:text-white */
}

/* TripAdvisor Badge */
.tripadvisor-badge {
    margin-top: 24px; /* pt-4 mt-2 equivalent roughly */
    display: flex;
    align-items: center;
    gap: 12px; /* gap-3 */
    padding: 12px; /* p-3 */
    background-color: rgba(255, 255, 255, 0.05); /* bg-white/5 */
    border-radius: 8px; /* rounded-lg */
    border: 1px solid rgba(255, 255, 255, 0.1); /* border-white/10 */
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    width: 100%;
    max-width: 250px;
}

.tripadvisor-badge:hover {
    background-color: rgba(255, 255, 255, 0.1); /* hover:bg-white/10 */
    border-color: rgba(193, 98, 79, 0.5); /* hover:border-earth-500/50 */
}

.ta-icon {
    color: var(--primary-color); /* text-earth-500 */
    transition: color 0.3s ease;
}

.tripadvisor-badge:hover .ta-icon, .tripadvisor-badge:hover .ta-title {
    color: #ffffff; /* group-hover:text-white */
}

.ta-text {
    display: flex;
    flex-direction: column;
}

.ta-title {
    display: block;
    font-weight: 600;
    font-size: 12px; /* text-xs */
    color: #ffffff;
    line-height: 1.2;
}

.ta-subtitle {
    display: block;
    font-size: 10px; /* text-[10px] */
    color: rgba(255, 255, 255, 0.5); /* text-white/50 */
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    font-size: 12px; /* text-xs */
    color: rgba(255, 255, 255, 0.3); /* text-white/30 */
    letter-spacing: 0.025em; /* tracking-wide */
}

/* Planning CTA Styles (Formerly Hero) */
.planning-cta {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #050511; /* night-900 */
}

.planning-bg-wrapper {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 0;
    transform: translateY(-2.9%);
}

.planning-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.planning-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: linear-gradient(to top, #050511, rgba(5, 5, 17, 0.5), rgba(5, 5, 17, 0.3));
    mix-blend-mode: multiply;
    pointer-events: none;
}

.planning-overlay-dim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.planning-content {
    position: relative;
    z-index: 20;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.planning-text-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-direction: column;
}

.planning-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 32px;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.5));
}

.italic-highlight {
    font-style: italic;
    color: #e3d5ca;
}

.planning-subtitle {
    font-size: 1.125rem;
    color: rgba(248, 245, 242, 0.9);
    max-width: 672px;
    margin: 0 auto 48px;
    line-height: 1.625;
    font-weight: 300;
    text-shadow: 0 4px 3px rgba(0,0,0,0.3);
}

.btn-planning-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--darker-primary-color);
    color: white;
    font-weight: 700;
    text-transform: uppercase !important;
    letter-spacing: 0.1em;
    padding: 24px 40px;
    font-size: 1.125rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.5s ease;
    box-shadow: 0 0 30px rgba(192, 86, 33, 0.4);
    border: none;
    outline: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-planning-cta:hover {
    background-color: var(--primary-color); /* earth-700 approx */
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(192, 86, 33, 0.7);
}

.btn-text-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-icon-lg {
    width: 20px;
    height: 20px;
}

.cta-icon-sm {
    display: none; /* Based on snippet structure, only one likely needed or secondary one is decoration */
    margin-left: 8px;
}

.desktop-only {
    display: none;
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

/* .swiper{
    overflow: visible !important;
} */

/* Custom Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    background-color: white;
    border-radius: 50%;
    border: 1px solid var(--darker-primary-color); /* earth-100 */
    color: var(--darker-primary-color) !important; /* earth-600 */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-md */
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    svg{
        width: 20px;
    }
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none; /* Hide default arrows */
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #faf7f2; /* earth-50 */
    transform: scale(1.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.reviews-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
}


.swiper-pagination{
    bottom: -35px !important;
}
.reviews-header p {
    color: #666;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
}


/* Swiper Pagination Active Color */
.swiper-pagination-bullet-active {
    background-color: var(--primary-color) !important;
}

.swiper-slide {
    height: auto; /* Ensure slides stretch */
}

.review-card {
    background-color: #fff;
    border: 1px solid rgba(193, 98, 79, 0.2); /* Light version of primary */
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    height: 380px; /* Fixed height requested */
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.review-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-shrink: 0; /* Prevent shrinking */
}

.profile-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}

.profile-info h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #000;
    line-height: 1.2;
}

.profile-info p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
}

.quote-icon {
    margin-left: auto;
    opacity: 0.1;
    color: #000;
}

.review-stars {
    display: flex;
    gap: 2px;
    color: var(--primary-color);
    margin-bottom: 16px;
    flex-shrink: 0;
}

.review-text {
    flex-grow: 1;
    font-style: normal;
    color: #4a4a4a;
    font-size: 1.05rem;
    line-height: 1.52;
    margin-bottom: 24px;
min-height: fit-content !important;

    /* Ellipsis after 5 lines */
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-footer {
    padding-top: 16px;
    border-top: 1px solid rgba(193, 98, 79, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
}

.review-date {
    color: var(--footer-bg);
}

.read-more-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.3s ease;
}

.read-more-btn:hover {
    gap: 8px;
    color: #a84a38;
}

.reviews-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
    margin-top: 50px;
}

.badge-dots {
    display: flex;
    gap: 4px;
}


.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #00aa6c; /* TripAdvisor green */
}

.badge-text {
    font-size: 0.75rem;
    color: #000;
}

.badge-title {
    font-weight: 700;
}


.journeys-header {
    text-align: center;
    margin-bottom: 64px;
}

.journeys-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
}

.journeys-header p {
    color: #666;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.journey-card {
    height: 450px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.journey-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.journey-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1s ease;
}

.journey-card:hover .journey-bg {
    transform: scale(1.1);
}

.journey-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.2), transparent);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.journey-card:hover .journey-overlay {
    opacity: 0.9;
}

.journey-content {
    position: absolute;
    inset: 0;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}

.journey-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.5s ease;
}

.journey-card:hover .journey-tag {
    opacity: 1;
    transform: translateY(0);
}

.journey-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem; /* text-3xl */
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
    line-height: 1.25;
}

.journey-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 24px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.journey-card:hover .journey-desc {
    opacity: 1;
}

.journey-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.journey-card:hover .journey-link {
    color: #e2a088; /* lighter primary */
}

/* Swiper overrides for Journeys */
.journeys-swiper {
    padding-bottom: 40px; /* Space for shadow/overflow if needed */
}

/* Keyframes */
@keyframes snappyUp {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes ken-burns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@keyframes scroll-bounce-vertical {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

/* About Page Styles */
:root {
    --sand-50: #faf7f2;
    --sand-200: #e6dace;
    --earth-200: #e2a088;
    --earth-300: #d67a68;
    --earth-500: #c1624f;
    --earth-600: #a84a38;
    --earth-900: #431e14;
    --night-800: #1a1a1a;
    --night-900: #0c0c0c;
    --night-950: #050714;
}

.about-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    -webkit-mask-image: linear-gradient(to bottom, black 100%, black 100%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 100%, black 100%, transparent 100%);
}

.about-hero-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,1), transparent, rgba(0,0,0,1));
}

.about-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    z-index: 10;
    padding-top: 5rem;
}

.about-hero-text-wrapper {
    max-width: 56rem;
    opacity: 1;
    transform: none;
}

.about-hero-subtitle {
    color: var(--sand-200);
    font-weight: 700;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
}

.about-hero-title {
    font-size: 2.25rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.about-intro-section {
    position: relative;
    padding: 5rem 1.5rem;
    background-color: rgba(250, 247, 242, 0.5); /* bg-sand-50/50 */
}

.about-intro-container {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.about-intro-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--earth-500);
    border-radius: 9999px;
    margin: 0 auto 2rem auto;
    opacity: 1;
    transform: none;
}

.about-intro-title {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.25;
    color: var(--night-900);
    margin-bottom: 1.5rem;
    opacity: 1;
    transform: none;
}

.about-intro-text {
    font-size: 1rem;
    color: rgba(26, 26, 26, 0.7);
    line-height: 1.625;
    font-weight: 300;
    max-width: 42rem;
    margin: 0 auto;
    opacity: 1;
    transform: none;
}

.about-intro-line {
    height: 1px;
    width: 6rem;
    background-color: var(--earth-300);
    margin: 2.5rem auto 0 auto;
    transform-origin: center;
    opacity: 1;
    transform: none;
}

.mobile-br {
    display: none;
}

/* Features Grid */
.about-features-section {
    background-color: var(--night-900);
    padding: 0;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 600px;
}

.feature-card {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 1;
    transform: none;
}

.feature-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1s ease-out;
    will-change: transform;
}

.feature-card:hover .feature-bg {
    transform: scale(1.1);
}

.feature-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(12, 12, 12, 0.4);
    transition: background-color 0.7s;
}

.feature-card:hover .feature-overlay {
    background-color: rgba(12, 12, 12, 0.2);
}

.feature-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #050714, rgba(12, 12, 12, 0.6), transparent);
    opacity: 0.9;
}

.feature-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.feature-content-inner {
    transform: none;
    transition: transform 0.5s;
}

.feature-card:hover .feature-content-inner {
    transform: translateY(-0.5rem);
}

.feature-line {
    width: 3rem;
    height: 2px;
    background-color: var(--earth-500);
    margin-bottom: 1.5rem;
    transform-origin: left;
    transition: all 0.5s;
}

.feature-card:hover .feature-line {
    width: 5rem;
}

.feature-title {
    font-size: 1.875rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.feature-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.625;
    max-width: 24rem;
    opacity: 0.8;
    transition: opacity 0.5s;
}

.feature-card:hover .feature-desc {
    opacity: 1;
}

/* Timeline Section */
.about-timeline-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    background-color: var(--sand-50);
}

.timeline-header-title {
    font-size: 1.875rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--night-900);
}

.timeline-wrapper {
    max-width: 56rem;
    margin: 0 auto;
    border-left: 2px solid var(--earth-300);
    padding-left: 2rem;
    position: relative;
    margin-left: 1.5rem; margin-right: 1.5rem; /* Ensure some spacing on mobile */
}

.timeline-item {
    position: relative;
    opacity: 1;
    transform: none;
    margin-bottom: 4rem;
}

.timeline-marker {
    position: absolute;
    left: -43px; /* Adjusted for mobile */
    top: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    background-color: var(--earth-600);
    border-radius: 50%;
    border: 4px solid var(--sand-50);
    transition: transform 0.3s;
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.25);
}

.timeline-year {
    color: var(--earth-600);
    font-weight: 700;
    font-size: 1.25rem;
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.timeline-item-title {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--night-900);
    margin-bottom: 0.75rem;
}

.timeline-desc {
    color: rgba(26, 26, 26, 0.7);
    line-height: 1.625;
    font-size: 1.125rem;
}


/* Media Queries - Merged and Sorted */

@media (min-width: 640px) {
    .hero-buttons { flex-direction: row; }
}

@media (min-width: 768px) {
    .mobile-link-large { font-size: 2.25rem; /* md:text-4xl */ }
    .hero-title { font-size: 5rem; /* Decreased from 5.5rem */ }
    .hero-subtitle { font-size: 1rem; /* Decreased from 1.125rem */ }
    .hero-desc { font-size: 1.5rem; /* Decreased from 1.75rem */ }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { flex-direction: row; }
    .planning-title { font-size: 4.5rem; /* md:text-7xl */ }
    .planning-subtitle { font-size: 1.5rem; /* md:text-2xl */ }
    .desktop-only { display: block; }

    /* About Page Queries */
    .about-hero-subtitle { font-size: 0.875rem; }
    .about-hero-title { font-size: 3.75rem; }
    .about-intro-section { padding: 6rem 1.5rem; }
    .about-intro-title { font-size: 2.25rem; }
    .about-intro-text { font-size: 1.125rem; }
    .mobile-br { display: block; }

    .about-timeline-section { padding: 8rem 0; }
    .timeline-header-title { font-size: 2.25rem; }
    .timeline-wrapper {
        padding-left: 3rem;
        margin-left: auto; margin-right: auto; /* Reset margins */
    }
    .timeline-marker { left: -59px; }
}

@media (min-width: 1024px) {
    .hero-title { font-size: 6.5rem; /* Decreased from 7rem */ }
    .logo-desktop{ display: none; }
    .logo-mobile{ display: block; }
    .reviews-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; }
    .footer-nav { padding-left: 32px; /* lg:pl-8 */ }
    .planning-title { font-size: 6rem; /* lg:text-8xl */ }
    .desktop-nav { display: flex; }
    .mobile-menu-btn { display: none; }
    .mobile-menu { display: none; }

    /* About Page Queries */
    .about-hero-title { font-size: 4.5rem; }
       .about-features-grid {
        grid-template-columns: repeat(3, 1fr);
        min-height: 80vh;
        height: auto;
    }
    .feature-card {
        height: 100%;
        border-bottom: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    .feature-card:last-child { border-right: 0; }
    .feature-content { padding: 3rem; }
    .feature-title { font-size: 2.25rem; }

}

@media (max-width: 480px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
    .adventure-header h2{
        font-size: 3rem !important;
    }
    .btn-hero{
        white-space: nowrap;
        font-size: 0.9rem !important;
    }
}

/* ========================================
   UNIFIED HERO UTILITY CLASSES
   ======================================== */

/* Hero Background */
.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 24px;
    z-index: 10;
    padding-top: 80px;
}

.hero-inner {
    max-width: 1024px;
    opacity: 1;
    transform: none;
}

.hero-subtitle {
    color: #e6dace;
    font-weight: 700;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    text-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 672px;
    margin: 24px auto 0;
}

/* Hero Responsive Styles */
@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 0.875rem;
    }

    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

/* ========================================
   ADVENTURES PAGE STYLES
   ======================================== */

/* Adventures Main Container */
.adventures-main {
    flex-grow: 1;
    background-color: #faf7f2; /* sand-50 */
    min-height: 100vh;
}

/* Adventures Hero Section */
.adventures-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.adventures-hero-bg {
    position: absolute;
    inset: 0;
}

.adventures-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.adventures-hero-overlay-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.adventures-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 24px;
    z-index: 10;
    padding-top: 80px;
}

.adventures-hero-inner {
    max-width: 1024px;
    opacity: 1;
    transform: none;
}

.adventures-hero-subtitle {
    color: #e6dace; /* sand-200 */
    font-weight: 700;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;

}

.adventures-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    text-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

/* Trails Section */
.trails-section {
    padding: 80px 0 128px;
    position: relative;
    overflow: hidden;
    background-color: white;
    text-align: center;
}

.trails-content {
    scroll-margin-top: 128px;
}

/* Trails Grid */
.trails-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
    opacity: 1;
}

/* Trail Card */
.trail-card {
    background-color: white;
    border: 1px solid #e6dace; /* sand-200 */
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 1;
    transform: none;
}

.trail-card:hover {
    border-color: #c1624f; /* earth-300 */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Trail Image Wrapper */
.trail-image-wrapper {
    height: 256px;
    overflow: hidden;
    position: relative;
}

.trail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.trail-card:hover .trail-image {
    transform: scale(1.1);
}

/* Difficulty Badge */
.trail-difficulty-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #7c2d12; /* earth-700 */
    border-radius: 2px;
}

/* Trail Card Body */
.trail-card-body {
    padding: 32px;
}

.trail-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--footer-bg);
    transition: color 0.3s ease;
    text-align: left;
}

.trail-card:hover .trail-title {
    color: #c1624f; /* earth-600 */
}

/* Trail Meta */
.trail-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 0.875rem;
    color: rgba(5, 7, 20, 0.6); /* night-800/60 */
    margin-bottom: 24px;
}

.trail-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trail-meta-item svg {
    flex-shrink: 0;
}

/* Trail Description */
.trail-description {
    color: rgba(5, 7, 20, 0.7); /* night-800/70 */
    margin-bottom: 32px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Trail Button */
.trail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 2px;
    cursor: pointer;
    border: 2px solid #050714; /* night-900 */
    color: #050714;
    background-color: transparent;
    padding: 12px 32px;
    font-size: 0.875rem;
    width: 100%;
    text-decoration: none;
}

.trail-btn:hover {
    background-color: #050714;
    color: white;
}

/* Pagination */
.trails-pagination {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: center;
    margin: 0 auto;
    margin-top: 48px;
    z-index: 1;
}

.pagination-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.pagination-item {
    display: inline-block;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    outline: none;
    border: 1px solid transparent;
}

.pagination-link:focus-visible {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(193, 98, 79, 0.5);
}

/* Pagination Prev/Next */
.pagination-prev,
.pagination-next {
    height: 36px;
    padding: 8px;
    gap: 4px;
    color: var(--footer-bg);
}

.pagination-prev:hover:not(.disabled),
.pagination-next:hover:not(.disabled) {
    background-color: rgba(193, 98, 79, 0.1);
    color: var(--primary-color);
}

.pagination-prev.disabled,
.pagination-next.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.pagination-text {
    display: none;
}

/* Pagination Numbers */
.pagination-number {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid var(--footer-bg);
    background-color: white;
    color: var(--footer-bg);
}

.pagination-number:hover {
    background-color: rgba(193, 98, 79, 0.1);
    color: var(--primary-color);
}

.pagination-number.active {
    background-color: var(--footer-bg);
    color: white;
    border-color: var(--footer-bg);
}

/* ========================================
   MEDIA QUERIES - ADVENTURES PAGE
   ======================================== */

/* Tablet - Medium Screens */
@media (min-width: 640px) {
    .pagination-text {
        display: block;
    }

    .pagination-prev,
    .pagination-next {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (min-width: 768px) {
    .adventures-hero-subtitle {
        font-size: 0.875rem;
    }

    .adventures-hero-title {
        font-size: 4.5rem;
    }

    .trails-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop - Large Screens */
@media (min-width: 1024px) {
    .adventures-hero-title {
        font-size: 5.5rem;
    }

    .trails-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Extra Small Screens */
@media (max-width: 480px) {
    .adventures-hero {
        height: 60vh;
        min-height: 400px;
    }

    .adventures-hero-title {
        font-size: 2.5rem;
    }

    .trails-section {
        padding: 48px 0 80px;
    }

    .trail-card-body {
        padding: 24px;
    }

    .trail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ========================================
   SERVICES PAGE STYLES
   ======================================== */

/* Services Main Container */
.services-main {
    flex-grow: 1;
    background-color: white;
    min-height: 100vh;
}

/* Services Hero Section */
.services-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.services-hero-bg {
    position: absolute;
    inset: 0;
}

.services-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.services-hero-overlay-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.services-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 24px;
    z-index: 10;
    padding-top: 80px;
}

.services-hero-inner {
    max-width: 1024px;
    opacity: 1;
    transform: none;
}

.services-hero-subtitle {
    color: #e6dace; /* sand-200 */
    font-weight: 700;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;

}

.services-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    text-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services-section {
    padding: 80px 0 128px;
    position: relative;
    overflow: hidden;
    background-color: #faf7f2; /* sand-50 */
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    opacity: 1;
}

/* Service Card */
.service-card {
    background-color: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    opacity: 1;
    transform: none;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(230, 218, 206, 0.5); /* earth-100/50 */
}

/* Service Icon Wrapper */
.service-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #faf7f2; /* sand-100 */
    color: #c1624f; /* earth-600 */
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1);
    background-color: #c1624f; /* earth-600 */
    color: white;
}

/* Service Title */
.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #050714; /* night-900 */
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #7c2d12; /* earth-700 */
}

/* Service Description */
.service-description {
    color: rgba(5, 7, 20, 0.7); /* night-800/70 */
    line-height: 1.6;
    font-size: 0.875rem;
    font-weight: 300;
}

/* Service Line */
.service-line {
    width: 32px;
    height: 1px;
    background-color: #e6dace; /* sand-200 */
    margin-top: 24px;
    transition: all 0.5s ease;
}

.service-card:hover .service-line {
    width: 100%;
    background-color: #e2a088; /* earth-200 */
}

/* ========================================
   MEDIA QUERIES - SERVICES PAGE
   ======================================== */

/* Tablet - Medium Screens */
@media (min-width: 768px) {
    .services-hero-subtitle {
        font-size: 0.875rem;
    }

    .services-hero-title {
        font-size: 4.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

/* Desktop - Large Screens */
@media (min-width: 1024px) {
    .services-hero-title {
        font-size: 5.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-section {
        padding: 128px 0;
    }
}

/* Extra Small Screens */
@media (max-width: 480px) {
    .services-hero {
        height: 60vh;
        min-height: 400px;
    }

    .services-hero-title {
        font-size: 2.5rem;
    }

    .services-section {
        padding: 48px 0 80px;
    }
}

/* ========================================
   TIPS PAGE STYLES
   ======================================== */

/* Tips Main Container */
.tips-main {
    position: relative;
    background-color: #faf7f2;
    min-height: 100vh;
}

/* Tips Hero Section */
.tips-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.tips-hero-bg {
    position: absolute;
    inset: 0;
}

.tips-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.tips-hero-overlay-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.tips-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 24px;
    z-index: 10;
    padding-top: 80px;
}

.tips-hero-inner {
    max-width: 1024px;
    opacity: 1;
    transform: none;
}

.tips-hero-subtitle {
    color: #e6dace;
    font-weight: 700;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
}

.tips-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    text-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

/* Tips Section */
.tips-section {
    padding: 80px 0 128px;
    position: relative;
    overflow: hidden;
    background-color: #faf7f2;
    .container{
        max-width: 1140px;
    }
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
    opacity: 1;
}

/* Tip Card */
.tip-card {
    background-color: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    opacity: 1;
    transform: none;
}

.tip-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(230, 218, 206, 0.5);
}

/* Tip Header */
.tip-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

/* Tip Icon Wrapper */
.tip-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #faf7f2;
    color: #c1624f;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.tip-card:hover .tip-icon-wrapper {
    transform: scale(1.1);
    background-color: #c1624f;
    color: white;
}

/* Tip Title */
.tip-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #050714;
    transition: color 0.3s ease;
}

.tip-card:hover .tip-title {
    color: #7c2d12;
}

/* Tip Content */
.tip-content {
    line-height: 1.6;
}

/* Tip Seasons */
.tip-seasons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tip-season-item {
    display: flex;
    flex-direction: column;
}

.tip-season-label {
    display: block;
    font-weight: 700;
    color: #7c2d12;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.tip-season-description {
    color: rgba(5, 7, 20, 0.7);
    font-size: 0.875rem;
}

/* Tip Checklist */
.tip-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tip-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.875rem;
    color: rgba(5, 7, 20, 0.7);
}

.tip-checklist-item svg {
    color: #c1624f;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Tip Text Content */
.tip-text-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 0.875rem;
    color: rgba(5, 7, 20, 0.7);
}

.tip-text-content p {
    margin: 0;
}

.tip-text-content strong {
    color: #050714;
}

/* Tip Highlight */
.tip-highlight {
    color: #7c2d12;
    font-weight: 500;
}

/* Tip Note */
.tip-note {
    padding: 12px;
    background-color: #faf7f2;
    border-radius: 2px;
    font-size: 0.75rem;
    color: #7c2d12;
    font-style: italic;
}

/* ========================================
   MEDIA QUERIES - TIPS PAGE
   ======================================== */

/* Tablet - Medium Screens */
@media (min-width: 768px) {
    .tips-hero-subtitle {
        font-size: 0.875rem;
    }

    .tips-hero-title {
        font-size: 4.5rem;
    }

    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

/* Desktop - Large Screens */
@media (min-width: 1024px) {
    .tips-hero-title {
        font-size: 5.5rem;
    }

    .tips-section {
        padding: 128px 0;
    }
}

/* Extra Small Screens */
@media (max-width: 480px) {
    .tips-hero {
        height: 60vh;
        min-height: 400px;
    }

    .tips-hero-title {
        font-size: 2.5rem;
    }

    .tips-section {
        padding: 48px 0 80px;
    }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Contact Main Container */
.contact-main {
    background-color: #faf7f2;
    min-height: 100vh;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
}

.contact-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-hero-overlay-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.contact-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 24px;
    z-index: 10;
    padding-top: 80px;
}

.contact-hero-inner {
    max-width: 1024px;
    opacity: 1;
    transform: none;
}

.contact-hero-subtitle {
    color: #e6dace;
    font-weight: 700;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.contact-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    text-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.contact-hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 672px;
    margin: 24px auto 0;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0 128px;
    position: relative;
    overflow: visible !important;
    background-color: white;
}

.contact-form-wrapper {
    max-width: 896px;
    margin: 0 auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 0.25rem;
    padding: 32px;
    margin-top: -200px;
    border: 1px solid #e6dace;
    position: relative;
    z-index: 20;
    background-color: white;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Form Rows */
.contact-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.contact-form-row-triple {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* Form Field */
.contact-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-field-full {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Form Label */
.contact-form-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(5, 7, 20, 0.8);
}

/* Form Input */
.contact-form-input,
.contact-form-select,
.contact-form-textarea {
    width: 100%;
    padding: 16px;
    background-color: #faf7f2;
    border: 1px solid #e6dace;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form-input:focus,
.contact-form-select:focus,
.contact-form-textarea:focus {
    border-color: #c1624f;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
    color: rgba(5, 7, 20, 0.4);
}

.contact-form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Submit */
.contact-form-submit {
    padding-top: 16px;
    text-align: center;
}

.contact-form-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 2px;
    cursor: pointer;
    background-color: #c1624f;
    color: white;
    border: none;
    padding: 12px 32px;
    font-size: 0.875rem;
    width: 100%;
}

.contact-form-button:hover {
    background-color: #7c2d12;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-form-button svg {
    margin-left: 8px;
}

/* ========================================
   MEDIA QUERIES - CONTACT PAGE
   ======================================== */

/* Tablet - Medium Screens */
@media (min-width: 768px) {
    .contact-hero-subtitle {
        font-size: 0.875rem;
    }

    .contact-hero-title {
        font-size: 4.5rem;
    }

    .contact-form-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-row-triple {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-form-wrapper {
        padding: 48px;
    }

    .contact-form-button {
        width: auto;
        padding-left: 48px;
        padding-right: 48px;
    }
}

/* Desktop - Large Screens */
@media (min-width: 1024px) {
    .contact-hero-title {
        font-size: 5.5rem;
    }

    .contact-form-section {
        padding: 128px 0;
    }
}

/* Extra Small Screens */
@media (max-width: 480px) {
    .contact-hero {
        height: 60vh;
        min-height: 400px;
    }

    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-hero-description {
        font-size: 1rem;
    }

    .contact-form-section {
        padding: 48px 0 80px;
    }

    .contact-form-wrapper {
        padding: 24px;
        margin-top: -60px;
    }
}
/* Adventure Details Page Styles */

/* Layout & Typography */
.adventure-main {
    flex-grow: 1;
    background-color: #faf7f2; /* bg-sand-50 */
    min-height: 100vh;
}

.adventure-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-content-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5rem 1.5rem 0 1.5rem; /* pt-20 px-6 */
    z-index: 10;
}

.hero-text-container {
    max-width: 56rem; /* max-w-4xl */
    opacity: 1;
    transform: none;
}

.hero-subtitle-detail {
    color: #e6dace; /* text-sand-200 */
    font-weight: 700;
    letter-spacing: 0.2em;
    font-size: 0.75rem; /* text-xs */
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-title-detail {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); /* drop-shadow-lg */
    font-size: 2.25rem; /* text-4xl */
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem; /* text-xl */
    font-weight: 300; /* font-light */
    margin-bottom: 2rem;
    max-width: 42rem; /* max-w-2xl */
    margin-left: auto;
    margin-right: auto;
    color: white;
}

/* Stats Section */
.hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    font-size: 0.875rem; /* text-sm */
    font-weight: 700;
    letter-spacing: 0.1em; /* tracking-widest */
    text-transform: uppercase;
    color: white;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color); /* text-earth-500 */
    stroke-width: 2.5;
}

/* Page Content Layout */
.adventure-container {
    width: 100%;
    max-width: 1280px; /* container mx-auto */
    margin: 0 auto;
    padding: 3rem 1.5rem; /* py-12 px-6 */
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem; /* gap-12 */
}



.section-title {
    font-size: 1.875rem; /* text-3xl */
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #0c0c0c; /* text-night-900 */
}

.section-description {
    font-size: 1.125rem; /* text-lg */
    color: rgba(12, 12, 12, 0.7); /* text-night-800/70 */
    line-height: 1.625; /* leading-relaxed */
    margin-bottom: 3rem; /* mb-12 */
}

/* Tabs */
.tabs-container {
    margin-bottom: 2rem;
    border-bottom: 1px solid #d1d5db; /* border-sand-300 approx */
}

.tab-btn {
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem; /* text-sm */
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
}

.tab-btn.active {
    border-bottom: 2px solid #c05621; /* border-earth-600 */
    color: #c05621; /* text-earth-600 */
}

.tab-btn.inactive {
    color: rgba(12, 12, 12, 0.5); /* text-night-800/50 */
}

.tab-btn.inactive:hover {
    color: #0c0c0c; /* text-night-800 */
}

/* Timeline */
.timeline-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem; /* space-y-8 */
}

.timeline-item {
    display: flex;
    gap: 1.5rem; /* gap-6 */
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.marker-circle {
    width: 2.5rem; /* w-10 */
    height: 2.5rem; /* h-10 */
    border-radius: 50%;
    background-color: #c05621; /* bg-earth-600 */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem; /* text-xl */
    flex-shrink: 0;
}

.marker-line {
    width: 1px;
    background-color: #d1d5db; /* bg-sand-300 */
    height: 100%;
    margin-top: 0.5rem;
}

.timeline-content {
    padding-bottom: 2rem;
}

.day-title {
    font-size: 1.25rem; /* text-xl */
    font-weight: 700;
    color: #0c0c0c; /* text-night-900 */
    margin-bottom: 0.5rem;
}

.distance-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #e6dace; /* bg-sand-200 */
    font-size: 0.75rem; /* text-xs */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 0.125rem; /* rounded-sm */
    margin-bottom: 0.75rem;
}

.day-desc {
    color: rgba(12, 12, 12, 0.7); /* text-night-800/70 */
    line-height: 1.5;
}



.booking-card {
    background-color: white;
    padding: 2rem;
    border: 1px solid #e6dace; /* border-sand-200 */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */

    position: sticky;
    top: 6rem; /* top-24 */
    border-radius: 0.125rem; /* rounded-sm */
}

.booking-title {
    font-size: 1.5rem; /* text-2xl */
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.booking-subtitle {
    font-size: 0.875rem; /* text-sm */
    color: rgba(12, 12, 12, 0.6); /* text-night-800/60 */
    margin-bottom: 1.5rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f3f4f6; /* border-sand-100 approx */
}

.info-label {
    font-size: 0.875rem; /* text-sm */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(12, 12, 12, 0.7);
}

.info-value {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1rem;
}

.info-value.highlight {
    color: #c05621; /* text-earth-600 */
}

.btn-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0.125rem;
    cursor: pointer;
    background-color: #c05621; /* bg-earth-600 */
    color: white;
    padding: 0.75rem 2rem;
    font-size: 0.875rem; /* text-sm */
    width: 100%;
    margin-bottom: 1rem;
    text-decoration: none;
    border: none;
}

.btn-book:hover {
    background-color: #9c4221; /* bg-earth-700 approx */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-ask {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0.125rem;
    cursor: pointer;
    border: 2px solid #0c0c0c; /* border-night-900 */
    background-color: transparent;
    color: #0c0c0c; /* text-night-900 */
    padding: 0.75rem 2rem;
    font-size: 0.875rem; /* text-sm */
    width: 100%;
    text-decoration: none;
}

.btn-ask:hover {
    background-color: #0c0c0c;
    color: white;
}

.secure-note {
    margin-top: 1.5rem;
    text-align: center;
}

.secure-text {
    font-size: 0.75rem; /* text-xs */
    color: rgba(12, 12, 12, 0.4);
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .hero-subtitle-detail {
        font-size: 0.875rem; /* md:text-sm */
    }

    .hero-title-detail {
        font-size: 3.75rem; /* md:text-6xl */
    }

    .hero-description {
        font-size: 1.5rem; /* md:text-2xl */
    }

    .adventure-container {
        padding-top: 5rem; /* md:py-20 */
        padding-bottom: 5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title-detail {
        font-size: 4.5rem; /* lg:text-7xl */
    }

    .adventure-container {
        grid-template-columns: 2fr 1fr; /* lg:col-span-2 / 1 */
    }
}

/* Included Section */
.included-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .included-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.included-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #0c0c0c; /* night-900 */
}

.included-title.earth {
    color: var(--darker-primary-color);
}

.included-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.included-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(12, 12, 12, 0.8);
    font-size: 1rem;
    line-height: 1.5;
}

.included-item.not-included {
    color: rgba(12, 12, 12, 0.6);
}

.check-icon {
    color: var(--darker-primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.cross-icon {
    color: #f87171;
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.tab-content {
    animation: fadeIn 0.5s ease;
}

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

